gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r13780 - in libmicrohttpd: . src/include src/testcurl src/t


From: gnunet
Subject: [GNUnet-SVN] r13780 - in libmicrohttpd: . src/include src/testcurl src/testcurl/https
Date: Tue, 23 Nov 2010 09:50:45 +0100

Author: grothoff
Date: 2010-11-23 09:50:45 +0100 (Tue, 23 Nov 2010)
New Revision: 13780

Modified:
   libmicrohttpd/ChangeLog
   libmicrohttpd/configure.ac
   libmicrohttpd/src/include/microhttpd.h
   libmicrohttpd/src/testcurl/daemontest_get_sendfile.c
   libmicrohttpd/src/testcurl/https/mhds_get_test.c
   libmicrohttpd/src/testcurl/https/mhds_get_test_select.c
   libmicrohttpd/src/testcurl/https/tls_test_common.h
Log:
release, testcase clean up

Modified: libmicrohttpd/ChangeLog
===================================================================
--- libmicrohttpd/ChangeLog     2010-11-22 23:27:20 UTC (rev 13779)
+++ libmicrohttpd/ChangeLog     2010-11-23 08:50:45 UTC (rev 13780)
@@ -1,3 +1,6 @@
+Tue Nov 23 09:41:00 CET 2010
+       Releasing libmicrohttpd 0.9.3. -CG
+
 Thu Nov 18 23:10:36 CET 2010
        Fixing #1619 (testcases not working with NSS on Fedora). -CG/timn
 

Modified: libmicrohttpd/configure.ac
===================================================================
--- libmicrohttpd/configure.ac  2010-11-22 23:27:20 UTC (rev 13779)
+++ libmicrohttpd/configure.ac  2010-11-23 08:50:45 UTC (rev 13780)
@@ -21,15 +21,15 @@
 #
 #
 AC_PREREQ(2.57)
-AC_INIT([libmicrohttpd], [0.9.2],address@hidden)
-AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.2])
+AC_INIT([libmicrohttpd], [0.9.3],address@hidden)
+AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.3])
 AM_CONFIG_HEADER([MHD_config.h])
 AC_CONFIG_MACRO_DIR([m4])
 AH_TOP([#define _GNU_SOURCE  1])
 
-LIB_VERSION_CURRENT=10
+LIB_VERSION_CURRENT=11
 LIB_VERSION_REVISION=0
-LIB_VERSION_AGE=0
+LIB_VERSION_AGE=1
 AC_SUBST(LIB_VERSION_CURRENT)
 AC_SUBST(LIB_VERSION_REVISION)
 AC_SUBST(LIB_VERSION_AGE)

Modified: libmicrohttpd/src/include/microhttpd.h
===================================================================
--- libmicrohttpd/src/include/microhttpd.h      2010-11-22 23:27:20 UTC (rev 
13779)
+++ libmicrohttpd/src/include/microhttpd.h      2010-11-23 08:50:45 UTC (rev 
13780)
@@ -106,7 +106,7 @@
 /**
  * Current version of the library.
  */
-#define MHD_VERSION 0x00090203
+#define MHD_VERSION 0x00090300
 
 /**
  * MHD-internal return code for "YES".

Modified: libmicrohttpd/src/testcurl/daemontest_get_sendfile.c
===================================================================
--- libmicrohttpd/src/testcurl/daemontest_get_sendfile.c        2010-11-22 
23:27:20 UTC (rev 13779)
+++ libmicrohttpd/src/testcurl/daemontest_get_sendfile.c        2010-11-23 
08:50:45 UTC (rev 13780)
@@ -89,7 +89,12 @@
   *unused = NULL;
   fd = open ("daemontest_get_sendfile.c", O_RDONLY);
   if (fd == -1)
-    abort ();
+    {
+      fprintf (stderr, "Failed to open `%s': %s\n",
+              "daemontest_get_sendfile.c",
+              STRERROR (errno));
+      exit (1);
+    }
   response = MHD_create_response_from_fd (strlen (TESTSTR), fd);
   ret = MHD_queue_response (connection, MHD_HTTP_OK, response);
   MHD_destroy_response (response);

Modified: libmicrohttpd/src/testcurl/https/mhds_get_test.c
===================================================================
--- libmicrohttpd/src/testcurl/https/mhds_get_test.c    2010-11-22 23:27:20 UTC 
(rev 13779)
+++ libmicrohttpd/src/testcurl/https/mhds_get_test.c    2010-11-23 08:50:45 UTC 
(rev 13780)
@@ -32,8 +32,6 @@
 #include <gcrypt.h>
 #include "tls_test_common.h"
 
-int curl_check_version (const char *req_version, ...);
-int curl_uses_nss_ssl ();
 extern const char srv_key_pem[];
 extern const char srv_self_signed_cert_pem[];
 extern const char srv_signed_cert_pem[];

Modified: libmicrohttpd/src/testcurl/https/mhds_get_test_select.c
===================================================================
--- libmicrohttpd/src/testcurl/https/mhds_get_test_select.c     2010-11-22 
23:27:20 UTC (rev 13779)
+++ libmicrohttpd/src/testcurl/https/mhds_get_test_select.c     2010-11-23 
08:50:45 UTC (rev 13780)
@@ -32,8 +32,6 @@
 #include <gcrypt.h>
 #include "tls_test_common.h"
 
-int curl_check_version (const char *req_version, ...);
-int curl_uses_nss_ssl ();
 extern const char srv_key_pem[];
 extern const char srv_self_signed_cert_pem[];
 extern const char srv_signed_cert_pem[];

Modified: libmicrohttpd/src/testcurl/https/tls_test_common.h
===================================================================
--- libmicrohttpd/src/testcurl/https/tls_test_common.h  2010-11-22 23:27:20 UTC 
(rev 13779)
+++ libmicrohttpd/src/testcurl/https/tls_test_common.h  2010-11-23 08:50:45 UTC 
(rev 13780)
@@ -69,6 +69,10 @@
 };
 
 
+int curl_check_version (const char *req_version, ...);
+int curl_uses_nss_ssl ();
+
+
 FILE *
 setup_ca_cert ();
 




reply via email to

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