Overview
Comment: | Set version to 0.3-dev. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f11dc7d322b4e838a9ff4992994fd5c3 |
User & Date: | js on 2010-03-04 23:41:44 |
Other Links: | manifest | tags |
Context
2010-03-05
| ||
00:04 | Improve -[hash] for OFNumbers with floats and doubles. check-in: 5265f8d08b user: js tags: trunk | |
2010-03-04
| ||
23:41 | Set version to 0.3-dev. check-in: f11dc7d322 user: js tags: trunk | |
23:35 | Add "make tarball". check-in: 2267fd9439 user: js tags: trunk | |
Changes
Modified configure.ac from [e321abea2c] to [94497d816e].
|
| | | 1 2 3 4 5 6 7 8 | AC_INIT(ObjFW, 0.3-dev, js@webkeks.org) AC_CONFIG_SRCDIR(src) AC_CANONICAL_HOST AC_LANG([Objective C]) AC_PROG_OBJC AC_PROG_OBJCPP |
︙ | ︙ |
Modified objfw-config.in from [acdd13a89c] to [6e584c777b].
1 2 3 4 5 6 7 8 9 10 11 12 | #!/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@ @ATOMIC_OBJCFLAGS@" LDFLAGS="" LDFLAGS_RPATH="@LDFLAGS_RPATH@" LIBS="-L${libdir} -lobjfw @LIBS@" | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/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@ @ATOMIC_OBJCFLAGS@" LDFLAGS="" LDFLAGS_RPATH="@LDFLAGS_RPATH@" LIBS="-L${libdir} -lobjfw @LIBS@" VERSION="0.3-dev" show_help() { echo "$0: Available arguments are:" echo echo " --all Outputs all flags + libs" echo " --cflags Outputs the required CFLAGS" echo " --cppflags Outputs the required CPPFLAGS" |
︙ | ︙ |