diff --git a/darkice/trunk/AUTHORS b/darkice/trunk/AUTHORS index e7cbe1c..fb766d8 100644 --- a/darkice/trunk/AUTHORS +++ b/darkice/trunk/AUTHORS @@ -6,4 +6,5 @@ with contributions by: Jim Crilly, aNa|0Gue, + Robin P. Blanchard, diff --git a/darkice/trunk/ChangeLog b/darkice/trunk/ChangeLog index 98d5ff3..a1a3fa2 100644 --- a/darkice/trunk/ChangeLog +++ b/darkice/trunk/ChangeLog @@ -1,3 +1,9 @@ +DarkIce 0.7 + + o added support for FreeBSD + thanks to Robin P. Blanchard, + + 18-09-2001: DarkIce 0.6 released o added support for IceCast2 server with Ogg Vorbis streaming diff --git a/darkice/trunk/man/darkice.1 b/darkice/trunk/man/darkice.1 index 50e0b00..41140a5 100644 --- a/darkice/trunk/man/darkice.1 +++ b/darkice/trunk/man/darkice.1 @@ -76,6 +76,9 @@ Some contributions by Jim Crilly Ogg Vorbis encoding code based on the contribution of aNa|0Gue .I +BSD porting help from Robin P. Blanchard +.I + .SH LINKS Project homepage: diff --git a/darkice/trunk/src/OssDspSource.cpp b/darkice/trunk/src/OssDspSource.cpp index 062694c..96a7b69 100644 --- a/darkice/trunk/src/OssDspSource.cpp +++ b/darkice/trunk/src/OssDspSource.cpp @@ -44,6 +44,12 @@ #error need unistd.h #endif +#ifdef HAVE_STRING_H +#include +#else +#error need string.h +#endif + #ifdef HAVE_SYS_TYPES_H #include #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