1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

avoid header namespace clashes

svn path=/trunk/icecast/; revision=5146
This commit is contained in:
Karl Heyes 2003-07-16 19:41:59 +00:00
parent 62ce258d46
commit 508d25641d
20 changed files with 49 additions and 63 deletions

View File

@ -21,9 +21,6 @@ icecast_DEPENDENCIES = $(icecast_LDADD)
LIBS = @LIBS@ @XSLT_LIBS@ @SOCKET_LIBS@ @XML_LIBS@ @OGG_LIBS@ @VORBIS_LIBS@ @CURL_LIBS@ @PTHREAD_LIBS@
CFLAGS = -g @CFLAGS@ @XML_CFLAGS@ @XSLT_CFLAGS@ @OGG_CFLAGS@ @VORBIS_CFLAGS@ @CURL_CFLAGS@ @PTHREAD_CFLAGS@
INCLUDES = -I$(srcdir)/net -I$(srcdir)/thread -I$(srcdir)/avl -I$(srcdir)/httpp \
-I$(srcdir)/log -I$(srcdir)/timing
debug:
$(MAKE) all CFLAGS="@DEBUG@ @XML_CFLAGS@ @OGG_CFLAGS@ @VORBIS_CFLAGS@"

View File

@ -7,9 +7,9 @@
#include <stdlib.h>
#include <string.h>
#include "thread.h"
#include "avl.h"
#include "httpp.h"
#include "thread/thread.h"
#include "avl/avl.h"
#include "httpp/httpp.h"
#include "connection.h"
#include "refbuf.h"

View File

@ -22,11 +22,10 @@
#include "os.h"
#include "thread.h"
#include "avl.h"
#include "sock.h"
#include "log.h"
#include "httpp.h"
#include "thread/thread.h"
#include "avl/avl.h"
#include "net/sock.h"
#include "httpp/httpp.h"
#include "config.h"
#include "global.h"

View File

@ -3,9 +3,9 @@
#include <sys/types.h>
#include "compat.h"
#include "httpp.h"
#include "thread.h"
#include "sock.h"
#include "httpp/httpp.h"
#include "thread/thread.h"
#include "net/sock.h"
struct _client_tag;

View File

@ -15,12 +15,11 @@
#include "source.h"
#include "format.h"
#include "global.h"
#include "httpp.h"
#include "httpp/httpp.h"
#include "format_vorbis.h"
#include "format_mp3.h"
#include "log.h"
#include "logging.h"
#define CATMODULE "format"

View File

@ -8,7 +8,7 @@
#include "client.h"
#include "refbuf.h"
#include "httpp.h"
#include "httpp/httpp.h"
struct source_tag;

View File

@ -17,7 +17,6 @@
#include "format.h"
#include "httpp/httpp.h"
#include "log.h"
#include "logging.h"
#include "format_mp3.h"

View File

@ -19,7 +19,6 @@
#include "format.h"
#define CATMODULE "format-vorbis"
#include "log.h"
#include "logging.h"
#define MAX_HEADER_PAGES 10

View File

@ -16,10 +16,10 @@
#include <windows.h>
#endif
#include "thread.h"
#include "avl.h"
#include "httpp.h"
#include "sock.h"
#include "thread/thread.h"
#include "avl/avl.h"
#include "httpp/httpp.h"
#include "net/sock.h"
#include "connection.h"
#include "global.h"
@ -27,7 +27,6 @@
#include "client.h"
#include "stats.h"
#include "format.h"
#include "log.h"
#include "logging.h"
#include "config.h"
#include "util.h"

View File

@ -1,10 +1,10 @@
/* -*- c-basic-offset: 4; indent-tabs-mode: nil; -*- */
#include <string.h>
#include "thread.h"
#include "avl.h"
#include "thread/thread.h"
#include "avl/avl.h"
#include "httpp/httpp.h"
#include "httpp.h"
#include "connection.h"
#include "refbuf.h"
#include "client.h"

View File

@ -2,9 +2,8 @@
#include <time.h>
#include <string.h>
#include "thread.h"
#include "httpp.h"
#include "log.h"
#include "thread/thread.h"
#include "httpp/httpp.h"
#include "connection.h"
#include "refbuf.h"

View File

@ -1,7 +1,7 @@
#ifndef __LOGGING_H__
#define __LOGGING_H__
#include "log.h"
#include "log/log.h"
/* declare the global log descriptors */

View File

@ -2,12 +2,11 @@
#include <stdio.h>
#include <string.h>
#include "thread.h"
#include "avl.h"
#include "log.h"
#include "sock.h"
#include "resolver.h"
#include "httpp.h"
#include "thread/thread.h"
#include "avl/avl.h"
#include "net/sock.h"
#include "net/resolver.h"
#include "httpp/httpp.h"
#ifdef CHUID
#include <sys/types.h>

View File

@ -1,9 +1,8 @@
#include <signal.h>
#include "thread.h"
#include "avl.h"
#include "log.h"
#include "httpp.h"
#include "thread/thread.h"
#include "avl/avl.h"
#include "httpp/httpp.h"
#include "global.h"
#include "connection.h"

View File

@ -25,11 +25,10 @@
#include "os.h"
#include "thread.h"
#include "avl.h"
#include "sock.h"
#include "log.h"
#include "httpp.h"
#include "thread/thread.h"
#include "avl/avl.h"
#include "net/sock.h"
#include "httpp/httpp.h"
#include "config.h"
#include "global.h"

View File

@ -15,17 +15,16 @@
#include <windows.h>
#endif
#include "thread.h"
#include "avl.h"
#include "httpp.h"
#include "sock.h"
#include "thread/thread.h"
#include "avl/avl.h"
#include "httpp/httpp.h"
#include "net/sock.h"
#include "connection.h"
#include "global.h"
#include "refbuf.h"
#include "client.h"
#include "stats.h"
#include "log.h"
#include "logging.h"
#include "config.h"
#include "util.h"

View File

@ -2,7 +2,7 @@
#define __STATS_H__
#include "connection.h"
#include "httpp.h"
#include "httpp/httpp.h"
#include "client.h"
#include <libxml/xmlmemory.h>
#include <libxml/parser.h>

View File

@ -19,7 +19,7 @@
#define strncasecmp strnicmp
#endif
#include "sock.h"
#include "net/sock.h"
#include "config.h"
#include "util.h"
@ -30,7 +30,6 @@
#define CATMODULE "util"
#include "log.h"
#include "logging.h"
/* Abstract out an interface to use either poll or select depending on which

View File

@ -20,10 +20,10 @@
#endif
#include <thread/thread.h>
#include <avl/avl.h>
#include <httpp/httpp.h>
#include <net/sock.h>
#include "thread/thread.h"
#include "avl/avl.h"
#include "httpp/httpp.h"
#include "net/sock.h"
#include "connection.h"
@ -33,7 +33,7 @@
#include "stats.h"
#define CATMODULE "xslt"
#include "log.h"
#include "logging.h"
typedef struct {

View File

@ -8,10 +8,10 @@
#include <libxslt/xsltutils.h>
#include <thread/thread.h>
#include <avl/avl.h>
#include <httpp/httpp.h>
#include <net/sock.h>
#include "thread/thread.h"
#include "avl/avl.h"
#include "httpp/httpp.h"
#include "net/sock.h"
#include "connection.h"