Overview
Comment: | Add -fexceptions to OBJCFLAGS. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e5f9d3c0964de4b982a9b36451265fc5 |
User & Date: | js on 2010-01-16 11:58:45 |
Other Links: | manifest | tags |
Context
2010-01-16
| ||
12:01 | Update lib version as we already have incompatible API changes. check-in: 2099ba5e3c user: js tags: trunk | |
11:58 | Add -fexceptions to OBJCFLAGS. check-in: e5f9d3c096 user: js tags: trunk | |
2010-01-15
| ||
13:03 | Added tag 0.1.2-release for changeset 0454ac1b8d0b check-in: 172a3ea720 user: js tags: trunk | |
Changes
Modified configure.ac from [117a51637e] to [ebbb31ec3b].
︙ | ︙ | |||
8 9 10 11 12 13 14 | AC_PROG_OBJCPP AC_PROG_LN_S AC_PROG_INSTALL AC_PROG_EGREP CPP="$OBJCPP" CPPFLAGS="$CPPFLAGS $OBJCPPFLAGS" | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | AC_PROG_OBJCPP AC_PROG_LN_S AC_PROG_INSTALL AC_PROG_EGREP CPP="$OBJCPP" CPPFLAGS="$CPPFLAGS $OBJCPPFLAGS" OBJCFLAGS="$OBJCFLAGS -Wall -fexceptions -fobjc-exceptions" OBJCFLAGS="$OBJCFLAGS -fconstant-string-class=OFConstString" LIBS="$LIBS -lobjc" AX_CHECK_COMPILER_FLAGS(-pipe, [OBJCFLAGS="$OBJCFLAGS -pipe"]) AX_CHECK_COMPILER_FLAGS(-fno-common, [OBJCFLAGS="$OBJCFLAGS -fno-common"]) AX_CHECK_COMPILER_FLAGS(-fno-constant-cfstrings, [ NO_CONST_CFSTRINGS="-fno-constant-cfstrings" |
︙ | ︙ |
Modified objfw-config.in from [c7925e42b7] to [399aecd461].
1 2 3 4 5 6 7 | #!/bin/sh prefix="@prefix@" exec_prefix="@exec_prefix@" libdir="@libdir@" CFLAGS="" CPPFLAGS="-I@includedir@" CXXFLAGS="" | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/sh prefix="@prefix@" exec_prefix="@exec_prefix@" libdir="@libdir@" CFLAGS="" CPPFLAGS="-I@includedir@" CXXFLAGS="" OBJCFLAGS="-fexceptions -fobjc-exceptions -fconstant-string-class=OFConstString" OBJCFLAGS="$OBJCFLAGS @NO_CONST_CFSTRINGS@ @NO_WARN_UNUSED@" LDFLAGS="" LDFLAGS_RPATH="@LDFLAGS_RPATH@" LIBS="-L${libdir} -lobjfw @LIBS@" VERSION="0.1" show_help() { |
︙ | ︙ |
Modified src/OFEnumerator.m from [6ddbf6ab86] to [0155b17e2f].
︙ | ︙ | |||
87 88 89 90 91 92 93 | } @end @implementation OFDictionary (OFEnumerator) - (OFEnumerator*)enumerator { return [[[OFEnumerator alloc] initWithData: data | | | 87 88 89 90 91 92 93 94 95 96 | } @end @implementation OFDictionary (OFEnumerator) - (OFEnumerator*)enumerator { return [[[OFEnumerator alloc] initWithData: data size: size] autorelease]; } @end |