Overview
Comment: | Fix small typos in configure.ac. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9831c47ecaf4131900ee1171a03d338b |
User & Date: | js on 2012-02-21 17:22:28 |
Other Links: | manifest | tags |
Context
2012-03-19
| ||
22:21 | .hgignore -> .gitignore check-in: a76f16fc8b user: js tags: trunk | |
2012-02-21
| ||
17:22 | Fix small typos in configure.ac. check-in: 9831c47eca user: js tags: trunk | |
2012-02-17
| ||
17:17 | Having a category for each delegate is not required anymore. check-in: 878cac8ce0 user: js tags: trunk | |
Changes
Modified configure.ac from [9014def8c4] to [1adb69b99d].
︙ | ︙ | |||
17 18 19 20 21 22 23 | CPP="$OBJCPP" CPPFLAGS="$CPPFLAGS $OBJCPPFLAGS $($OBJFW_CONFIG --cppflags)" OBJCFLAGS="$OBJCFLAGS -Wall $($OBJFW_CONFIG --objcflags)" LDFLAGS="$LDFLAGS $($OBJFW_CONFIG --ldflags)" LIBS="$LIBS $($OBJFW_CONFIG --libs)" AC_ARG_ENABLE(shared, | | | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | CPP="$OBJCPP" CPPFLAGS="$CPPFLAGS $OBJCPPFLAGS $($OBJFW_CONFIG --cppflags)" OBJCFLAGS="$OBJCFLAGS -Wall $($OBJFW_CONFIG --objcflags)" LDFLAGS="$LDFLAGS $($OBJFW_CONFIG --ldflags)" LIBS="$LIBS $($OBJFW_CONFIG --libs)" AC_ARG_ENABLE(shared, AS_HELP_STRING([--disable-shared], [do not build shared library])) AS_IF([test x"$enable_shared" != x"no"], [ BUILDSYS_SHARED_LIB AC_SUBST(OBJXMPP_SHARED_LIB, "${LIB_PREFIX}objxmpp${LIB_SUFFIX}") ]) AC_ARG_ENABLE(static, AS_HELP_STRING([--enable-static], [build static library])) AS_IF([test x"$enable_static" = x"yes" -o x"$enable_shared" = x"no"], [ AC_PATH_TOOL(AR, ar) |
︙ | ︙ | |||
96 97 98 99 100 101 102 | OBJCFLAGS="$OBJCFLAGS -Wno-deprecated-declarations -Werror" ]) BUILDSYS_INIT BUILDSYS_TOUCH_DEPS dnl We don't call AC_PROG_CPP, but only AC_PROG_OBJCPP and set CPP to OBJCPP | | | 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | OBJCFLAGS="$OBJCFLAGS -Wno-deprecated-declarations -Werror" ]) BUILDSYS_INIT BUILDSYS_TOUCH_DEPS 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, ObjXMPP) AC_CONFIG_FILES([buildsys.mk extra.mk]) AC_CONFIG_HEADERS(config.h) AC_OUTPUT |