gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r7769 - libmicrohttpd


From: gnunet
Subject: [GNUnet-SVN] r7769 - libmicrohttpd
Date: Sun, 12 Oct 2008 17:07:03 -0600 (MDT)

Author: grothoff
Date: 2008-10-12 17:07:02 -0600 (Sun, 12 Oct 2008)
New Revision: 7769

Modified:
   libmicrohttpd/README
   libmicrohttpd/configure.ac
Log:
update to README

Modified: libmicrohttpd/README
===================================================================
--- libmicrohttpd/README        2008-10-12 23:02:31 UTC (rev 7768)
+++ libmicrohttpd/README        2008-10-12 23:07:02 UTC (rev 7769)
@@ -70,11 +70,14 @@
 
 Missing features:
 =================
-- SSL code is still too large (plenty of dead or
-  unnecessary code imported from gnuTLS)
+- SSL code is still too large:
+  - plenty of dead or unnecessary code imported from gnuTLS
+  => hunt for more dead code!
+  - some code is replicated (also in libgcrypt)
+  - libgcrypt is used, and is also bloated
+  => integrate required portions of libgcrypt into our tree
+     instead of linking against it
 - Make sure SSL works on non-GNU/Linux platforms
-- Fix compiler warnings in gnuTLS code 
-  (largely signed vs. unsigned char)
 
 
 Untested features:
@@ -101,5 +104,4 @@
 - tutorial:
   * clean up English
   * make sure everything is accurate
-  * change example code to follow GNU coding conventions
-  * provide examples for using SSL
+

Modified: libmicrohttpd/configure.ac
===================================================================
--- libmicrohttpd/configure.ac  2008-10-12 23:02:31 UTC (rev 7768)
+++ libmicrohttpd/configure.ac  2008-10-12 23:07:02 UTC (rev 7769)
@@ -159,6 +159,7 @@
 )
 AC_MSG_RESULT($have_inet6)
 
+
 # libcurl (required for testing)
 SAVE_LIBS=$LIBS
 LIBCURL_CHECK_CONFIG(,,curl=1,curl=0)
@@ -316,6 +317,10 @@
    [enable_x509="yes"])
 AC_MSG_RESULT($enable_x509)
 
+# test for libz (optional feature for HTTPS)
+zlib=1
+AC_CHECK_LIB(z, compress,,zlib=0)
+AM_CONDITIONAL(HAVE_LIBZ, test x$zlib = x1)
 
 # Symbols required by GNU_TLS 
 AC_DEFINE([ENABLE_MINITASN1],[1],[Include minitasn1 support])
@@ -387,12 +392,16 @@
 
 if test "$enable_HTTPS" = "yes"
 then
-AC_MSG_NOTICE([HTTPS subsystem configuration:
+ AC_MSG_NOTICE([HTTPS subsystem configuration:
   TLS support:       ${enable_TLS}
   SSLv3 support:     ${enable_SSL}
   x509 support:      ${enable_x509}
   Client code dep.:  ${MSG_CLIENT_SIDE}                
-])
+ ])
+ if test "$zlib" != 1
+ then
+  AC_MSG_NOTICE([WARNING: deflate feature for HTTPS disabled (no zlib)])
+ fi
 fi  
 
 





reply via email to

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