Differences From Artifact [edb0054b32]:
- File
configure.ac
— part of check-in
[baf52ea3b1]
at
2017-04-17 23:25:45
on branch trunk
— Add a proper build system
Also lowers the minimum required Qt version to 5.5. (user: js, size: 3268) [annotate] [blame] [check-ins using]
To Artifact [67be020224]:
- File
configure.ac
— part of check-in
[7a43c3a524]
at
2017-04-18 00:09:15
on branch trunk
— Check whether Qt requires PIC
Also includes a buildsys update required for this. (user: js, size: 3508) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 | ]) AC_LANG([Objective C++]) AC_PROG_OBJCXX(clang++ g++) AC_PROG_OBJCXXCPP AC_PROG_LN_S AC_PROG_INSTALL CPP="$OBJCXXCPP" CPPFLAGS="$CPPFLAGS $OBJCPPFLAGS $($OBJFW_CONFIG --cppflags)" OBJCFLAGS="$OBJCFLAGS -Wall $($OBJFW_CONFIG --objcflags)" LDFLAGS="$LDFLAGS $($OBJFW_CONFIG --ldflags --rpath)" LIBS="$LIBS $($OBJFW_CONFIG --libs)" | > | | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | ]) AC_LANG([Objective C++]) AC_PROG_OBJCXX(clang++ g++) AC_PROG_OBJCXXCPP AC_PROG_LN_S AC_PROG_INSTALL AC_PROG_EGREP CPP="$OBJCXXCPP" CPPFLAGS="$CPPFLAGS $OBJCPPFLAGS $($OBJFW_CONFIG --cppflags)" OBJCFLAGS="$OBJCFLAGS -Wall $($OBJFW_CONFIG --objcflags)" LDFLAGS="$LDFLAGS $($OBJFW_CONFIG --ldflags --rpath)" LIBS="$LIBS $($OBJFW_CONFIG --libs)" AX_CHECK_COMPILER_FLAGS(-std=c++11, [OBJCXXFLAGS="$OBJCXXFLAGS -std=c++11"], [ 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"]) |
︙ | ︙ | |||
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | LIBS="$LIBS $Qt5Widgets_LIBS" ], [ AC_MSG_ERROR(You need Qt5Widgets >= 5.5 installed!) ]) AS_IF([test x"$GOBJC" = x"yes"], [ OBJCFLAGS="$OBJCFLAGS -Wwrite-strings -Wpointer-arith -Werror" ]) BUILDSYS_INIT dnl We don't call AC_PROG_CPP or AC_PROG_OBJC, but only AC_PROG_OBJCPPCXX and dnl set CPP and OBJCC to OBJCPPCXX and add OBJCXXCPPFLAGS to CPPFLAGS, thus we dnl need to AC_SUBST these ourself. AC_SUBST(CPP) AC_SUBST(CPPFLAGS) AC_SUBST(CXXFLAGS) AC_SUBST(OBJCFLAGS) AC_CONFIG_FILES([buildsys.mk extra.mk]) AC_OUTPUT | > > > > > > > > > > > > > > | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | LIBS="$LIBS $Qt5Widgets_LIBS" ], [ AC_MSG_ERROR(You need Qt5Widgets >= 5.5 installed!) ]) AS_IF([test x"$GOBJC" = x"yes"], [ OBJCFLAGS="$OBJCFLAGS -Wwrite-strings -Wpointer-arith -Werror" ]) AC_MSG_CHECKING(whether Qt requires PIC) AC_EGREP_CPP(yes, [ #include <qglobal.h> #ifdef QT_REDUCE_RELOCATIONS yes #endif ], [ OBJCXXFLAGS="$LIB_CFLAGS $OBJCXXFLAGS" AC_MSG_RESULT(yes) ], [ AC_MSG_RESULT(no) ]) BUILDSYS_INIT dnl We don't call AC_PROG_CPP or AC_PROG_OBJC, but only AC_PROG_OBJCPPCXX and dnl set CPP and OBJCC to OBJCPPCXX and add OBJCXXCPPFLAGS to CPPFLAGS, thus we dnl need to AC_SUBST these ourself. AC_SUBST(CPP) AC_SUBST(CPPFLAGS) AC_SUBST(CXXFLAGS) AC_SUBST(OBJCFLAGS) AC_CONFIG_FILES([buildsys.mk extra.mk]) AC_OUTPUT |