Overview
Comment: | Some minor build improvements. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
66f00a133dd1d30f9f6c56d124b10ef8 |
User & Date: | js on 2009-12-23 22:38:57 |
Other Links: | manifest | tags |
Context
2009-12-24
| ||
09:17 | Change type of object in OFThread to id. check-in: 77092d1160 user: js tags: trunk | |
2009-12-23
| ||
22:38 | Some minor build improvements. check-in: 66f00a133d user: js tags: trunk | |
22:38 | Throw an exception when trying to use chown on Windows. check-in: 6cd75d4826 user: js tags: trunk | |
Changes
Modified configure.ac from [2c8879021c] to [0b6d5ca915].
︙ | ︙ | |||
47 48 49 50 51 52 53 | AC_SUBST(TESTPLUGIN, "plugin") AC_DEFINE(OF_PLUGINS, 1, [Whether we have plugin support]) AC_SUBST(OFPLUGINS_DEF, "-DOF_PLUGINS") fi AC_C_BIGENDIAN([ AC_DEFINE(OF_BIG_ENDIAN, 1, [Whether we are big endian]) | | < | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | AC_SUBST(TESTPLUGIN, "plugin") AC_DEFINE(OF_PLUGINS, 1, [Whether we have plugin support]) AC_SUBST(OFPLUGINS_DEF, "-DOF_PLUGINS") fi AC_C_BIGENDIAN([ AC_DEFINE(OF_BIG_ENDIAN, 1, [Whether we are big endian]) AC_SUBST(ENDIANESS_DEF, "-DOF_BIG_ENDIAN")]) AC_MSG_CHECKING(for SIZE_MAX) AC_EGREP_CPP(yes, [ #include <stdint.h> #include <limits.h> #ifdef SIZE_MAX |
︙ | ︙ |
Modified extra.mk.in from [ec09dbebb7] to [d89a7b2c42].
1 2 3 4 5 | ASPRINTF_M = @ASPRINTF_M@ OBJC_SYNC_M = @OBJC_SYNC_M@ OFPLUGIN_M = @OFPLUGIN_M@ OFTHREAD_M = @OFTHREAD_M@ TESTPLUGIN = @TESTPLUGIN@ | < | 1 2 3 4 5 6 7 8 | ASPRINTF_M = @ASPRINTF_M@ OBJC_SYNC_M = @OBJC_SYNC_M@ OFPLUGIN_M = @OFPLUGIN_M@ OFTHREAD_M = @OFTHREAD_M@ TESTPLUGIN = @TESTPLUGIN@ TESTS = @TESTS@ TEST_LAUNCHER = @TEST_LAUNCHER@ THREADING_H = @THREADING_H@ |
Modified tests/Makefile from [686ed1967d] to [e320f93bcd].
︙ | ︙ | |||
16 17 18 19 20 21 22 | OFXMLElement.m \ OFXMLParser.m \ main.m IPHONE_USER = mobile IPHONE_TMP = /tmp/objfw-test | | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | OFXMLElement.m \ OFXMLParser.m \ main.m IPHONE_USER = mobile IPHONE_TMP = /tmp/objfw-test .PHONY: run run-tests run-on-iphone run: all if [ -z "${DONT_RUN_TESTS}" ]; then ${MAKE} ${MFLAGS} run-tests; fi run-tests: rm -f libobjfw.so.0 libobjfw.so.0.1 libobjfw.dll libobjfw.dylib if test -f ../src/libobjfw.so; then \ ln -s ../src/libobjfw.so libobjfw.so.0; \ |
︙ | ︙ |