Overview
| Comment: | Fix VERSION in objfw-config.in in 0.2 branch. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | 0.2 | 0.2-release |
| Files: | files | file ages | folders |
| SHA3-256: |
5b535655f88a50ab0336d569153a751f |
| User & Date: | js on 2010-02-03 10:39:22 |
| Other Links: | branch diff | manifest | tags |
Context
|
2010-02-03
| ||
| 10:39 | Added tag 0.2-release for changeset a7a1b42d5b3b (check-in: 211de4aa60 user: js tags: 0.2) | |
| 10:39 | Fix VERSION in objfw-config.in in 0.2 branch. (check-in: 5b535655f8 user: js tags: 0.2, 0.2-release) | |
|
2010-02-01
| ||
| 18:11 | Merge latest changes from default branch into 0.2 branch. (check-in: c9a2f95a9c user: js tags: 0.2) | |
Changes
Modified objfw-config.in from [d9d8aa0cc7] to [acdd13a89c].
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.2"
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"
|
| ︙ | ︙ |