Overview
Comment: | Add -Wno-ignored-attributes flag (#5)
Fixes #3 limit to 80 characters |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
64b5d517f4cd7d731c358f297f950d85 |
User & Date: | js on 2017-04-30 11:41:45 |
Other Links: | manifest | tags |
Context
2017-04-30
| ||
11:49 | configure: Fix the OBJCFLAGS vs OBJCXXFLAGS mess check-in: 820b470b77 user: js tags: trunk | |
11:41 | Add -Wno-ignored-attributes flag (#5) check-in: 64b5d517f4 user: js tags: trunk | |
2017-04-18
| ||
19:21 | Add QtPushButton check-in: 14dfe934b0 user: max-schander@freenet.de tags: trunk | |
Changes
Modified configure.ac from [67be020224] to [b9a20659e6].
︙ | ︙ | |||
31 32 33 34 35 36 37 38 39 40 41 42 43 44 | AC_MSG_ERROR(You need a compiler that supports C++11!) ]) AX_CHECK_COMPILER_FLAGS(-pipe, [OBJCFLAGS="$OBJCFLAGS -pipe"]) AX_CHECK_COMPILER_FLAGS(-fno-common, [OBJCFLAGS="$OBJCFLAGS -fno-common"]) AX_CHECK_COMPILER_FLAGS(-Wobjc-missing-property-synthesis -Werror, [OBJCFLAGS="$OBJCFLAGS -Wobjc-missing-property-synthesis"]) AC_CHECK_TOOL(AR, ar) AC_PROG_RANLIB 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 | > > | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | AC_MSG_ERROR(You need a compiler that supports C++11!) ]) AX_CHECK_COMPILER_FLAGS(-pipe, [OBJCFLAGS="$OBJCFLAGS -pipe"]) AX_CHECK_COMPILER_FLAGS(-fno-common, [OBJCFLAGS="$OBJCFLAGS -fno-common"]) AX_CHECK_COMPILER_FLAGS(-Wobjc-missing-property-synthesis -Werror, [OBJCFLAGS="$OBJCFLAGS -Wobjc-missing-property-synthesis"]) AX_CHECK_COMPILER_FLAGS(-Wno-ignored-attributes -Werror, [OBJCXXFLAGS="$OBJCXXFLAGS -Wno-ignored-attributes"]) AC_CHECK_TOOL(AR, ar) AC_PROG_RANLIB 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 |
︙ | ︙ |