Overview
Comment: | Remove OBJC_SYNC variable as it is not used anymore. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b7e505ba7f114f00a30b11d3565ee7dc |
User & Date: | js on 2009-12-12 14:19:53 |
Other Links: | manifest | tags |
Context
2009-12-17
| ||
10:53 | Further improve OFTCPSocket. check-in: 1f7898f109 user: js tags: trunk | |
2009-12-12
| ||
14:19 | Remove OBJC_SYNC variable as it is not used anymore. check-in: b7e505ba7f user: js tags: trunk | |
2009-12-11
| ||
12:52 | Make it possible to build ObjFW without support for threads. check-in: 6caac0826e user: js tags: trunk | |
Changes
Modified configure.ac from [3eec75f7eb] to [2c8879021c].
︙ | ︙ | |||
124 125 126 127 128 129 130 | esac AC_DEFINE(OF_THREADS, 1, [Whether we have threads]) AC_SUBST(OFTHREAD_M, "OFThread.m") AC_SUBST(THREADING_H, "threading.h") AC_CHECK_FUNC(objc_sync_enter,, [ | < | 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | esac AC_DEFINE(OF_THREADS, 1, [Whether we have threads]) AC_SUBST(OFTHREAD_M, "OFThread.m") AC_SUBST(THREADING_H, "threading.h") AC_CHECK_FUNC(objc_sync_enter,, [ AC_SUBST(OBJC_SYNC_M, "objc_sync.m") AC_DEFINE(NEED_OBJC_SYNC_INIT, 1, [Whether objc_sync_init needs to be called])]) fi AC_CHECK_LIB(socket, socket, LIBS="$LIBS -lsocket") AC_CHECK_LIB(ws2_32, main, LIBS="$LIBS -lws2_32") |
︙ | ︙ |
Modified extra.mk.in from [6f868ad29d] to [ec09dbebb7].
1 | ASPRINTF_M = @ASPRINTF_M@ | < | 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@ WS2_LIBS = @WS2_LIBS@ TESTS = @TESTS@ TEST_LAUNCHER = @TEST_LAUNCHER@ |
︙ | ︙ |