Overview
Comment: | Only use -Wall when using a GCC-compatible CC. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
1c129132e98d2a082a13fd81e7707b06 |
User & Date: | js on 2012-04-25 09:35:15 |
Other Links: | manifest | tags |
Context
2012-04-25
| ||
09:52 | Update buildsys. check-in: 6cb2f18894 user: js tags: trunk | |
09:35 | Only use -Wall when using a GCC-compatible CC. check-in: 1c129132e9 user: js tags: trunk | |
09:30 | Add -std=c99 -pedantic when using GCC. check-in: 9d5eb55485 user: js tags: trunk | |
Changes
Modified configure.ac from [a27047420b] to [4e989aa284].
1 2 3 4 5 6 7 8 9 10 11 12 | AC_INIT(corefw, 0.1, js@webkeks.org) AC_CONFIG_SRCDIR(src) AC_CANONICAL_HOST AC_PROG_CC AC_PROG_CPP AC_CHECK_TOOL(AR, ar) AC_PROG_RANLIB AC_PROG_LN_S AC_PROG_INSTALL | < < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | AC_INIT(corefw, 0.1, js@webkeks.org) AC_CONFIG_SRCDIR(src) AC_CANONICAL_HOST AC_PROG_CC AC_PROG_CPP AC_CHECK_TOOL(AR, ar) AC_PROG_RANLIB AC_PROG_LN_S AC_PROG_INSTALL AS_IF([test x"$GCC" = x"yes"], [ CFLAGS="$CFLAGS -Wall -Werror -pipe -std=c99 -pedantic" ]) BUILDSYS_SHARED_LIB BUILDSYS_INIT BUILDSYS_TOUCH_DEPS AC_CONFIG_FILES(buildsys.mk) |
︙ | ︙ |