ObjXMPP  Check-in [3441762189]

Overview
Comment:Fail if objfw-config is missing.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 3441762189ea290d3e5c462128b76482db753df904ca3bc535795bbb00c0bb4a
User & Date: js on 2011-03-30 17:44:05
Other Links: manifest | tags
Context
2011-03-30
18:12
Use OpenSSL to generate the nonce. check-in: 2adf07b564 user: js tags: trunk
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
Changes

Modified configure.ac from [e562a8afb1] to [62a72c8e7a].

1
2
3
4




5
6
7
8
9
10
11
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



|
>
>
>
>







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

AC_CHECK_TOOL(OBJFW_CONFIG, objfw-config)
AS_IF([test x"$OBJFW_CONFIG" = x""], [
       AC_MSG_ERROR(You need ObjFW and objfw-config installed!)
])

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