From 7afac9500ef4cbf02d82e9438aec06561a86b7a5 Mon Sep 17 00:00:00 2001 From: darkeye Date: Thu, 30 Aug 2001 17:25:56 +0000 Subject: [PATCH] renamed configure.h to config.h --- darkice/trunk/configure.h.in | 80 ---------------------------- darkice/trunk/configure.in | 2 +- darkice/trunk/src/BufferedSink.cpp | 5 +- darkice/trunk/src/Config.cpp | 5 +- darkice/trunk/src/ConfigSection.cpp | 5 +- darkice/trunk/src/DarkIce.cpp | 5 +- darkice/trunk/src/DarkIce.h | 5 +- darkice/trunk/src/Exception.cpp | 5 +- darkice/trunk/src/IceCast.cpp | 5 +- darkice/trunk/src/LameLibEncoder.cpp | 5 +- darkice/trunk/src/LameLibEncoder.h | 5 +- darkice/trunk/src/OssDspSource.cpp | 5 +- darkice/trunk/src/Reporter.h | 5 +- darkice/trunk/src/TcpSocket.cpp | 5 +- darkice/trunk/src/Util.cpp | 5 +- darkice/trunk/src/main.cpp | 5 +- 16 files changed, 57 insertions(+), 95 deletions(-) delete mode 100644 darkice/trunk/configure.h.in diff --git a/darkice/trunk/configure.h.in b/darkice/trunk/configure.h.in deleted file mode 100644 index 03ba7fb..0000000 --- a/darkice/trunk/configure.h.in +++ /dev/null @@ -1,80 +0,0 @@ -/* configure.h.in. Generated automatically from configure.in by autoheader. */ - -/* Define if you have that is POSIX.1 compatible. */ -#undef HAVE_SYS_WAIT_H - -/* Define to `int' if doesn't define. */ -#undef pid_t - -/* Define to `unsigned' if doesn't define. */ -#undef size_t - -/* Define if you have the ANSI C header files. */ -#undef STDC_HEADERS - -/* Define if you have the header file. */ -#undef HAVE_ERRNO_H - -/* Define if you have the header file. */ -#undef HAVE_FCNTL_H - -/* Define if you have the header file. */ -#undef HAVE_GETOPT_H - -/* Define if you have the header file. */ -#undef HAVE_LIMITS_H - -/* Define if you have the header file. */ -#undef HAVE_NETDB_H - -/* Define if you have the header file. */ -#undef HAVE_NETINET_IN_H - -/* Define if you have the header file. */ -#undef HAVE_SCHED_H - -/* Define if you have the header file. */ -#undef HAVE_SIGNAL_H - -/* Define if you have the header file. */ -#undef HAVE_STDIO_H - -/* Define if you have the header file. */ -#undef HAVE_STDLIB_H - -/* Define if you have the header file. */ -#undef HAVE_STRING_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_IOCTL_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_SOCKET_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_SOUNDCARD_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_STAT_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_TIME_H - -/* Define if you have the header file. */ -#undef HAVE_SYS_TYPES_H - -/* Define if you have the header file. */ -#undef HAVE_TIME_H - -/* Define if you have the header file. */ -#undef HAVE_UNISTD_H - -/* Name of package */ -#undef PACKAGE - -/* Version number of package */ -#undef VERSION - -/* build with lame library calls */ -#undef HAVE_LAME_LIB - diff --git a/darkice/trunk/configure.in b/darkice/trunk/configure.in index 52c699b..c0ce8b6 100644 --- a/darkice/trunk/configure.in +++ b/darkice/trunk/configure.in @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(src/DarkIce.cpp) AM_INIT_AUTOMAKE(darkice, 0.4) -AM_CONFIG_HEADER(configure.h) +AM_CONFIG_HEADER(config.h) AC_PROG_CXX AC_PROG_INSTALL diff --git a/darkice/trunk/src/BufferedSink.cpp b/darkice/trunk/src/BufferedSink.cpp index 7395a2d..b69668b 100644 --- a/darkice/trunk/src/BufferedSink.cpp +++ b/darkice/trunk/src/BufferedSink.cpp @@ -46,7 +46,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #ifdef HAVE_STRING_H @@ -372,6 +372,9 @@ BufferedSink :: close ( void ) throw ( Exception ) $Source$ $Log$ + Revision 1.5 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.4 2000/11/11 12:33:13 darkeye added kdoc-style documentation diff --git a/darkice/trunk/src/Config.cpp b/darkice/trunk/src/Config.cpp index 2f89e31..e3b9013 100644 --- a/darkice/trunk/src/Config.cpp +++ b/darkice/trunk/src/Config.cpp @@ -30,7 +30,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #include @@ -160,6 +160,9 @@ Config :: read ( istream & is ) throw ( Exception ) $Source$ $Log$ + Revision 1.3 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.2 2000/11/13 18:46:50 darkeye added kdoc-style documentation comments diff --git a/darkice/trunk/src/ConfigSection.cpp b/darkice/trunk/src/ConfigSection.cpp index 4ac69c9..bc81caa 100644 --- a/darkice/trunk/src/ConfigSection.cpp +++ b/darkice/trunk/src/ConfigSection.cpp @@ -30,7 +30,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #include @@ -168,6 +168,9 @@ ConfigSection :: addLine ( const char * line ) throw ( Exception ) $Source$ $Log$ + Revision 1.4 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.3 2000/11/13 18:46:50 darkeye added kdoc-style documentation comments diff --git a/darkice/trunk/src/DarkIce.cpp b/darkice/trunk/src/DarkIce.cpp index 3805840..fe2dfbc 100644 --- a/darkice/trunk/src/DarkIce.cpp +++ b/darkice/trunk/src/DarkIce.cpp @@ -31,7 +31,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #ifdef HAVE_STDLIB_H @@ -380,6 +380,9 @@ DarkIce :: run ( void ) throw ( Exception ) $Source$ $Log$ + Revision 1.15 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.14 2001/08/29 21:08:30 darkeye made some description options in the darkice config file optional diff --git a/darkice/trunk/src/DarkIce.h b/darkice/trunk/src/DarkIce.h index 28c6886..54deb58 100644 --- a/darkice/trunk/src/DarkIce.h +++ b/darkice/trunk/src/DarkIce.h @@ -37,7 +37,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #ifdef HAVE_UNISTD_H @@ -269,6 +269,9 @@ class DarkIce : public virtual Referable, public virtual Reporter $Source$ $Log$ + Revision 1.9 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.8 2001/08/26 20:44:30 darkeye removed external command-line encoder support replaced it with a shared-object support for lame with the possibility diff --git a/darkice/trunk/src/Exception.cpp b/darkice/trunk/src/Exception.cpp index d0855d9..1aca29f 100644 --- a/darkice/trunk/src/Exception.cpp +++ b/darkice/trunk/src/Exception.cpp @@ -30,7 +30,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #ifdef HAVE_STRING_H @@ -203,6 +203,9 @@ Exception :: strip ( void ) throw () $Source$ $Log$ + Revision 1.5 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.4 2000/11/11 12:33:13 darkeye added kdoc-style documentation diff --git a/darkice/trunk/src/IceCast.cpp b/darkice/trunk/src/IceCast.cpp index 9ba496d..f2835e7 100644 --- a/darkice/trunk/src/IceCast.cpp +++ b/darkice/trunk/src/IceCast.cpp @@ -30,7 +30,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #ifdef HAVE_STDIO_H @@ -194,6 +194,9 @@ IceCast :: sendLogin ( void ) throw ( Exception ) $Source$ $Log$ + Revision 1.6 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.5 2001/08/29 21:08:30 darkeye made some description options in the darkice config file optional diff --git a/darkice/trunk/src/LameLibEncoder.cpp b/darkice/trunk/src/LameLibEncoder.cpp index 09e6ca9..a279551 100644 --- a/darkice/trunk/src/LameLibEncoder.cpp +++ b/darkice/trunk/src/LameLibEncoder.cpp @@ -30,7 +30,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #ifdef HAVE_STRING_H @@ -356,6 +356,9 @@ LameLibEncoder :: close ( void ) throw ( Exception ) $Source$ $Log$ + Revision 1.3 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.2 2001/08/29 21:06:16 darkeye added real support for 8 / 16 bit mono / stereo input (8 bit input still has to be spread on 16 bit words) diff --git a/darkice/trunk/src/LameLibEncoder.h b/darkice/trunk/src/LameLibEncoder.h index a49fe28..f099ad8 100644 --- a/darkice/trunk/src/LameLibEncoder.h +++ b/darkice/trunk/src/LameLibEncoder.h @@ -37,7 +37,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #ifdef HAVE_LAME_LIB @@ -427,6 +427,9 @@ class LameLibEncoder : public AudioEncoder, public virtual Reporter, $Sourc$ $Log$ + Revision 1.3 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.2 2001/08/29 21:06:16 darkeye added real support for 8 / 16 bit mono / stereo input (8 bit input still has to be spread on 16 bit words) diff --git a/darkice/trunk/src/OssDspSource.cpp b/darkice/trunk/src/OssDspSource.cpp index 4a26068..b7bbd87 100644 --- a/darkice/trunk/src/OssDspSource.cpp +++ b/darkice/trunk/src/OssDspSource.cpp @@ -30,7 +30,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #ifdef HAVE_UNISTD_H @@ -265,6 +265,9 @@ OssDspSource :: close ( void ) throw ( Exception ) $Source$ $Log$ + Revision 1.7 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.6 2000/12/01 15:03:28 darkeye bug fix in error reporting diff --git a/darkice/trunk/src/Reporter.h b/darkice/trunk/src/Reporter.h index 0f2dcbb..bcbf0ca 100644 --- a/darkice/trunk/src/Reporter.h +++ b/darkice/trunk/src/Reporter.h @@ -37,7 +37,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #ifdef HAVE_UNISTD_H @@ -307,6 +307,9 @@ class Reporter $Source$ $Log$ + Revision 1.4 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.3 2000/12/20 12:47:40 darkeye added prefixVerbosity value. in a low verbosity setting no time-stamp prefix is displayed diff --git a/darkice/trunk/src/TcpSocket.cpp b/darkice/trunk/src/TcpSocket.cpp index 8a15295..ec6c674 100644 --- a/darkice/trunk/src/TcpSocket.cpp +++ b/darkice/trunk/src/TcpSocket.cpp @@ -30,7 +30,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #ifdef HAVE_STRING_H @@ -348,6 +348,9 @@ TcpSocket :: close ( void ) throw ( Exception ) $Source$ $Log$ + Revision 1.5 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.4 2000/11/17 15:50:48 darkeye added -Wall flag to compiler and eleminated new warnings diff --git a/darkice/trunk/src/Util.cpp b/darkice/trunk/src/Util.cpp index a7550e0..c3ad0e6 100644 --- a/darkice/trunk/src/Util.cpp +++ b/darkice/trunk/src/Util.cpp @@ -30,7 +30,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #ifdef HAVE_STRING_H @@ -186,6 +186,9 @@ Util :: strToL( const char * str, $Source$ $Log$ + Revision 1.6 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.5 2000/11/12 13:31:40 darkeye added kdoc-style documentation comments diff --git a/darkice/trunk/src/main.cpp b/darkice/trunk/src/main.cpp index c99fc9c..0b6197e 100644 --- a/darkice/trunk/src/main.cpp +++ b/darkice/trunk/src/main.cpp @@ -34,7 +34,7 @@ /* ============================================================ include files */ #ifdef HAVE_CONFIG_H -#include "configure.h" +#include "config.h" #endif #ifdef HAVE_GETOPT_H @@ -171,6 +171,9 @@ showUsage ( ostream & os ) $Source$ $Log$ + Revision 1.7 2001/08/30 17:25:56 darkeye + renamed configure.h to config.h + Revision 1.6 2001/08/26 08:43:13 darkeye added support for unlimited time encoding