Overview
Comment: | Add -Wall. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5bb3f2db02856b521ae8426c86d84c03 |
User & Date: | js on 2012-04-08 19:16:01 |
Other Links: | manifest | tags |
Context
2012-04-08
| ||
19:19 | Add cfw_string_append(). check-in: 891f0add23 user: js tags: trunk | |
19:16 | Add -Wall. check-in: 5bb3f2db02 user: js tags: trunk | |
19:12 | Add corefw.h. check-in: 23d36a4cfe user: js tags: trunk | |
Changes
Modified configure.ac from [6ef842f2e8] to [dd4e78cf9b].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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 BUILDSYS_SHARED_LIB BUILDSYS_INIT BUILDSYS_TOUCH_DEPS AC_CONFIG_FILES(buildsys.mk) AC_OUTPUT | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 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 CFLAGS="$CFLAGS -Wall" BUILDSYS_SHARED_LIB BUILDSYS_INIT BUILDSYS_TOUCH_DEPS AC_CONFIG_FILES(buildsys.mk) AC_OUTPUT |