Overview
Comment: | Don't enter tests/plugin twice. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
72c41bbf69f47a75d883d32be1672175 |
User & Date: | js on 2013-12-30 13:47:29 |
Other Links: | manifest | tags |
Context
2014-01-04
| ||
00:24 | Update copyright. check-in: 3b97fc3cd9 user: js tags: trunk | |
2013-12-30
| ||
13:47 | Don't enter tests/plugin twice. check-in: 72c41bbf69 user: js tags: trunk | |
2013-12-27
| ||
02:07 | Rework forwarding API and ABI. check-in: 0c332aa2d2 user: js tags: trunk | |
Changes
Modified src/Makefile from [0b89dc9853] to [3a931f2be2].
︙ | ︙ | |||
107 108 109 110 111 112 113 | instance.h \ macros.h \ objfw-defs.h \ ${USE_INCLUDES_THREADS} SRCS += OFArray_adjacent.m \ OFArray_adjacentSubarray.m \ | < < > > | 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | instance.h \ macros.h \ objfw-defs.h \ ${USE_INCLUDES_THREADS} SRCS += OFArray_adjacent.m \ OFArray_adjacentSubarray.m \ OFCountedSet_hashtable.m \ OFDictionary_hashtable.m \ OFMutableArray_adjacent.m \ OFMutableDictionary_hashtable.m \ OFMutableSet_hashtable.m \ OFMutableString_UTF8.m \ OFSet_hashtable.m \ OFString_UTF8.m \ ${ASPRINTF_M} \ ${AUTORELEASE_M} \ codepage_437.m \ ${FOUNDATION_COMPAT_M} \ ${INSTANCE_M} \ iso_8859_15.m \ windows_1252.m SRCS_SOCKETS += ${OFSTREAMOBSERVER_KQUEUE_M} \ ${OFSTREAMOBSERVER_POLL_M} \ ${OFSTREAMOBSERVER_SELECT_M} \ OFTCPSocket+SOCKS5.m |
︙ | ︙ |
Modified tests/Makefile from [636ec16782] to [436b570be3].
︙ | ︙ | |||
32 33 34 35 36 37 38 | SRCS_PLUGINS = OFPluginTests.m SRCS_SOCKETS = OFTCPSocketTests.m SRCS_THREADS = OFThreadTests.m IOS_USER ?= mobile IOS_TMP ?= /tmp/objfw-test | | < < < | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | SRCS_PLUGINS = OFPluginTests.m SRCS_SOCKETS = OFTCPSocketTests.m SRCS_THREADS = OFThreadTests.m IOS_USER ?= mobile IOS_TMP ?= /tmp/objfw-test .PHONY: run run-on-ios run-on-android sign-for-ios run: all rm -f libobjfw.so.${OBJFW_LIB_MAJOR} rm -f libobjfw.so.${OBJFW_LIB_MAJOR_MINOR} rm -f libobjfw.dll libobjfw.dylib if test -f ../src/libobjfw.so; then \ ${LN_S} ../src/libobjfw.so libobjfw.so.${OBJFW_LIB_MAJOR}; \ ${LN_S} ../src/libobjfw.so \ libobjfw.so.${OBJFW_LIB_MAJOR_MINOR}; \ |
︙ | ︙ |