Christian Grothoff
|
fd764222b8
|
-version bump
|
2014-05-28 13:49:18 +00:00 |
|
Christian Grothoff
|
d71165ed3a
|
second attempt to properly commit patch for #3392
|
2014-05-28 13:48:57 +00:00 |
|
Christian Grothoff
|
07e0a5ea0a
|
releasing 0.9.36
|
2014-05-25 18:20:18 +00:00 |
|
Evgeny Grin (Karlson2k)
|
56b7b801ec
|
W32: fix building with --disable-static
|
2014-05-25 15:46:28 +00:00 |
|
Christian Grothoff
|
14a0065869
|
never notify twice
|
2014-05-17 04:47:33 +00:00 |
|
Christian Grothoff
|
51da5739fe
|
-fix #3397
|
2014-05-13 16:26:49 +00:00 |
|
David Barksdale
|
bc0dcd4cbb
|
Add test for empty entity.
|
2014-05-06 15:07:52 +00:00 |
|
Christian Grothoff
|
cb4bd812c4
|
Bernd Kuhls <berndkuhls@hotmail.com> wrote:
Hi,
the latest release added
AC_CHECK_FILE([$with_gnutls/include/gnutls/gnutls.h],
to configure.ac which is not cross-compile aware, for the precise error
message have a look at the bottom of
http://autobuild.buildroot.net/results/cb2/cb2cec1295a40667a3c21060864dd0e65a
312c3e/build-end.log
The following patch fixes the problem
--- configure.ac 2014-05-02 20:38:40.000000000 +0200
+++ configure.ac 2014-05-04 09:17:00.000000000 +0200
@@ -639,8 +639,7 @@
SAVE_CPPFLAGS="$CPPFLAGS"
LDFLAGS="-L$with_gnutls/lib $LDFLAGS"
CPPFLAGS="-I$with_gnutls/include $CPPFLAGS"
- AC_CHECK_FILE([$with_gnutls/include/gnutls/gnutls.h],
- [AC_CHECK_HEADERS([gnutls/gnutls.h],
+ AC_CHECK_HEADERS([gnutls/gnutls.h],
[AC_CHECK_LIB([gnutls], [gnutls_priority_set],
[
GNUTLS_CPPFLAGS="-I$with_gnutls/include"
@@ -648,7 +647,7 @@
GNUTLS_LIBS="-lgnutls"
AC_CHECK_LIB([gnutls], [gnutls_load_file], [AC_CHECK_LIB
([gnutls], [gnutls_privkey_import_x509_raw], [have_gnutls_sni=yes])])
have_gnutls=yes
- ])])])
+ ])])
AS_IF([test "x$have_gnutls" != "xyes"], [AC_MSG_ERROR([can't find
usable libgnutls at specified prefix $with_gnutls])])
LDFLAGS="$SAVE_LDFLAGS"
CPPFLAGS="$SAVE_CPPFLAGS"
Regards, Bernd
|
2014-05-04 09:06:27 +00:00 |
|
Christian Grothoff
|
7231b7f830
|
fix #3391
|
2014-05-02 18:43:17 +00:00 |
|
Christian Grothoff
|
1bd97426ba
|
fix rare epoll/resume issue, also simplifying logic
|
2014-05-02 18:37:35 +00:00 |
|
Christian Grothoff
|
312d11ec19
|
fix #3392 as suggested by reporter
|
2014-05-02 18:23:58 +00:00 |
|
Christian Grothoff
|
c94a82388f
|
improve documentation for key-value iterator
|
2014-04-24 19:41:30 +00:00 |
|
Evgeny Grin (Karlson2k)
|
f1f821746b
|
W32: remove dependency on libgcc dll with latest GCC
|
2014-04-15 14:41:01 +00:00 |
|
Christian Grothoff
|
c34947db86
|
-correct documentation
|
2014-04-14 17:55:32 +00:00 |
|
Christian Grothoff
|
2964021746
|
-fix warning
|
2014-04-10 07:49:43 +00:00 |
|
Christian Grothoff
|
17b849eb47
|
-eliminate warnings
|
2014-04-10 07:46:35 +00:00 |
|
Christian Grothoff
|
14ca1719e9
|
fix #3371
|
2014-04-10 07:43:05 +00:00 |
|
Evgeny Grin (Karlson2k)
|
2bffe00f07
|
Added ability to use native W32 threads, added --with-threads=LIB configure parameter
|
2014-04-08 14:46:06 +00:00 |
|
Evgeny Grin (Karlson2k)
|
1c5f53ac93
|
Simplify pthread_join() calls
|
2014-04-08 09:07:48 +00:00 |
|
Evgeny Grin (Karlson2k)
|
5cab359556
|
Fixed MHD base tests with non-default path to GnuTLS includes, removed duplicated include
|
2014-04-07 21:50:20 +00:00 |
|
Evgeny Grin (Karlson2k)
|
5fe37b899b
|
Fix curl HTTPS test with GnuTLS specific version
|
2014-04-07 20:50:28 +00:00 |
|
Evgeny Grin (Karlson2k)
|
c196047666
|
Updated doxygen for MHD_FEATURE with new option name, fixed check of initialisaion of ligcrypt < 1.6.0
|
2014-04-07 20:26:20 +00:00 |
|
Christian Grothoff
|
f46a9bc5fb
|
-bump Evgeny
|
2014-04-07 11:28:03 +00:00 |
|
Christian Grothoff
|
ca3a7d621c
|
add MHD_OPTION_HTTPS_MEM_DHPARAMS to support PFS
|
2014-04-07 11:27:18 +00:00 |
|
Evgeny Grin (Karlson2k)
|
8172eecea0
|
Check result of initialisaion of libgcrypt, runtime check for required libgcrypt version
|
2014-04-04 17:02:43 +00:00 |
|
Evgeny Grin (Karlson2k)
|
30da663666
|
W32: use critical section instead of waitable object as MHD require synchronization only within one process
|
2014-04-04 11:19:41 +00:00 |
|
Evgeny Grin (Karlson2k)
|
96a5541b5f
|
Fix w32 build
|
2014-04-04 10:22:05 +00:00 |
|
Evgeny Grin (Karlson2k)
|
ad8832a25b
|
fix configure detection for pthread_setname_np()
|
2014-04-01 09:14:50 +00:00 |
|
Evgeny Grin (Karlson2k)
|
002ebb63f3
|
fix macros for pthread mutex
|
2014-04-01 07:23:33 +00:00 |
|
Evgeny Grin (Karlson2k)
|
583dc11b22
|
Really check for presence of pthread_setname_np() instead of guessing
|
2014-04-01 06:22:45 +00:00 |
|
Evgeny Grin (Karlson2k)
|
b5d8ccf533
|
Rename internal helper lib libmicrohttpd_w32.la -> libplatform_interface.la
|
2014-04-01 06:22:37 +00:00 |
|
Evgeny Grin (Karlson2k)
|
08a582230d
|
Cosmetics
|
2014-04-01 06:22:25 +00:00 |
|
Evgeny Grin (Karlson2k)
|
e1fbd3e574
|
ChangeLog update
|
2014-04-01 06:16:22 +00:00 |
|
Evgeny Grin (Karlson2k)
|
5f9dfdb2b7
|
Use MHD mutex macros
|
2014-04-01 06:16:16 +00:00 |
|
Evgeny Grin (Karlson2k)
|
60d4fbee43
|
Implement wrapper macros for mutex manipulations, support W32 native mutex, require at least WinXP headers on W32
|
2014-04-01 06:16:04 +00:00 |
|
Evgeny Grin (Karlson2k)
|
36394bd3bd
|
Fixed typo in ChangeLog
|
2014-03-29 15:17:23 +00:00 |
|
Evgeny Grin (Karlson2k)
|
52a6587591
|
Added new function MHD_is_feature_supported()
|
2014-03-29 15:13:33 +00:00 |
|
Evgeny Grin (Karlson2k)
|
3bc4813f52
|
Increased FD_SETSIZE for W32, added MHD_get_fdset2
|
2014-03-27 13:49:19 +00:00 |
|
Evgeny Grin (Karlson2k)
|
bb8f952bef
|
Fix limiting by IPv6 address
|
2014-03-25 11:55:32 +00:00 |
|
Evgeny Grin (Karlson2k)
|
582da7168a
|
more checks for FD_SETSIZE, implemented check for FD_SETSIZE on W32
|
2014-03-25 08:05:52 +00:00 |
|
Evgeny Grin (Karlson2k)
|
6d51e1f0e8
|
minor MHD_socket/int fixes
|
2014-03-24 21:18:47 +00:00 |
|
Christian Grothoff
|
555a320220
|
Tim Niemueller writes:
Folgender Mini-Patch sorgt dafür, dass libmicrospdy.pc auch erstellt
wird. Habe ich in das Fedora-Paket für 0.9.34 eingebaut.
|
2014-03-13 16:15:28 +00:00 |
|
Evgeny Grin (Karlson2k)
|
c4e028061a
|
configure.ac "--with-gnutls" processing refactoring
|
2014-03-11 16:27:07 +00:00 |
|
Evgeny Grin (Karlson2k)
|
8652422d86
|
configure.ac: fix gnutls flags without "--with-gnutls=PFX"
|
2014-03-06 18:52:29 +00:00 |
|
Evgeny Grin (Karlson2k)
|
ecd4657ec0
|
microhttpd/Makefile.am: remove duplicated flags
|
2014-03-06 13:46:44 +00:00 |
|
Evgeny Grin (Karlson2k)
|
173842da1d
|
microhttpd/Makefile.am: cleanup extra flag
|
2014-03-06 13:37:27 +00:00 |
|
Evgeny Grin (Karlson2k)
|
20699d328b
|
Use number of CPUs in tests and examples
|
2014-03-06 13:22:35 +00:00 |
|
Evgeny Grin (Karlson2k)
|
a9e36d3720
|
Update m4/ax_count_cpus.m4 to support W32
|
2014-03-06 13:21:39 +00:00 |
|
Evgeny Grin (Karlson2k)
|
1c2f247b8f
|
add autoconf archive ax_count_cpus.m4 macro
|
2014-03-06 13:21:22 +00:00 |
|
Evgeny Grin (Karlson2k)
|
b630c46912
|
Update usage of libcurl and libgnutls compiler flags, allow correct compilation with "--with-gnutls=prefix"
|
2014-03-06 10:50:52 +00:00 |
|