CoreFW  Check-in [b18f80cc04]

Overview
Comment:Add -Werror and -pipe if when using GCC.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: b18f80cc04b34a6fa01999fb979b668c785a615f3636bf223ff3753dc37dd1d0
User & Date: js on 2012-04-22 12:50:42
Other Links: manifest | tags
Context
2012-04-22
13:09
Add refpool. check-in: 8ec09e82ac user: js tags: trunk
12:50
Add -Werror and -pipe if when using GCC. check-in: b18f80cc04 user: js tags: trunk
02:34
Add map iteration. check-in: c339f2040e user: js tags: trunk
Changes

Modified configure.ac from [dd4e78cf9b] to [52e8f0014e].

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













>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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"

AS_IF([test x"$GCC" = x"yes"], [
	CFLAGS="$CFLAGS -Werror -pipe"
])

BUILDSYS_SHARED_LIB
BUILDSYS_INIT
BUILDSYS_TOUCH_DEPS

AC_CONFIG_FILES(buildsys.mk)
AC_OUTPUT