BSD port
This commit is contained in:
parent
efcb854cd0
commit
d4e1cbdec6
|
@ -6,4 +6,5 @@ with contributions by:
|
|||
|
||||
Jim Crilly, <JCrilly@MSA.com>
|
||||
aNa|0Gue, <analogue@glop.org>
|
||||
Robin P. Blanchard, <Robin_Blanchard@gactr.uga.edu>
|
||||
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
DarkIce 0.7
|
||||
|
||||
o added support for FreeBSD
|
||||
thanks to Robin P. Blanchard, <Robin_Blanchard@gactr.uga.edu>
|
||||
|
||||
|
||||
18-09-2001: DarkIce 0.6 released
|
||||
|
||||
o added support for IceCast2 server with Ogg Vorbis streaming
|
||||
|
|
|
@ -76,6 +76,9 @@ Some contributions by Jim Crilly
|
|||
Ogg Vorbis encoding code based on the contribution of aNa|0Gue
|
||||
.I <analogue@glop.org>
|
||||
|
||||
BSD porting help from Robin P. Blanchard
|
||||
.I <Robin_Blanchard@gactr.uga.edu>
|
||||
|
||||
|
||||
.SH LINKS
|
||||
Project homepage:
|
||||
|
|
|
@ -44,6 +44,12 @@
|
|||
#error need unistd.h
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#else
|
||||
#error need string.h
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_SYS_TYPES_H
|
||||
#include <sys/types.h>
|
||||
#else
|
||||
|
@ -278,6 +284,9 @@ OssDspSource :: close ( void ) throw ( Exception )
|
|||
$Source$
|
||||
|
||||
$Log$
|
||||
Revision 1.10 2001/09/26 16:55:30 darkeye
|
||||
BSD port
|
||||
|
||||
Revision 1.9 2001/09/11 15:05:21 darkeye
|
||||
added Solaris support
|
||||
|
||||
|
|
Loading…
Reference in New Issue