Changes in configure.ac [175:4eb8900a865c:236:da953e387d31] in lemon-main
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r175 r236 7 7 8 8 AC_PREREQ([2.59]) 9 AC_INIT([LEMON], [lemon_version()], [lemon- devel@lemon.cs.elte.hu], [lemon])9 AC_INIT([LEMON], [lemon_version()], [lemon-user@lemon.cs.elte.hu], [lemon]) 10 10 AC_CONFIG_AUX_DIR([build-aux]) 11 11 AC_CONFIG_MACRO_DIR([m4]) … … 26 26 AC_CHECK_PROG([gs_found],[gs],[yes],[no]) 27 27 28 dnl Set custom compiler flags when using g++. 28 29 if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then 29 30 CXXFLAGS="$CXXFLAGS -Wall -W -Wall -W -Wunused -Wformat=2 -Wctor-dtor-privacy -Wnon-virtual-dtor -Wno-char-subscripts -Wwrite-strings -Wno-char-subscripts -Wreturn-type -Wcast-qual -Wcast-align -Wsign-promo -Woverloaded-virtual -Woverloaded-virtual -ansi -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas" … … 35 36 LX_CHECK_SOPLEX 36 37 37 dnl Disable/enable building the demo programs 38 dnl Disable/enable building the demo programs. 38 39 AC_ARG_ENABLE([demo], 39 40 AS_HELP_STRING([--enable-demo], [build the demo programs]) … … 48 49 AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"]) 49 50 50 dnl Disable/enable building the binary tools 51 dnl Disable/enable building the binary tools. 51 52 AC_ARG_ENABLE([tools], 52 53 AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@]) … … 61 62 AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"]) 62 63 63 dnl Disable/enable building the benchmarks 64 dnl Disable/enable building the benchmarks. 64 65 AC_ARG_ENABLE([benchmark], 65 66 AS_HELP_STRING([--enable-benchmark], [build the benchmarks]) … … 87 88 AC_HEADER_STDC 88 89 AC_CHECK_FUNCS(gettimeofday times ctime_r) 90 91 dnl Add dependencies on files generated by configure. 92 AC_SUBST([CONFIG_STATUS_DEPENDENCIES], 93 ['$(top_srcdir)/doc/Doxyfile.in $(top_srcdir)/lemon/lemon.pc.in']) 89 94 90 95 AC_CONFIG_FILES([
Note: See TracChangeset
for help on using the changeset viewer.