gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r7635 - in libmicrohttpd: . src/daemon src/daemon/https/lgl


From: gnunet
Subject: [GNUnet-SVN] r7635 - in libmicrohttpd: . src/daemon src/daemon/https/lgl src/daemon/https/tls src/include src/testcurl src/testzzuf
Date: Wed, 27 Aug 2008 16:22:48 -0600 (MDT)

Author: grothoff
Date: 2008-08-27 16:22:47 -0600 (Wed, 27 Aug 2008)
New Revision: 7635

Modified:
   libmicrohttpd/configure.ac
   libmicrohttpd/src/daemon/daemon.c
   libmicrohttpd/src/daemon/https/lgl/asnprintf.c
   libmicrohttpd/src/daemon/https/lgl/asprintf.c
   libmicrohttpd/src/daemon/https/lgl/des.c
   libmicrohttpd/src/daemon/https/lgl/gc-gnulib.c
   libmicrohttpd/src/daemon/https/lgl/gc-libgcrypt.c
   libmicrohttpd/src/daemon/https/lgl/gc-pbkdf2-sha1.c
   libmicrohttpd/src/daemon/https/lgl/hmac-md5.c
   libmicrohttpd/src/daemon/https/lgl/hmac-sha1.c
   libmicrohttpd/src/daemon/https/lgl/md5.c
   libmicrohttpd/src/daemon/https/lgl/memmem.c
   libmicrohttpd/src/daemon/https/lgl/memmove.c
   libmicrohttpd/src/daemon/https/lgl/memxor.c
   libmicrohttpd/src/daemon/https/lgl/printf-args.c
   libmicrohttpd/src/daemon/https/lgl/printf-parse.c
   libmicrohttpd/src/daemon/https/lgl/read-file.c
   libmicrohttpd/src/daemon/https/lgl/realloc.c
   libmicrohttpd/src/daemon/https/lgl/rijndael-alg-fst.c
   libmicrohttpd/src/daemon/https/lgl/rijndael-api-fst.c
   libmicrohttpd/src/daemon/https/lgl/sha1.c
   libmicrohttpd/src/daemon/https/lgl/snprintf.c
   libmicrohttpd/src/daemon/https/lgl/strverscmp.c
   libmicrohttpd/src/daemon/https/lgl/time_r.c
   libmicrohttpd/src/daemon/https/lgl/vasnprintf.c
   libmicrohttpd/src/daemon/https/lgl/vasprintf.c
   libmicrohttpd/src/daemon/https/tls/defines.h
   libmicrohttpd/src/daemon/https/tls/gnutls_asn1_tab.c
   libmicrohttpd/src/daemon/https/tls/pkix_asn1_tab.c
   libmicrohttpd/src/include/platform.h
   libmicrohttpd/src/testcurl/curl_version_check.c
   libmicrohttpd/src/testcurl/daemontest_get.c
   libmicrohttpd/src/testcurl/daemontest_get_chunked.c
   libmicrohttpd/src/testcurl/daemontest_large_put.c
   libmicrohttpd/src/testcurl/daemontest_long_header.c
   libmicrohttpd/src/testcurl/daemontest_post.c
   libmicrohttpd/src/testcurl/daemontest_post_loop.c
   libmicrohttpd/src/testcurl/daemontest_postform.c
   libmicrohttpd/src/testcurl/daemontest_put.c
   libmicrohttpd/src/testcurl/daemontest_put_chunked.c
   libmicrohttpd/src/testzzuf/daemontest_get.c
   libmicrohttpd/src/testzzuf/daemontest_get_chunked.c
   libmicrohttpd/src/testzzuf/daemontest_large_put.c
   libmicrohttpd/src/testzzuf/daemontest_long_header.c
   libmicrohttpd/src/testzzuf/daemontest_post.c
   libmicrohttpd/src/testzzuf/daemontest_postform.c
   libmicrohttpd/src/testzzuf/daemontest_put.c
   libmicrohttpd/src/testzzuf/daemontest_put_chunked.c
Log:
use MHD_config.h

Modified: libmicrohttpd/configure.ac
===================================================================
--- libmicrohttpd/configure.ac  2008-08-27 03:58:56 UTC (rev 7634)
+++ libmicrohttpd/configure.ac  2008-08-27 22:22:47 UTC (rev 7635)
@@ -23,7 +23,7 @@
 AC_PREREQ(2.57)
 AC_INIT([libmicrohttpd], [0.3.1],address@hidden)
 AM_INIT_AUTOMAKE([libmicrohttpd], [0.3.1])
-AM_CONFIG_HEADER([config.h])
+AM_CONFIG_HEADER([MHD_config.h])
 
 AH_TOP([#define _GNU_SOURCE  1])
 

Modified: libmicrohttpd/src/daemon/daemon.c
===================================================================
--- libmicrohttpd/src/daemon/daemon.c   2008-08-27 03:58:56 UTC (rev 7634)
+++ libmicrohttpd/src/daemon/daemon.c   2008-08-27 22:22:47 UTC (rev 7635)
@@ -24,6 +24,7 @@
  * @author Daniel Pittman
  * @author Christian Grothoff
  */
+#include "platform.h"
 #include "internal.h"
 #include "response.h"
 #include "connection.h"
@@ -411,9 +412,11 @@
         }
       return MHD_NO;
     }
+#if HAVE_MESSAGES
 #if DEBUG_CONNECT
   MHD_DLOG (daemon, "Accepted connection on socket %d\n", s);
 #endif
+#endif
   have = 0;
   if ((daemon->per_ip_connection_limit != 0) && (daemon->max_connections > 0))
     {

Modified: libmicrohttpd/src/daemon/https/lgl/asnprintf.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/asnprintf.c      2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/asnprintf.c      2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -15,7 +15,7 @@
    with this program; if not, write to the Free Software Foundation,
    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include <config.h>
+#include "MHD_config.h"
 
 /* Specification.  */
 #include "vasnprintf.h"

Modified: libmicrohttpd/src/daemon/https/lgl/asprintf.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/asprintf.c       2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/asprintf.c       2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -15,7 +15,7 @@
    with this program; if not, write to the Free Software Foundation,
    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include <config.h>
+#include "MHD_config.h"
 
 /* Specification.  */
 #ifdef IN_LIBASPRINTF

Modified: libmicrohttpd/src/daemon/https/lgl/des.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/des.c    2008-08-27 03:58:56 UTC (rev 
7634)
+++ libmicrohttpd/src/daemon/https/lgl/des.c    2008-08-27 22:22:47 UTC (rev 
7635)
@@ -94,7 +94,7 @@
  */
 
 
-#include <config.h>
+#include "MHD_config.h"
 
 #include "des.h"
 

Modified: libmicrohttpd/src/daemon/https/lgl/gc-gnulib.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/gc-gnulib.c      2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/gc-gnulib.c      2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -20,7 +20,7 @@
 
 /* Note: This file is only built if GC uses internal functions. */
 
-#include <config.h>
+#include "MHD_config.h"
 
 /* Get prototype. */
 #include "gc.h"

Modified: libmicrohttpd/src/daemon/https/lgl/gc-libgcrypt.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/gc-libgcrypt.c   2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/gc-libgcrypt.c   2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -20,7 +20,7 @@
 
 /* Note: This file is only built if GC uses Libgcrypt. */
 
-#include "config.h"
+#include "MHD_config.h"
 
 /* Get prototype. */
 #include "gc.h"

Modified: libmicrohttpd/src/daemon/https/lgl/gc-pbkdf2-sha1.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/gc-pbkdf2-sha1.c 2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/gc-pbkdf2-sha1.c 2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -18,7 +18,7 @@
 /* Written by Simon Josefsson.  The comments in this file are taken
    from RFC 2898.  */
 
-#include <config.h>
+#include "MHD_config.h"
 
 #include "gc.h"
 

Modified: libmicrohttpd/src/daemon/https/lgl/hmac-md5.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/hmac-md5.c       2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/hmac-md5.c       2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -17,7 +17,7 @@
 
 /* Written by Simon Josefsson.  */
 
-#include <config.h>
+#include "MHD_config.h"
 
 #include "hmac.h"
 

Modified: libmicrohttpd/src/daemon/https/lgl/hmac-sha1.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/hmac-sha1.c      2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/hmac-sha1.c      2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -17,7 +17,7 @@
 
 /* Written by Simon Josefsson.  */
 
-#include <config.h>
+#include "MHD_config.h"
 
 #include "hmac.h"
 

Modified: libmicrohttpd/src/daemon/https/lgl/md5.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/md5.c    2008-08-27 03:58:56 UTC (rev 
7634)
+++ libmicrohttpd/src/daemon/https/lgl/md5.c    2008-08-27 22:22:47 UTC (rev 
7635)
@@ -20,7 +20,7 @@
 
 /* Written by Ulrich Drepper <address@hidden>, 1995.  */
 
-#include <config.h>
+#include "MHD_config.h"
 
 #include "md5.h"
 

Modified: libmicrohttpd/src/daemon/https/lgl/memmem.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/memmem.c 2008-08-27 03:58:56 UTC (rev 
7634)
+++ libmicrohttpd/src/daemon/https/lgl/memmem.c 2008-08-27 22:22:47 UTC (rev 
7635)
@@ -16,7 +16,7 @@
  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
 #ifndef _LIBC
-# include <config.h>
+#include "MHD_config.h"
 #endif
 
 #include <stddef.h>

Modified: libmicrohttpd/src/daemon/https/lgl/memmove.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/memmove.c        2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/memmove.c        2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -3,7 +3,7 @@
    In the public domain.
    By David MacKenzie <address@hidden>.  */
 
-#include <config.h>
+#include "MHD_config.h"
 
 #include <stddef.h>
 

Modified: libmicrohttpd/src/daemon/https/lgl/memxor.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/memxor.c 2008-08-27 03:58:56 UTC (rev 
7634)
+++ libmicrohttpd/src/daemon/https/lgl/memxor.c 2008-08-27 22:22:47 UTC (rev 
7635)
@@ -18,7 +18,7 @@
 /* Written by Simon Josefsson.  The interface was inspired by memxor
    in Niels Möller's Nettle. */
 
-#include <config.h>
+#include "MHD_config.h"
 
 #include "memxor.h"
 

Modified: libmicrohttpd/src/daemon/https/lgl/printf-args.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/printf-args.c    2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/printf-args.c    2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -21,7 +21,7 @@
      STATIC             Set to 'static' to declare the function static.  */
 
 #ifndef PRINTF_FETCHARGS
-# include <config.h>
+#include "MHD_config.h"
 #endif
 
 /* Specification.  */

Modified: libmicrohttpd/src/daemon/https/lgl/printf-parse.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/printf-parse.c   2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/printf-parse.c   2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -29,7 +29,7 @@
      ENABLE_UNISTDIO    Set to 1 to enable the unistdio extensions.  */
 
 #ifndef PRINTF_PARSE
-# include <config.h>
+#include "MHD_config.h"
 #endif
 
 /* Specification.  */

Modified: libmicrohttpd/src/daemon/https/lgl/read-file.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/read-file.c      2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/read-file.c      2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -16,7 +16,7 @@
    along with this program; if not, write to the Free Software Foundation,
    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include <config.h>
+#include "MHD_config.h"
 
 #include "read-file.h"
 

Modified: libmicrohttpd/src/daemon/https/lgl/realloc.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/realloc.c        2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/realloc.c        2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -17,7 +17,7 @@
 
 /* written by Jim Meyering and Bruno Haible */
 
-#include <config.h>
+#include "MHD_config.h"
 
 /* Only the AC_FUNC_REALLOC macro defines 'realloc' already in config.h.  */
 #ifdef realloc

Modified: libmicrohttpd/src/daemon/https/lgl/rijndael-alg-fst.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/rijndael-alg-fst.c       2008-08-27 
03:58:56 UTC (rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/rijndael-alg-fst.c       2008-08-27 
22:22:47 UTC (rev 7635)
@@ -25,7 +25,7 @@
  * 
http://www.iaik.tu-graz.ac.at/research/krypto/AES/old/~rijmen/rijndael/rijndael-fst-3.0.zip
  */
 
-#include <config.h>
+#include "MHD_config.h"
 
 /**
  * rijndael-alg-fst.c

Modified: libmicrohttpd/src/daemon/https/lgl/rijndael-api-fst.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/rijndael-api-fst.c       2008-08-27 
03:58:56 UTC (rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/rijndael-api-fst.c       2008-08-27 
22:22:47 UTC (rev 7635)
@@ -25,7 +25,7 @@
  * 
http://www.iaik.tu-graz.ac.at/research/krypto/AES/old/~rijmen/rijndael/rijndael-fst-3.0.zip
  */
 
-#include <config.h>
+#include "MHD_config.h"
 
 /**
  * rijndael-api-fst.c

Modified: libmicrohttpd/src/daemon/https/lgl/sha1.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/sha1.c   2008-08-27 03:58:56 UTC (rev 
7634)
+++ libmicrohttpd/src/daemon/https/lgl/sha1.c   2008-08-27 22:22:47 UTC (rev 
7635)
@@ -23,7 +23,7 @@
       Robert Klep <address@hidden>  -- Expansion function fix
 */
 
-#include <config.h>
+#include "MHD_config.h"
 
 #include "sha1.h"
 

Modified: libmicrohttpd/src/daemon/https/lgl/snprintf.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/snprintf.c       2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/snprintf.c       2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -16,7 +16,7 @@
    with this program; if not, write to the Free Software Foundation,
    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include <config.h>
+#include "MHD_config.h"
 
 /* Specification.  */
 #include <stdio.h>

Modified: libmicrohttpd/src/daemon/https/lgl/strverscmp.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/strverscmp.c     2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/strverscmp.c     2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -18,7 +18,7 @@
    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
 #if !_LIBC
-# include <config.h>
+#include "MHD_config.h"
 #endif
 
 #include <string.h>

Modified: libmicrohttpd/src/daemon/https/lgl/time_r.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/time_r.c 2008-08-27 03:58:56 UTC (rev 
7634)
+++ libmicrohttpd/src/daemon/https/lgl/time_r.c 2008-08-27 22:22:47 UTC (rev 
7635)
@@ -18,7 +18,7 @@
 
 /* Written by Paul Eggert.  */
 
-#include <config.h>
+#include "MHD_config.h"
 
 #include <time.h>
 

Modified: libmicrohttpd/src/daemon/https/lgl/vasnprintf.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/vasnprintf.c     2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/vasnprintf.c     2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -52,7 +52,7 @@
 #endif
 
 #ifndef VASNPRINTF
-# include <config.h>
+#include "MHD_config.h"
 #endif
 #ifndef IN_LIBINTL
 # include <alloca.h>

Modified: libmicrohttpd/src/daemon/https/lgl/vasprintf.c
===================================================================
--- libmicrohttpd/src/daemon/https/lgl/vasprintf.c      2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/lgl/vasprintf.c      2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -15,7 +15,7 @@
    with this program; if not, write to the Free Software Foundation,
    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-#include <config.h>
+#include "MHD_config.h"
 
 /* Specification.  */
 #ifdef IN_LIBASPRINTF

Modified: libmicrohttpd/src/daemon/https/tls/defines.h
===================================================================
--- libmicrohttpd/src/daemon/https/tls/defines.h        2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/tls/defines.h        2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -26,7 +26,7 @@
 # define DEFINES_H
 
 #if HAVE_CONFIG_H
-# include <config.h>
+# include "MHD_config.h"
 #endif
 
 #include <stddef.h>

Modified: libmicrohttpd/src/daemon/https/tls/gnutls_asn1_tab.c
===================================================================
--- libmicrohttpd/src/daemon/https/tls/gnutls_asn1_tab.c        2008-08-27 
03:58:56 UTC (rev 7634)
+++ libmicrohttpd/src/daemon/https/tls/gnutls_asn1_tab.c        2008-08-27 
22:22:47 UTC (rev 7635)
@@ -1,5 +1,5 @@
 #if HAVE_CONFIG_H
-# include "config.h"
+#include "MHD_config.h"
 #endif
 
 #include <libtasn1.h>

Modified: libmicrohttpd/src/daemon/https/tls/pkix_asn1_tab.c
===================================================================
--- libmicrohttpd/src/daemon/https/tls/pkix_asn1_tab.c  2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/daemon/https/tls/pkix_asn1_tab.c  2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -1,5 +1,5 @@
 #if HAVE_CONFIG_H
-# include "config.h"
+#include "MHD_config.h"
 #endif
 
 #include <libtasn1.h>

Modified: libmicrohttpd/src/include/platform.h
===================================================================
--- libmicrohttpd/src/include/platform.h        2008-08-27 03:58:56 UTC (rev 
7634)
+++ libmicrohttpd/src/include/platform.h        2008-08-27 22:22:47 UTC (rev 
7635)
@@ -34,7 +34,7 @@
 #ifndef PLATFORM_H
 #define PLATFORM_H
 
-#include "config.h"
+#include "MHD_config.h"
 
 #define _XOPEN_SOURCE_EXTENDED  1
 #define _OPEN_THREADS

Modified: libmicrohttpd/src/testcurl/curl_version_check.c
===================================================================
--- libmicrohttpd/src/testcurl/curl_version_check.c     2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testcurl/curl_version_check.c     2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -24,7 +24,7 @@
  * @author Sagie Amir
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include "platform.h"
 #include <curl/curl.h>
 #include <microhttpd.h>

Modified: libmicrohttpd/src/testcurl/daemontest_get.c
===================================================================
--- libmicrohttpd/src/testcurl/daemontest_get.c 2008-08-27 03:58:56 UTC (rev 
7634)
+++ libmicrohttpd/src/testcurl/daemontest_get.c 2008-08-27 22:22:47 UTC (rev 
7635)
@@ -25,7 +25,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testcurl/daemontest_get_chunked.c
===================================================================
--- libmicrohttpd/src/testcurl/daemontest_get_chunked.c 2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testcurl/daemontest_get_chunked.c 2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -28,7 +28,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testcurl/daemontest_large_put.c
===================================================================
--- libmicrohttpd/src/testcurl/daemontest_large_put.c   2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testcurl/daemontest_large_put.c   2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -24,7 +24,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testcurl/daemontest_long_header.c
===================================================================
--- libmicrohttpd/src/testcurl/daemontest_long_header.c 2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testcurl/daemontest_long_header.c 2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -24,7 +24,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testcurl/daemontest_post.c
===================================================================
--- libmicrohttpd/src/testcurl/daemontest_post.c        2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testcurl/daemontest_post.c        2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -24,7 +24,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testcurl/daemontest_post_loop.c
===================================================================
--- libmicrohttpd/src/testcurl/daemontest_post_loop.c   2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testcurl/daemontest_post_loop.c   2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -24,7 +24,7 @@
  * @author Christian Grothoff (inspired by bug report #1296)
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testcurl/daemontest_postform.c
===================================================================
--- libmicrohttpd/src/testcurl/daemontest_postform.c    2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testcurl/daemontest_postform.c    2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -24,7 +24,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testcurl/daemontest_put.c
===================================================================
--- libmicrohttpd/src/testcurl/daemontest_put.c 2008-08-27 03:58:56 UTC (rev 
7634)
+++ libmicrohttpd/src/testcurl/daemontest_put.c 2008-08-27 22:22:47 UTC (rev 
7635)
@@ -24,7 +24,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testcurl/daemontest_put_chunked.c
===================================================================
--- libmicrohttpd/src/testcurl/daemontest_put_chunked.c 2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testcurl/daemontest_put_chunked.c 2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -25,7 +25,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testzzuf/daemontest_get.c
===================================================================
--- libmicrohttpd/src/testzzuf/daemontest_get.c 2008-08-27 03:58:56 UTC (rev 
7634)
+++ libmicrohttpd/src/testzzuf/daemontest_get.c 2008-08-27 22:22:47 UTC (rev 
7635)
@@ -24,7 +24,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testzzuf/daemontest_get_chunked.c
===================================================================
--- libmicrohttpd/src/testzzuf/daemontest_get_chunked.c 2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testzzuf/daemontest_get_chunked.c 2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -24,7 +24,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testzzuf/daemontest_large_put.c
===================================================================
--- libmicrohttpd/src/testzzuf/daemontest_large_put.c   2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testzzuf/daemontest_large_put.c   2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -24,7 +24,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testzzuf/daemontest_long_header.c
===================================================================
--- libmicrohttpd/src/testzzuf/daemontest_long_header.c 2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testzzuf/daemontest_long_header.c 2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -24,7 +24,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testzzuf/daemontest_post.c
===================================================================
--- libmicrohttpd/src/testzzuf/daemontest_post.c        2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testzzuf/daemontest_post.c        2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -24,7 +24,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testzzuf/daemontest_postform.c
===================================================================
--- libmicrohttpd/src/testzzuf/daemontest_postform.c    2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testzzuf/daemontest_postform.c    2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -24,7 +24,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testzzuf/daemontest_put.c
===================================================================
--- libmicrohttpd/src/testzzuf/daemontest_put.c 2008-08-27 03:58:56 UTC (rev 
7634)
+++ libmicrohttpd/src/testzzuf/daemontest_put.c 2008-08-27 22:22:47 UTC (rev 
7635)
@@ -24,7 +24,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>

Modified: libmicrohttpd/src/testzzuf/daemontest_put_chunked.c
===================================================================
--- libmicrohttpd/src/testzzuf/daemontest_put_chunked.c 2008-08-27 03:58:56 UTC 
(rev 7634)
+++ libmicrohttpd/src/testzzuf/daemontest_put_chunked.c 2008-08-27 22:22:47 UTC 
(rev 7635)
@@ -25,7 +25,7 @@
  * @author Christian Grothoff
  */
 
-#include "config.h"
+#include "MHD_config.h"
 #include <curl/curl.h>
 #include <microhttpd.h>
 #include <stdlib.h>





reply via email to

[Prev in Thread] Current Thread [Next in Thread]