summaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)Author
2014-06-07Fixing DEBUG vs _DEBUG #defines.Nicolas "Pixel" Noble
2014-06-03Implementing MMap for Linux, and fixing a few details.Nicolas "Pixel" Noble
2013-12-26Removing duplicated sha1 code.Nicolas "Pixel" Noble
2013-12-25Making the necessary changes to get libtommath, libtomcrypt and BigInt to ↵Nicolas "Pixel" Noble
compile under MSVC.
2013-12-25Adding HttpActionStatic.Nicolas "Pixel" Noble
2013-12-25Adding jsoncpp to the build.Nicolas "Pixel" Noble
2013-12-23Adding latest files to the Makefile.Nicolas "Pixel" Noble
2013-08-12Adding LuaBigInt and a few more things.Nicolas "Pixel" Noble
2013-08-11Adding BigInts, based off libtomcrypto / libtommath.Nicolas "Pixel" Noble
2013-08-09Removing lcrypt's Makefile.Nicolas Noble
2013-08-09Cleaning lcrypt a bit.Nicolas "Pixel" Noble
2013-08-08Adding libtommath, libtomcrypt and lcrypt, mainly for the bignum support.Nicolas "Pixel" Noble
2013-08-07Adding skeleton LuaHandle.Nicolas "Pixel" Noble
2013-08-02Lua's dumpvars is now properly yielding if needed.Nicolas Noble
2013-07-30Taking advantage of the new debugging facilities.Nicolas Noble
2013-07-16Adding StdIO classes.Nicolas Noble
2013-07-16Split the Socket class into Selectable, in order to let it work with other ↵Nicolas Noble
non-socket file descriptors.
2013-07-15Avoiding useless link phases.Nicolas Noble
2013-07-15Simplifying Makefile into common.mk for general purpose code.Nicolas Noble
2013-07-15Swiching build to 64 bits, and improving Makefile to switch from gcc to ↵Nicolas Noble
clang if gcc is detected to be too old.
2013-07-14Cleaning up cruft.Nicolas "Pixel" Noble
2013-01-20Tentatively adding vsscanf to win32 compilation. Untested tho.Nicolas 'Pixel' Noble
2013-01-20Making 32 bits compilation optional.Nicolas 'Pixel' Noble
2013-01-20Let's embrace C++11 fully - will now require gcc-4.7 or clang-3.xNicolas 'Pixel' Noble
2013-01-20Now that libeio is out, we can work again with 64 bits file operations.Nicolas 'Pixel' Noble
2013-01-16exit -1 in bash is, in fact, not allowed.Nicolas "Pixel" Noble
2012-09-01Effectively tossing libeio away.Nicolas "Pixel" Noble
2012-09-01Adding async operations; first step towards tossing libeio out.Nicolas "Pixel" Noble
2012-04-01Creating first pass on LuaTasks.Pixel
2012-02-28Making clang happy...Pixel
2012-02-28Adding a short test for the ZStreams.Pixel
2012-02-28There goes C++11...Nicolas "Pixel" Noble
2011-12-12Adding ZHandle class. It needs a unit test though.Pixel
2011-12-08Moving the HTTP status messages out of the HTTP server, and into its own ↵Pixel
file. Also making it complete.
2011-12-04Making sure that if a test fails, the 'make' command stopsPixel
2011-11-25Adding a simple 'Mustache' template processor in C++.Pixel
2011-11-23Making sure that the mingw32 target isn't too broken (it is, but that's a ↵Pixel
step in the proper direction.)
2011-11-21GeneralException() will now trace the callstack and store this, for ↵Pixel
debugging purposes.
2011-11-18Making the debug build to increase libev's debugness too.Pixel
2011-11-17HTTP server's first real test, alongside multiple taskmanager threads.Pixel
I'm not really sure I fully like the way I'm designing this, but I guess it could be solved with an HTTP/HTML helper class around the Action class. However, the HTTP server awfully need reference counting, so it doesn't go away before all of the workers disappear, which means a bit of a redesign of the Listener template.
2011-11-16Adding the Regex class.Pixel
2011-11-13Adding the skeleton of an HTTP server; still work in progress though: it ↵Pixel
still needs coding, and won't work as it. And it needs a unit test.
2011-11-13Adding buffered streams; mainly for string parsing.Pixel
2011-11-12Adding seekable buffers. Probably would need a few more tests in the Handles ↵Pixel
unit test.
2011-11-09Darwin's ar is retarded. Workarounding.Pixel
2011-11-09Adding 'Output' objectPixel
2011-10-27Fixing a few oddities, and having the 'clean' target cleaning LuaJIT as well.Pixel
2011-10-26Adding Lua.Pixel
2011-10-18libcoro seems to be doing really spurious things when not using the standard ↵Pixel
functions. Switching out libcoro for the native Fibers interface for Win32. Switching out the asm version for the ucontext version for Linux.
2011-10-18Fixing Darwin compilation:Pixel
-) Using clang instead of gcc for the native target (*sigh*) -) Fixing libeio (*sigh*) -) "Fixing" the connect() call in Sockets because Darwin is stupid (*SIIIIIIIGH*) Although the Threads unit test isn't working properly.