renamed configure.h to config.h

This commit is contained in:
darkeye 2001-08-30 17:25:56 +00:00
parent 3caaf66184
commit 7afac9500e
16 changed files with 57 additions and 95 deletions

View File

@ -1,80 +0,0 @@
/* configure.h.in. Generated automatically from configure.in by autoheader. */
/* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
#undef HAVE_SYS_WAIT_H
/* Define to `int' if <sys/types.h> doesn't define. */
#undef pid_t
/* Define to `unsigned' if <sys/types.h> doesn't define. */
#undef size_t
/* Define if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Define if you have the <errno.h> header file. */
#undef HAVE_ERRNO_H
/* Define if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Define if you have the <getopt.h> header file. */
#undef HAVE_GETOPT_H
/* Define if you have the <limits.h> header file. */
#undef HAVE_LIMITS_H
/* Define if you have the <netdb.h> header file. */
#undef HAVE_NETDB_H
/* Define if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H
/* Define if you have the <sched.h> header file. */
#undef HAVE_SCHED_H
/* Define if you have the <signal.h> header file. */
#undef HAVE_SIGNAL_H
/* Define if you have the <stdio.h> header file. */
#undef HAVE_STDIO_H
/* Define if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
/* Define if you have the <string.h> header file. */
#undef HAVE_STRING_H
/* Define if you have the <sys/ioctl.h> header file. */
#undef HAVE_SYS_IOCTL_H
/* Define if you have the <sys/socket.h> header file. */
#undef HAVE_SYS_SOCKET_H
/* Define if you have the <sys/soundcard.h> header file. */
#undef HAVE_SYS_SOUNDCARD_H
/* Define if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H
/* Define if you have the <sys/time.h> header file. */
#undef HAVE_SYS_TIME_H
/* Define if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
/* Define if you have the <time.h> header file. */
#undef HAVE_TIME_H
/* Define if you have the <unistd.h> 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

View File

@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/DarkIce.cpp) AC_INIT(src/DarkIce.cpp)
AM_INIT_AUTOMAKE(darkice, 0.4) AM_INIT_AUTOMAKE(darkice, 0.4)
AM_CONFIG_HEADER(configure.h) AM_CONFIG_HEADER(config.h)
AC_PROG_CXX AC_PROG_CXX
AC_PROG_INSTALL AC_PROG_INSTALL

View File

@ -46,7 +46,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#ifdef HAVE_STRING_H #ifdef HAVE_STRING_H
@ -372,6 +372,9 @@ BufferedSink :: close ( void ) throw ( Exception )
$Source$ $Source$
$Log$ $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 Revision 1.4 2000/11/11 12:33:13 darkeye
added kdoc-style documentation added kdoc-style documentation

View File

@ -30,7 +30,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#include <iterator> #include <iterator>
@ -160,6 +160,9 @@ Config :: read ( istream & is ) throw ( Exception )
$Source$ $Source$
$Log$ $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 Revision 1.2 2000/11/13 18:46:50 darkeye
added kdoc-style documentation comments added kdoc-style documentation comments

View File

@ -30,7 +30,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#include <iterator> #include <iterator>
@ -168,6 +168,9 @@ ConfigSection :: addLine ( const char * line ) throw ( Exception )
$Source$ $Source$
$Log$ $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 Revision 1.3 2000/11/13 18:46:50 darkeye
added kdoc-style documentation comments added kdoc-style documentation comments

View File

@ -31,7 +31,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#ifdef HAVE_STDLIB_H #ifdef HAVE_STDLIB_H
@ -380,6 +380,9 @@ DarkIce :: run ( void ) throw ( Exception )
$Source$ $Source$
$Log$ $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 Revision 1.14 2001/08/29 21:08:30 darkeye
made some description options in the darkice config file optional made some description options in the darkice config file optional

View File

@ -37,7 +37,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
@ -269,6 +269,9 @@ class DarkIce : public virtual Referable, public virtual Reporter
$Source$ $Source$
$Log$ $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 Revision 1.8 2001/08/26 20:44:30 darkeye
removed external command-line encoder support removed external command-line encoder support
replaced it with a shared-object support for lame with the possibility replaced it with a shared-object support for lame with the possibility

View File

@ -30,7 +30,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#ifdef HAVE_STRING_H #ifdef HAVE_STRING_H
@ -203,6 +203,9 @@ Exception :: strip ( void ) throw ()
$Source$ $Source$
$Log$ $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 Revision 1.4 2000/11/11 12:33:13 darkeye
added kdoc-style documentation added kdoc-style documentation

View File

@ -30,7 +30,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#ifdef HAVE_STDIO_H #ifdef HAVE_STDIO_H
@ -194,6 +194,9 @@ IceCast :: sendLogin ( void ) throw ( Exception )
$Source$ $Source$
$Log$ $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 Revision 1.5 2001/08/29 21:08:30 darkeye
made some description options in the darkice config file optional made some description options in the darkice config file optional

View File

@ -30,7 +30,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#ifdef HAVE_STRING_H #ifdef HAVE_STRING_H
@ -356,6 +356,9 @@ LameLibEncoder :: close ( void ) throw ( Exception )
$Source$ $Source$
$Log$ $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 Revision 1.2 2001/08/29 21:06:16 darkeye
added real support for 8 / 16 bit mono / stereo input added real support for 8 / 16 bit mono / stereo input
(8 bit input still has to be spread on 16 bit words) (8 bit input still has to be spread on 16 bit words)

View File

@ -37,7 +37,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#ifdef HAVE_LAME_LIB #ifdef HAVE_LAME_LIB
@ -427,6 +427,9 @@ class LameLibEncoder : public AudioEncoder, public virtual Reporter,
$Sourc$ $Sourc$
$Log$ $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 Revision 1.2 2001/08/29 21:06:16 darkeye
added real support for 8 / 16 bit mono / stereo input added real support for 8 / 16 bit mono / stereo input
(8 bit input still has to be spread on 16 bit words) (8 bit input still has to be spread on 16 bit words)

View File

@ -30,7 +30,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
@ -265,6 +265,9 @@ OssDspSource :: close ( void ) throw ( Exception )
$Source$ $Source$
$Log$ $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 Revision 1.6 2000/12/01 15:03:28 darkeye
bug fix in error reporting bug fix in error reporting

View File

@ -37,7 +37,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
@ -307,6 +307,9 @@ class Reporter
$Source$ $Source$
$Log$ $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 Revision 1.3 2000/12/20 12:47:40 darkeye
added prefixVerbosity value. in a low verbosity setting no time-stamp added prefixVerbosity value. in a low verbosity setting no time-stamp
prefix is displayed prefix is displayed

View File

@ -30,7 +30,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#ifdef HAVE_STRING_H #ifdef HAVE_STRING_H
@ -348,6 +348,9 @@ TcpSocket :: close ( void ) throw ( Exception )
$Source$ $Source$
$Log$ $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 Revision 1.4 2000/11/17 15:50:48 darkeye
added -Wall flag to compiler and eleminated new warnings added -Wall flag to compiler and eleminated new warnings

View File

@ -30,7 +30,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#ifdef HAVE_STRING_H #ifdef HAVE_STRING_H
@ -186,6 +186,9 @@ Util :: strToL( const char * str,
$Source$ $Source$
$Log$ $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 Revision 1.5 2000/11/12 13:31:40 darkeye
added kdoc-style documentation comments added kdoc-style documentation comments

View File

@ -34,7 +34,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "configure.h" #include "config.h"
#endif #endif
#ifdef HAVE_GETOPT_H #ifdef HAVE_GETOPT_H
@ -171,6 +171,9 @@ showUsage ( ostream & os )
$Source$ $Source$
$Log$ $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 Revision 1.6 2001/08/26 08:43:13 darkeye
added support for unlimited time encoding added support for unlimited time encoding