Changes in configure.ac [236:da953e387d31:175:4eb8900a865c] in lemon-main
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r236 r175 7 7 8 8 AC_PREREQ([2.59]) 9 AC_INIT([LEMON], [lemon_version()], [lemon- user@lemon.cs.elte.hu], [lemon])9 AC_INIT([LEMON], [lemon_version()], [lemon-devel@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++.29 28 if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then 30 29 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" … … 36 35 LX_CHECK_SOPLEX 37 36 38 dnl Disable/enable building the demo programs .37 dnl Disable/enable building the demo programs 39 38 AC_ARG_ENABLE([demo], 40 39 AS_HELP_STRING([--enable-demo], [build the demo programs]) … … 49 48 AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"]) 50 49 51 dnl Disable/enable building the binary tools .50 dnl Disable/enable building the binary tools 52 51 AC_ARG_ENABLE([tools], 53 52 AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@]) … … 62 61 AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"]) 63 62 64 dnl Disable/enable building the benchmarks .63 dnl Disable/enable building the benchmarks 65 64 AC_ARG_ENABLE([benchmark], 66 65 AS_HELP_STRING([--enable-benchmark], [build the benchmarks]) … … 88 87 AC_HEADER_STDC 89 88 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'])94 89 95 90 AC_CONFIG_FILES([
Note: See TracChangeset
for help on using the changeset viewer.