[xiph-cvs] cvs commit: timing timing.c

Karl Heyes karl at xiph.org
Sat Mar 8 08:05:39 PST 2003



karl        03/03/08 11:05:38

  Modified:    .        avl.c
               .        resolver.c sock.c
               src      shout.c util.c vorbis.c
               .        thread.c
               .        httpp.c
               .        timing.c
  Log:
  include the automake config.h file if the application defines one

Revision  Changes    Path
1.3       +5 -1      avl/avl.c

Index: avl.c
===================================================================
RCS file: /usr/local/cvsroot/avl/avl.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- avl.c	6 Mar 2003 00:59:41 -0000	1.2
+++ avl.c	8 Mar 2003 16:05:38 -0000	1.3
@@ -22,12 +22,16 @@
  *
  */
 
-/* $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
  * written in python, 'avl_tree.py'. Read that file first.
  */
+
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
 
 #include <stdio.h>
 #include <stdlib.h>

<p><p>1.8       +3 -0      net/resolver.c

Index: resolver.c
===================================================================
RCS file: /usr/local/cvsroot/net/resolver.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- resolver.c	6 Mar 2003 02:35:12 -0000	1.7
+++ resolver.c	8 Mar 2003 16:05:38 -0000	1.8
@@ -4,6 +4,9 @@
 ** name resolver library
 **
 */
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
 
 #include <stdio.h>
 #include <sys/types.h>

<p><p>1.19      +4 -0      net/sock.c

Index: sock.c
===================================================================
RCS file: /usr/local/cvsroot/net/sock.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- sock.c	7 Mar 2003 14:57:36 -0000	1.18
+++ sock.c	8 Mar 2003 16:05:38 -0000	1.19
@@ -19,6 +19,10 @@
  *
  */
 
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdarg.h>

<p><p>1.31      +4 -0      libshout/src/shout.c

Index: shout.c
===================================================================
RCS file: /usr/local/cvsroot/libshout/src/shout.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- shout.c	4 Mar 2003 19:32:14 -0000	1.30
+++ shout.c	8 Mar 2003 16:05:38 -0000	1.31
@@ -1,5 +1,9 @@
 /* shout.c: Implementation of public libshout interface shout.h */
 
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>

<p><p>1.11      +4 -0      libshout/src/util.c

Index: util.c
===================================================================
RCS file: /usr/local/cvsroot/libshout/src/util.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- util.c	26 Feb 2003 20:14:06 -0000	1.10
+++ util.c	8 Mar 2003 16:05:38 -0000	1.11
@@ -1,5 +1,9 @@
 /* util.c: libshout utility/portability functions */
 
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>

<p><p>1.4       +4 -0      libshout/src/vorbis.c

Index: vorbis.c
===================================================================
RCS file: /usr/local/cvsroot/libshout/src/vorbis.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- vorbis.c	22 Nov 2002 13:02:00 -0000	1.3
+++ vorbis.c	8 Mar 2003 16:05:38 -0000	1.4
@@ -1,5 +1,9 @@
 /* vorbis.c: Ogg Vorbis data handlers for libshout */
 
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
 #include <stdlib.h>
 #include <string.h>
 

<p><p>1.21      +4 -0      thread/thread.c

Index: thread.c
===================================================================
RCS file: /usr/local/cvsroot/thread/thread.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- thread.c	4 Mar 2003 15:31:34 -0000	1.20
+++ thread.c	8 Mar 2003 16:05:38 -0000	1.21
@@ -18,6 +18,10 @@
 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */
 
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>

<p><p>1.16      +4 -0      httpp/httpp.c

Index: httpp.c
===================================================================
RCS file: /usr/local/cvsroot/httpp/httpp.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- httpp.c	8 Mar 2003 05:27:17 -0000	1.15
+++ httpp.c	8 Mar 2003 16:05:38 -0000	1.16
@@ -3,6 +3,10 @@
 ** http parsing engine
 */
 
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
 #include <stdio.h>
 
 #include <stdlib.h>

<p><p>1.7       +4 -0      timing/timing.c

Index: timing.c
===================================================================
RCS file: /usr/local/cvsroot/timing/timing.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- timing.c	7 Feb 2002 01:04:09 -0000	1.6
+++ timing.c	8 Mar 2003 16:05:38 -0000	1.7
@@ -2,6 +2,10 @@
 ** - Timing functions
 */
 
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
 #include <stdlib.h>
 #include <sys/types.h>
 #ifdef HAVE_STDINT_H

<p><p>--- >8 ----
List archives:  http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body.  No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.



More information about the commits mailing list