Changeset 226:4c9d85f5dc93 in lemon-main
- Timestamp:
- 07/18/08 17:47:27 (16 years ago)
- Branch:
- default
- Parents:
- 222:f9a18c21dba8 (diff), 225:c5a40fc54f1a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r219 r226 7 7 8 8 AC_PREREQ([2.59]) 9 AC_INIT([L EMON], [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]) -
configure.ac
r225 r226 89 89 AC_CHECK_FUNCS(gettimeofday times ctime_r) 90 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 91 95 AC_CONFIG_FILES([ 92 96 Makefile -
doc/Doxyfile.in
r219 r226 16 16 INLINE_INHERITED_MEMB = NO 17 17 FULL_PATH_NAMES = YES 18 STRIP_FROM_PATH = @abs_top_srcdir@19 STRIP_FROM_INC_PATH = @abs_top_srcdir@18 STRIP_FROM_PATH = "@abs_top_srcdir@" 19 STRIP_FROM_INC_PATH = "@abs_top_srcdir@" 20 20 SHORT_NAMES = YES 21 21 JAVADOC_AUTOBRIEF = NO … … 81 81 # configuration options related to the input files 82 82 #--------------------------------------------------------------------------- 83 INPUT = @abs_top_srcdir@/doc\84 @abs_top_srcdir@/lemon\85 @abs_top_srcdir@/lemon/bits\86 @abs_top_srcdir@/lemon/concepts\87 @abs_top_srcdir@/demo\88 @abs_top_srcdir@/tools\89 @abs_top_srcdir@/test/test_tools.h83 INPUT = "@abs_top_srcdir@/doc" \ 84 "@abs_top_srcdir@/lemon" \ 85 "@abs_top_srcdir@/lemon/bits" \ 86 "@abs_top_srcdir@/lemon/concepts" \ 87 "@abs_top_srcdir@/demo" \ 88 "@abs_top_srcdir@/tools" \ 89 "@abs_top_srcdir@/test/test_tools.h" 90 90 INPUT_ENCODING = UTF-8 91 91 FILE_PATTERNS = *.h \ … … 97 97 EXCLUDE_PATTERNS = 98 98 EXCLUDE_SYMBOLS = 99 EXAMPLE_PATH = @abs_top_srcdir@/demo\100 @abs_top_srcdir@/LICENSE\101 @abs_top_srcdir@/doc99 EXAMPLE_PATH = "@abs_top_srcdir@/demo" \ 100 "@abs_top_srcdir@/LICENSE" \ 101 "@abs_top_srcdir@/doc" 102 102 EXAMPLE_PATTERNS = 103 103 EXAMPLE_RECURSIVE = NO 104 IMAGE_PATH = @abs_top_srcdir@/doc/images\105 @abs_top_builddir@/doc/gen-images104 IMAGE_PATH = "@abs_top_srcdir@/doc/images" \ 105 "@abs_top_builddir@/doc/gen-images" 106 106 INPUT_FILTER = 107 107 FILTER_PATTERNS = -
doc/Doxyfile.in
r224 r226 146 146 DISABLE_INDEX = NO 147 147 ENUM_VALUES_PER_LINE = 4 148 GENERATE_TREEVIEW = YES148 GENERATE_TREEVIEW = NO 149 149 TREEVIEW_WIDTH = 250 150 150 #---------------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.