Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Icecast-Server
Commits
df443176
Commit
df443176
authored
Mar 09, 2003
by
Karl Heyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reduce include file namespace clutter for libshout and the associated
smaller libs. svn path=/trunk/avl/; revision=4456
parent
0d40f034
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
12 additions
and
12 deletions
+12
-12
src/avl/Makefile.am
src/avl/Makefile.am
+1
-1
src/avl/avl.h
src/avl/avl.h
+2
-2
src/httpp/Makefile.am
src/httpp/Makefile.am
+1
-1
src/httpp/httpp.c
src/httpp/httpp.c
+1
-1
src/httpp/httpp.h
src/httpp/httpp.h
+1
-1
src/net/Makefile.am
src/net/Makefile.am
+1
-1
src/net/resolver.c
src/net/resolver.c
+1
-1
src/thread/Makefile.am
src/thread/Makefile.am
+1
-1
src/thread/thread.c
src/thread/thread.c
+3
-3
No files found.
src/avl/Makefile.am
View file @
df443176
...
...
@@ -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
...
...
src/avl/avl.h
View file @
df443176
...
...
@@ -2,7 +2,7 @@
* Copyright (C) 1995 by Sam Rushing <rushing@nightmare.com>
*/
/* $Id: avl.h,v 1.
4
2003/03/0
6 02:35:12 brendan
Exp $ */
/* $Id: avl.h,v 1.
5
2003/03/0
9 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)
...
...
src/httpp/Makefile.am
View file @
df443176
...
...
@@ -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
...
...
src/httpp/httpp.c
View file @
df443176
...
...
@@ -13,7 +13,7 @@
#include <string.h>
#include <ctype.h>
#include
"
avl.h
"
#include
<avl/
avl.h
>
#include "httpp.h"
#ifdef _WIN32
...
...
src/httpp/httpp.h
View file @
df443176
...
...
@@ -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"
...
...
src/net/Makefile.am
View file @
df443176
...
...
@@ -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@"
...
...
src/net/resolver.c
View file @
df443176
...
...
@@ -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)
...
...
src/thread/Makefile.am
View file @
df443176
...
...
@@ -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
...
...
src/thread/thread.c
View file @
df443176
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment