1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-30 06:35:23 +00:00

include the automake config.h file if the application defines one

svn path=/trunk/avl/; revision=4450
This commit is contained in:
Karl Heyes 2003-03-08 16:05:38 +00:00
parent a3716577ec
commit 5565b331da
6 changed files with 24 additions and 1 deletions

View File

@ -22,13 +22,17 @@
* *
*/ */
/* $Id: avl.c,v 1.2 2003/03/06 00:59:41 brendan Exp $ */ /* $Id: avl.c,v 1.3 2003/03/08 16:05:38 karl Exp $ */
/* /*
* This is a fairly straightfoward translation of a prototype * This is a fairly straightfoward translation of a prototype
* written in python, 'avl_tree.py'. Read that file first. * written in python, 'avl_tree.py'. Read that file first.
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -3,6 +3,10 @@
** http parsing engine ** http parsing engine
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -4,6 +4,9 @@
** name resolver library ** name resolver library
** **
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h> #include <stdio.h>
#include <sys/types.h> #include <sys/types.h>

View File

@ -19,6 +19,10 @@
* *
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdarg.h> #include <stdarg.h>

View File

@ -18,6 +18,10 @@
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

View File

@ -2,6 +2,10 @@
** - Timing functions ** - Timing functions
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h> #include <stdlib.h>
#include <sys/types.h> #include <sys/types.h>
#ifdef HAVE_STDINT_H #ifdef HAVE_STDINT_H