Overview
Comment: | Add -Wdocumentation if supported by the compiler. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
16a02009a3bb560fcb738ee8ef46452b |
User & Date: | js on 2013-02-14 02:20:23 |
Other Links: | manifest | tags |
Context
2013-02-21
| ||
23:41 | Update to recent ObjFW changes. check-in: 64d3ec13b0 user: js tags: trunk | |
2013-02-14
| ||
02:20 | Add -Wdocumentation if supported by the compiler. check-in: 16a02009a3 user: js tags: trunk | |
2013-02-13
| ||
23:27 | Don't class-swizzle to call close on super. check-in: 8a23146f8c user: js tags: trunk | |
Changes
Modified configure.ac from [f3168bfbe7] to [e468f98bc4].
︙ | ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 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(OBJOPENSSL_SHARED_LIB, "${LIB_PREFIX}objopenssl${LIB_SUFFIX}") ]) AC_ARG_ENABLE(static, AS_HELP_STRING([--enable-static], [build static library])) | > > > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | CPP="$OBJCPP" CPPFLAGS="$CPPFLAGS $OBJCPPFLAGS $($OBJFW_CONFIG --cppflags)" OBJCFLAGS="$OBJCFLAGS -Wall $($OBJFW_CONFIG --objcflags)" LDFLAGS="$LDFLAGS $($OBJFW_CONFIG --ldflags)" LIBS="$LIBS $($OBJFW_CONFIG --libs)" AX_CHECK_COMPILER_FLAGS(-Wdocumentation, [OBJCFLAGS="$OBJCFLAGS -Wdocumentation"]) 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(OBJOPENSSL_SHARED_LIB, "${LIB_PREFIX}objopenssl${LIB_SUFFIX}") ]) AC_ARG_ENABLE(static, AS_HELP_STRING([--enable-static], [build static library])) |
︙ | ︙ |
Added m4/ax_check_compiler_flags.m4 version [eb1353b82e].