Overview
| Comment: | Make use of PACKAGE_VERSION. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
707867456768f298e258926659b322fb |
| User & Date: | js on 2012-03-21 12:06:12 |
| Other Links: | manifest | tags |
Context
|
2012-03-21
| ||
| 14:47 | OFObject: Use owner as a sentinel for pre_mem. (check-in: ce1c7fe940 user: js tags: trunk) | |
| 12:06 | Make use of PACKAGE_VERSION. (check-in: 7078674567 user: js tags: trunk) | |
| 11:56 | Update buildsys. (check-in: 714fe46a09 user: js tags: trunk) | |
Changes
Modified .gitignore from [9b267eb028] to [e6b723e3e1].
| ︙ | ︙ | |||
19 20 21 22 23 24 25 | DerivedData docs extra.mk generators/gen_tables generators/gen_tables.exe generators/CaseFolding.txt generators/UnicodeData.txt | | > | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | DerivedData docs extra.mk generators/gen_tables generators/gen_tables.exe generators/CaseFolding.txt generators/UnicodeData.txt Info.plist ObjFW.xcodeproj/*.mode1v3 ObjFW.xcodeproj/*.pbxuser ObjFW.xcodeproj/project.xcworkspace ObjFW.xcodeproj/xcuserdata src/objfw-defs.h src/ObjFW tests/tests tests/tests.exe tests/EBOOT.PBP tests/PARAM.SFO utils/objfw-config |
Deleted Info.plist version [f1d4c55aab].
|
| < < < < < < < < < < < < < < < < < < < < < < < < |
Added Info.plist.in version [a131e6786c].
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleExecutable</key> <string>ObjFW</string> <key>CFBundleName</key> <string>ObjFW</string> <key>CFBundleIdentifier</key> <string>org.webkeks.objfw</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundlePackageType</key> <string>FMWK</string> <key>CFBundleSignature</key> <string>OBJFW</string> <key>CFBundleVersion</key> <string>@PACKAGE_VERSION@</string> <key>CFBundleShortVersionString</key> <string>@PACKAGE_VERSION@</string> </dict> </plist> |
Modified Makefile from [08c4fede3e] to [2c18cb613e].
| ︙ | ︙ | |||
8 9 10 11 12 13 14 | config.log \ config.status \ extra.mk include buildsys.mk tarball: | < < < < < < < < < < < < < < < | | > | | | | | > | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
config.log \
config.status \
extra.mk
include buildsys.mk
tarball:
echo "Generating tarball for version ${PACKAGE_VERSION}..."
rm -fr tmp.tar objfw-${PACKAGE_VERSION} objfw-${PACKAGE_VERSION}.tar \
objfw-${PACKAGE_VERSION}.tar.gz
git archive HEAD --prefix objfw-${PACKAGE_VERSION}/ -o tmp.tar
tar xf tmp.tar
rm -f tmp.tar objfw-${PACKAGE_VERSION}/.gitignore
cp configure config.h.in objfw-${PACKAGE_VERSION}/
tar cf objfw-${PACKAGE_VERSION}.tar objfw-${PACKAGE_VERSION}
rm -fr objfw-${PACKAGE_VERSION}
gzip -9 objfw-${PACKAGE_VERSION}.tar
rm -f objfw-${PACKAGE_VERSION}.tar
|
Modified configure.ac from [be20c9c7db] to [587857d1f8].
| ︙ | ︙ | |||
678 679 680 681 682 683 684 | dnl We don't call AC_PROG_CPP, but only AC_PROG_OBJCPP and set CPP to OBJCPP dnl and add OBJCPPFLAGS to CPPFLAGS, thus we need to AC_SUBST these ourself. AC_SUBST(CPP) AC_SUBST(CPPFLAGS) AC_SUBST(PACKAGE, ObjFW) | | | 678 679 680 681 682 683 684 685 686 687 | dnl We don't call AC_PROG_CPP, but only AC_PROG_OBJCPP and set CPP to OBJCPP dnl and add OBJCPPFLAGS to CPPFLAGS, thus we need to AC_SUBST these ourself. AC_SUBST(CPP) AC_SUBST(CPPFLAGS) AC_SUBST(PACKAGE, ObjFW) AC_CONFIG_FILES([buildsys.mk extra.mk utils/objfw-config Info.plist]) AC_CONFIG_HEADERS([config.h src/objfw-defs.h]) AC_OUTPUT |
Modified utils/objfw-config.in from [31aa5fa26a] to [cfdb4a0db9].
| ︙ | ︙ | |||
33 34 35 36 37 38 39 |
LDFLAGS_REEXPORT="@LDFLAGS_REEXPORT@"
LDFLAGS_RPATH="@LDFLAGS_RPATH@"
LIBS="-L${libdir} -lobjfw @LIBS@"
PLUGIN_CFLAGS="@PLUGIN_CFLAGS@"
PLUGIN_LDFLAGS="@PLUGIN_LDFLAGS@"
PLUGIN_SUFFIX="@PLUGIN_SUFFIX@"
PROG_SUFFIX="@EXEEXT@"
| | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
LDFLAGS_REEXPORT="@LDFLAGS_REEXPORT@"
LDFLAGS_RPATH="@LDFLAGS_RPATH@"
LIBS="-L${libdir} -lobjfw @LIBS@"
PLUGIN_CFLAGS="@PLUGIN_CFLAGS@"
PLUGIN_LDFLAGS="@PLUGIN_LDFLAGS@"
PLUGIN_SUFFIX="@PLUGIN_SUFFIX@"
PROG_SUFFIX="@EXEEXT@"
VERSION="@PACKAGE_VERSION@"
show_help() {
cat <<__EOF__
objfw-config: Available arguments are:
--all Outputs all flags + libs
--cflags Outputs the required CFLAGS
|
| ︙ | ︙ |