| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-01-06 | msvc fixes | Marko Kreen | |
| 2013-01-06 | antimake: mkdir is not needed in ar_lib | Marko Kreen | |
| 2013-01-06 | ctype: always activate macros | Marko Kreen | |
| autoconf check is pointless, because compiler can still complain about wrong usage. So activate wrappers always, also remove arg, so they are also used where function pointers are needed. | |||
| 2013-01-06 | amext-msvc: cleaups, safer mkdir | Marko Kreen | |
| 2013-01-06 | wchar: compat mbsnrtowcs(), tests | Marko Kreen | |
| 2013-01-05 | test: clean fmod_test | Marko Kreen | |
| 2013-01-05 | test/Makefile: cleanup | Marko Kreen | |
| * regtest_compat is now EXTRA target * regtest_system is built against libusual.a | |||
| 2013-01-05 | antimake: make sure DEPENDENCIES and nodist_SOURCES exist before build starts. | Marko Kreen | |
| Old way tied them to final link, which is too late. | |||
| 2013-01-05 | antimake: clean also EXTRA targets | Marko Kreen | |
| 2013-01-05 | antimake: call hooks also for EXTRA targets | Marko Kreen | |
| 2013-01-05 | antimake: don't clean LDADD/LIBADD files | Marko Kreen | |
| 2013-01-05 | MSVC support | Marko Kreen | |
| * Antimake extension 'msvc' * Hardcoded config <usual/config.msvc.h> * More guarded headers Usage: 1. Install coreutils and make from gnuwin32 2. Make sure VC env variables are loaded (PATH) 3. Copy build_msvc.mk to build.mk It would be nice to make it work with MSYS/MINGW32 + VC, but their filename mangling makes it messy. | |||
| 2013-01-05 | ctype: provide isblank() if missing | Marko Kreen | |
| 2013-01-05 | base_win32: type specifiers from inttypes.h | Marko Kreen | |
| 2013-01-05 | tests: remove headers already included by base.h | Marko Kreen | |
| 2013-01-05 | antimake: support LIBDIR | Marko Kreen | |
| Now different extension can be used for static libraries. | |||
| 2013-01-05 | Drop Setup.mk | Marko Kreen | |
| There are better ways to use libusual now. | |||
| 2013-01-05 | Sync test output with current 'make install' | Marko Kreen | |
| 2013-01-05 | make install: handle subdirs properly | Marko Kreen | |
| 2013-01-05 | antimake temos: sync with crc module move | Marko Kreen | |
| 2013-01-05 | antimake: make OBJEXT include '.' | Marko Kreen | |
| Now the usage is same as EXEEXT. | |||
| 2013-01-05 | antimake: convert mkdir and printf to functions. | Marko Kreen | |
| Then it's possible to examine and change arguments. | |||
| 2013-01-05 | Avoid libtool, build simple static library | Marko Kreen | |
| 2013-01-05 | cfparser,cxalloc: avoid use of struct field specifiers. | Marko Kreen | |
| Seems msvc does not support them.. | |||
| 2013-01-05 | logging: Use __VA_ARGS__ for vararg macros | Marko Kreen | |
| It's more portable (msvc), seems the (args... + ## args) style is GNU extension. | |||
| 2013-01-05 | antimake: show mkdir commands if in verbose mode | Marko Kreen | |
| 2013-01-05 | antimake: use JoinPath when calculating feat file name | Marko Kreen | |
| 2013-01-04 | wchar: allow missing mbsnrtowcs() | Marko Kreen | |
| 2013-01-04 | pthread: missing HAVE_PTHREAD_H check | Marko Kreen | |
| 2013-01-04 | Remove remaining C++ comments from source tree. | Marko Kreen | |
| I like to use them for debugging, to show that this comment is temporary, but that also means they should not stay around. | |||
| 2013-01-04 | find_modules: test with various awks | Marko Kreen | |
| 2013-01-04 | find_modules: older awks might not have 'in' | Marko Kreen | |
| 2013-01-03 | dlfcn: new module for dlopen compat functions | Marko Kreen | |
| 2013-01-03 | cf_set_time_usec: Use explicit cast for float->int conversion | Marko Kreen | |
| 2013-01-03 | test/compile: fix daemonize() argument type | Marko Kreen | |
| 2013-01-03 | Merge pull request #4 from fdr/c89-comments | Marko Kreen | |
| Use C89 compatible comments | |||
| 2013-01-03 | usual/fnmatch: fnmatch compat | Marko Kreen | |
| 2013-01-03 | usual/wchar: wide-char utilities. | Marko Kreen | |
| 2013-01-03 | usual/hashing/siphash: SipHash-2-4 | Marko Kreen | |
| New secure hash. | |||
| 2013-01-03 | Move simple hashes under separate subdirectory. | Marko Kreen | |
| There may be more of them. | |||
| 2013-01-03 | find_module: avoid big regex | Marko Kreen | |
| 2012-12-22 | crypto: Add Keccak (SHA3) algorithm | Marko Kreen | |
| It is based on Keccak reference implementation, but cleaned up for SHA3-only usage. | |||
| 2012-12-22 | crypto: SHA2 digests | Marko Kreen | |
| Separate module for both SHA-256 and SHA-512. | |||
| 2012-12-22 | crypto/digest: common framework for digests | Marko Kreen | |
| The digests will be easier to use (and test) if they share common wrapper API. | |||
| 2012-12-22 | crypto: reorder arguments in _final() | Marko Kreen | |
| The old one was final(dst, ctx) which is some sort of historical accident. Lets get rid of it. Then all operations on hash context take context as first argument. | |||
| 2012-12-22 | Move crypto files | Marko Kreen | |
| There will be more, so give them subdirectory. | |||
| 2012-12-22 | find_modules: work with subdirs | Marko Kreen | |
| 2012-12-22 | makefile: asm and size tagets | Marko Kreen | |
| 2012-12-22 | test_regex: skip test that glibc fails | Marko Kreen | |
| 2012-12-22 | test_endian: fix uint64 check | Marko Kreen | |
