Overview
Comment: | AS_IF does not allow empty bodies in old versions. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
58d05c67041a10c0736a12ec81c05403 |
User & Date: | js on 2012-07-11 21:13:54 |
Other Links: | manifest | tags |
Context
2012-07-11
| ||
21:14 | PLATFORMS.md: Add PPC and 10.5 to OS X. check-in: 52e2aa30b5 user: js tags: trunk | |
21:13 | AS_IF does not allow empty bodies in old versions. check-in: 58d05c6704 user: js tags: trunk | |
13:56 | Get the number of CPUs on QNX. check-in: 3d1d05df3c user: js tags: trunk | |
Changes
Modified configure.ac from [7c08b06065] to [0b656c1cb6].
︙ | ︙ | |||
159 160 161 162 163 164 165 166 167 168 169 170 171 172 | AC_EGREP_CPP(yes, [ #import <objc/objc.h> #ifdef __objc_INCLUDE_GNU yes #endif ], [ dnl We don't want the GNU runtime ], [ objc_runtime="Apple runtime" ]) ]) ]) AC_MSG_RESULT($objc_runtime) | > | 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | AC_EGREP_CPP(yes, [ #import <objc/objc.h> #ifdef __objc_INCLUDE_GNU yes #endif ], [ dnl We don't want the GNU runtime true ], [ objc_runtime="Apple runtime" ]) ]) ]) AC_MSG_RESULT($objc_runtime) |
︙ | ︙ |