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

reduce include file namespace clutter for libshout and the associated

smaller libs.

svn path=/trunk/avl/; revision=4456
This commit is contained in:
Karl Heyes 2003-03-09 22:56:46 +00:00
parent 2116bd0d5e
commit a420bd0b4f
9 changed files with 12 additions and 12 deletions

View File

@ -8,7 +8,7 @@ noinst_HEADERS = avl.h
libiceavl_la_SOURCES = avl.c
libiceavl_la_CFLAGS = @XIPH_CFLAGS@
INCLUDES = -I$(srcdir)/../thread
INCLUDES = -I$(srcdir)/..
# SCCS stuff (for BitKeeper)
GET = true

View File

@ -2,7 +2,7 @@
* Copyright (C) 1995 by Sam Rushing <rushing@nightmare.com>
*/
/* $Id: avl.h,v 1.4 2003/03/06 02:35:12 brendan Exp $ */
/* $Id: avl.h,v 1.5 2003/03/09 22:56:46 karl Exp $ */
#ifndef __AVL_H
#define __AVL_H
@ -12,7 +12,7 @@ extern "C" {
#endif
#ifndef NO_THREAD
#include "thread.h"
#include <thread/thread.h>
#else
#define thread_rwlock_create(x) do{}while(0)
#define thread_rwlock_destroy(x) do{}while(0)

View File

@ -8,7 +8,7 @@ noinst_HEADERS = httpp.h
libicehttpp_la_SOURCES = httpp.c
libicehttpp_la_CFLAGS = @XIPH_CFLAGS@
INCLUDES = -I$(srcdir)/../avl -I$(srcdir)/../thread
INCLUDES = -I$(srcdir)/..
# SCCS stuff (for BitKeeper)
GET = true

View File

@ -13,7 +13,7 @@
#include <string.h>
#include <ctype.h>
#include "avl.h"
#include <avl/avl.h>
#include "httpp.h"
#ifdef _WIN32

View File

@ -6,7 +6,7 @@
#ifndef __HTTPP_H
#define __HTTPP_H
#include "avl.h"
#include <avl/avl.h>
#define HTTPP_VAR_PROTOCOL "__protocol"
#define HTTPP_VAR_VERSION "__version"

View File

@ -8,7 +8,7 @@ noinst_HEADERS = resolver.h sock.h
libicenet_la_SOURCES = sock.c resolver.c
libicenet_la_CFLAGS = @XIPH_CFLAGS@
INCLUDES = -I$(srcdir)/../thread
INCLUDES = -I$(srcdir)/..
debug:
$(MAKE) all CFLAGS="@DEBUG@"

View File

@ -23,7 +23,7 @@
#endif
#ifndef NO_THREAD
#include "thread.h"
#include <thread/thread.h>
#else
#define thread_mutex_create(x) do{}while(0)
#define thread_mutex_destroy(x) do{}while(0)

View File

@ -8,7 +8,7 @@ noinst_HEADERS = thread.h
libicethread_la_SOURCES = thread.c
libicethread_la_CFLAGS = @XIPH_CFLAGS@
INCLUDES = -I$(srcdir)/../avl -I$(srcdir)/../log
INCLUDES = -I$(srcdir)/..
# SCCS stuff (for BitKeeper)
GET = true

View File

@ -42,10 +42,10 @@
#include <signal.h>
#include "thread.h"
#include "avl.h"
#include <thread/thread.h>
#include <avl/avl.h>
#ifdef THREAD_DEBUG
#include "log.h"
#include <log/log.h>
#endif
#ifdef _WIN32