Differences From Artifact [b9a20659e6]:
- File
configure.ac
— part of check-in
[64b5d517f4]
at
2017-04-30 11:41:45
on branch trunk
— Add -Wno-ignored-attributes flag (#5)
Fixes #3
limit to 80 characters (user: js, size: 3620) [annotate] [blame] [check-ins using]
To Artifact [37d4e702b4]:
- File configure.ac — part of check-in [820b470b77] at 2017-04-30 11:49:12 on branch trunk — configure: Fix the OBJCFLAGS vs OBJCXXFLAGS mess (user: js, size: 3603) [annotate] [blame] [check-ins using]
︙ | |||
19 20 21 22 23 24 25 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | - + - - + + - + | AC_PROG_OBJCXXCPP AC_PROG_LN_S AC_PROG_INSTALL AC_PROG_EGREP CPP="$OBJCXXCPP" CPPFLAGS="$CPPFLAGS $OBJCPPFLAGS $($OBJFW_CONFIG --cppflags)" |
︙ | |||
83 84 85 86 87 88 89 | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | - - + + | ]) PKG_CHECK_MODULES(Qt5Widgets, [Qt5Widgets >= 5.5], [ CPPFLAGS="$CPPFLAGS $Qt5Widgets_CFLAGS" LIBS="$LIBS $Qt5Widgets_LIBS" ], [ AC_MSG_ERROR(You need Qt5Widgets >= 5.5 installed!) ]) |
︙ | |||
108 109 110 111 112 113 114 | 108 109 110 111 112 113 114 115 116 117 | - - | 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) |