ObjXMPP  Check-in [2cd55876c4]

Overview
Comment:Only set OBJC if it is empty.
This way, OBJC can still be overridden.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2cd55876c468dfc80c0ee5ce8e99afb9c17e8c143c6a96ef07a8e1354b2b2d1b
User & Date: js on 2011-03-30 11:35:22
Other Links: manifest | tags
Context
2011-03-30
17:44
Fail if objfw-config is missing. check-in: 3441762189 user: js tags: trunk
11:35
Only set OBJC if it is empty.
This way, OBJC can still be overridden.
check-in: 2cd55876c4 user: js tags: trunk
11:29
Use the "js buildsys". check-in: 7516424d65 user: js tags: trunk
Changes

Modified configure.ac from [78106fba24] to [e562a8afb1].

1
2
3
4
5
6
7
8
9
10
11
12
AC_INIT(ObjXMPP, 0.1, js@webkeks.org)
AC_CONFIG_SRCDIR(src)

AC_PATH_TOOL(OBJFW_CONFIG, objfw-config)
OBJC="$($OBJFW_CONFIG --objc)"

AC_LANG([Objective C])
AC_PROG_OBJC
AC_PROG_OBJCPP
AC_PROG_LN_S
AC_PROG_INSTALL





|







1
2
3
4
5
6
7
8
9
10
11
12
AC_INIT(ObjXMPP, 0.1, js@webkeks.org)
AC_CONFIG_SRCDIR(src)

AC_PATH_TOOL(OBJFW_CONFIG, objfw-config)
test x"$OBJC" = x"" && OBJC="$($OBJFW_CONFIG --objc)"

AC_LANG([Objective C])
AC_PROG_OBJC
AC_PROG_OBJCPP
AC_PROG_LN_S
AC_PROG_INSTALL