gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libmicrohttpd] GNU libmicrohttpd branch master updated. 1d


From: gitolite
Subject: [GNUnet-SVN] [libmicrohttpd] GNU libmicrohttpd branch master updated. 1d14778635f9c92ff314f48c744a44cf3853c857
Date: Thu, 24 Nov 2016 21:16:55 +0100 (CET)

The branch, master has been updated
       via  1d14778635f9c92ff314f48c744a44cf3853c857 (commit)
       via  709b3c5408a94cd66eb2ace08391d9d7eb77db18 (commit)
       via  46f67fb2927fa8059d54b469663160256158f240 (commit)
      from  c2fa486399f61bb3add6525980e2a32bd391e44b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 1d14778635f9c92ff314f48c744a44cf3853c857
Author: Evgeny Grin (Karlson2k) <address@hidden>
Date:   Thu Nov 24 23:12:22 2016 +0300

    Precompiler macro testing: exclude wcsnlen() test on OpenBSD as on NetBSD.

commit 709b3c5408a94cd66eb2ace08391d9d7eb77db18
Author: Evgeny Grin (Karlson2k) <address@hidden>
Date:   Thu Nov 24 19:59:54 2016 +0300

    Use "shutdown trigger poll()" on OpenBSD

commit 46f67fb2927fa8059d54b469663160256158f240
Author: Evgeny Grin (Karlson2k) <address@hidden>
Date:   Thu Nov 24 19:47:44 2016 +0300

    fixed test_postprocessor*: all files which includes "internal.h" require 
CFLAGS as well as CPPFLAGS for GnuTLS

-----------------------------------------------------------------------

Summary of changes:
 configure.ac               | 1 +
 m4/mhd_sys_extentions.m4   | 3 ++-
 src/microhttpd/Makefile.am | 6 ++++++
 3 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 2d8a6a0..6c04181 100644
--- a/configure.ac
+++ b/configure.ac
@@ -253,6 +253,7 @@ openbsd*)
      AC_DEFINE_UNQUOTED(SOMEBSD,1,[This is a BSD system])
      AC_DEFINE_UNQUOTED(OPENBSD,1,[This is an OpenBSD system])
      mhd_host_os='OpenBSD'
+     shutdown_trig_select='yes'
      AC_MSG_RESULT([[$mhd_host_os]])
      ;;
 netbsd*)
diff --git a/m4/mhd_sys_extentions.m4 b/m4/mhd_sys_extentions.m4
index fa5d0fd..0fff57e 100644
--- a/m4/mhd_sys_extentions.m4
+++ b/m4/mhd_sys_extentions.m4
@@ -96,7 +96,8 @@ int main()
   (void) strnlen;
 #endif
 
-#ifndef __NetBSD__
+#if !defined(__NetBSD__) && !defined(__OpenBSD__)
+/* NetBSD and OpenBSD didn't implement wcsnlen() for some reason. */
 #ifndef wcsnlen
   (void) wcsnlen;
 #endif
diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am
index 03a6b09..9bf5ace 100644
--- a/src/microhttpd/Makefile.am
+++ b/src/microhttpd/Makefile.am
@@ -203,6 +203,8 @@ test_postprocessor_SOURCES = \
   test_postprocessor.c
 test_postprocessor_CPPFLAGS = \
   $(AM_CPPFLAGS) $(GNUTLS_CPPFLAGS)
+test_postprocessor_CFLAGS = \
+  $(AM_CFLAGS) $(GNUTLS_CFLAGS)
 test_postprocessor_LDADD = \
   $(top_builddir)/src/microhttpd/libmicrohttpd.la
 
@@ -210,6 +212,8 @@ test_postprocessor_amp_SOURCES = \
   test_postprocessor_amp.c
 test_postprocessor_amp_CPPFLAGS = \
   $(AM_CPPFLAGS) $(GNUTLS_CPPFLAGS)
+test_postprocessor_amp_CFLAGS = \
+  $(AM_CFLAGS) $(GNUTLS_CFLAGS)
 test_postprocessor_amp_LDADD = \
   $(top_builddir)/src/microhttpd/libmicrohttpd.la
 
@@ -217,6 +221,8 @@ test_postprocessor_large_SOURCES = \
   test_postprocessor_large.c
 test_postprocessor_large_CPPFLAGS = \
   $(AM_CPPFLAGS) $(GNUTLS_CPPFLAGS)
+test_postprocessor_large_CFLAGS = \
+  $(AM_CFLAGS) $(GNUTLS_CFLAGS)
 test_postprocessor_large_LDADD = \
   $(top_builddir)/src/microhttpd/libmicrohttpd.la
 


hooks/post-receive
-- 
GNU libmicrohttpd



reply via email to

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