aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/Makefile.am
Commit message (Collapse)AuthorAge
* -first, crazy-pants version of test and implementation of HTTPS upgrade; ↵Christian Grothoff2016-09-03
| | | | FLUSH API still needs to change dramatically, neither the ioctl nor the busy waiting are really acceptable here
* implementing 'Connection: upgrade' for thread-per-connection modes, but untestedChristian Grothoff2016-09-03
|
* add testcase for HTTP UpgradeChristian Grothoff2016-08-27
|
* -releasing 0.9.51v0.9.51Christian Grothoff2016-08-27
|
* Emulate random() on platforms without random(), but with rand() function.Evgeny Grin (Karlson2k)2016-08-23
|
* Moved generic emulated functions to mhd_compat.h/.c, removed "platform" dir,Evgeny Grin (Karlson2k)2016-08-23
| | | | removed "w32functions.h/.c"
* Moved pipe/socketpair to separate mhd_itc.h/.c files.Evgeny Grin (Karlson2k)2016-08-23
|
* Moved sockets abstraction to specialized mhd_socket.h/.c filesEvgeny Grin (Karlson2k)2016-08-23
|
* Moved locks and mutex abstraction to mhd_locks.hEvgeny Grin (Karlson2k)2016-08-10
| | | | Minor refactoring to allow better code optimization.
* Moved thread abstraction to mhd_threads.h/mhd_threads.c,Evgeny Grin (Karlson2k)2016-08-10
| | | | minor bugs fixed.
* -follow test naming conventionsChristian Grothoff2016-08-04
|
* Added unit tests for number in string to value conversions.Evgeny Grin (Karlson2k)2016-07-23
|
* Added unit tests for caseless string comparisons.Evgeny Grin (Karlson2k)2016-07-23
|
* Added new header mhd_options.hEvgeny Grin (Karlson2k)2016-07-23
|
* -missunderstanding test...Christian Grothoff2016-02-22
|
* -these tests should pass even if we do not have listen-shutdownChristian Grothoff2016-02-22
|
* Really fixed Makefile for poll testEvgeny Grin (Karlson2k)2016-02-06
|
* fixed Makefile for poll testEvgeny Grin (Karlson2k)2016-02-05
|
* Added test for checking ability of shutdown() on socket to trigger poll()Evgeny Grin (Karlson2k)2016-02-05
|
* Added test for checking ability of shutdown() on socket to trigger select()Evgeny Grin (Karlson2k)2016-01-25
|
* Use only US-ASCII charset when comparing stings as caseless as required by ↵Evgeny Grin (Karlson2k)2016-01-16
| | | | | | standard. Comparisons for HTTP headers must not be affected by locale settings.
* Use real system default value of FD_SETSIZE instead of guessingEvgeny Grin (Karlson2k)2015-12-08
|
* Reimplement monotonic clock with wide range of platforms supportEvgeny Grin (Karlson2k)2015-08-27
|
* fix file names, include missing files to MakefileEvgeny Grin (Karlson2k)2015-08-22
|
* export MHD_get_reason_phrase_forChristian Grothoff2015-08-14
|
* Make libplatform_interface.la a dependency where appropriateLRN2015-04-21
| | | | | | Trying to fix this buildslave error: make[3]: *** No rule to make target '../../src/platform/libplatform_interface.la', needed by 'libmicrohttpd.la'. Stop.
* -bringing copyright tags up to FSF standardChristian Grothoff2015-02-07
|
* W32: fix building with --disable-staticEvgeny Grin (Karlson2k)2014-05-25
|
* W32: remove dependency on libgcc dll with latest GCCEvgeny Grin (Karlson2k)2014-04-15
|
* Added ability to use native W32 threads, added --with-threads=LIB configure ↵Evgeny Grin (Karlson2k)2014-04-08
| | | | parameter
* Fixed MHD base tests with non-default path to GnuTLS includes, removed ↵Evgeny Grin (Karlson2k)2014-04-07
| | | | duplicated include
* Rename internal helper lib libmicrohttpd_w32.la -> libplatform_interface.laEvgeny Grin (Karlson2k)2014-04-01
|
* microhttpd/Makefile.am: remove duplicated flagsEvgeny Grin (Karlson2k)2014-03-06
|
* microhttpd/Makefile.am: cleanup extra flagEvgeny Grin (Karlson2k)2014-03-06
|
* Update usage of libcurl and libgnutls compiler flags, allow correct ↵Evgeny Grin (Karlson2k)2014-03-06
| | | | compilation with "--with-gnutls=prefix"
* configure.ac: update crypt libs detections, use crypt libs flags only where ↵Evgeny Grin (Karlson2k)2014-03-05
| | | | is required
* Fix W32 resource compile if '-isystem' flag is used in CPPFLAGSEvgeny Grin (Karlson2k)2014-02-26
|
* fix typo in src/microhttpd/Makefile.amEvgeny Grin (Karlson2k)2014-02-26
|
* Remove global dependency on PTHREAD_LIBS and use it only where it's requiredEvgeny Grin (Karlson2k)2014-02-26
|
* add W32 dll information resourcesEvgeny Grin (Karlson2k)2014-02-20
|
* create W32 static lib with MS lib.exe if availableEvgeny Grin (Karlson2k)2014-02-20
|
* create export libmicrohttpd.lib on W32 when building shared libEvgeny Grin (Karlson2k)2014-02-20
| | | | use MS lib.exe if found or dlltool otherwise
* w32functions cleanups and makefile fixes for W32Evgeny Grin (Karlson2k)2014-02-20
|
* More typo fixes and proper convenience lib makefile rulesLRN2014-02-19
|
* Fix a typo (missing backslash to continue a line)LRN2014-02-19
|
* -fix bogus duplicationChristian Grothoff2014-02-19
|
* move headers to src/include, build w32functions.c as static library ↵Christian Grothoff2014-02-19
| | | | (untested) to make 'make distclean' work cleanly
* Remove PlibC from autotools filesEvgeny Grin (Karlson2k)2014-02-18
|
* add platform abstraction for errno and strerror, check EWOULDBLOCK ↵Evgeny Grin (Karlson2k)2014-02-18
| | | | additionally to EAGAIN
* Replace CLOSE() with MHD_socket_close_() for socketsEvgeny Grin (Karlson2k)2014-02-18
|