ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/dclient/configure.ac
Revision: 1.3
Committed: Mon Oct 25 02:07:50 2010 UTC (13 years, 7 months ago) by sf-pippijn
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +1 -1 lines
Log Message:
factored out common client main

File Contents

# User Rev Content
1 sf-pippijn 1.1 AC_PREREQ(2.61)
2     AC_INIT([DClient], [0.1], [dclient@xinutec.org])
3     AC_CONFIG_AUX_DIR(autoconf)
4     AC_CONFIG_SRCDIR(autoconf.h.in)
5     AC_CONFIG_MACRO_DIR(m4)
6     AC_CONFIG_HEADERS(autoconf.h)
7    
8     # automake
9     AC_DISABLE_STATIC
10     LT_INIT
11 sf-pippijn 1.3 AM_INIT_AUTOMAKE([silent-rules gnits color-tests parallel-tests])
12 sf-pippijn 1.1 AM_SILENT_RULES
13     AM_DEFAULT_VERBOSITY=0
14    
15     # build tools
16     AC_PROG_CXX
17 sf-pippijn 1.2 AC_PROG_YACC
18     AC_PROG_LEX
19    
20     # debugging
21     AC_CHECK_HEADERS([dnl
22     valgrind/valgrind.h dnl
23     valgrind/memcheck.h dnl
24     execinfo.h dnl
25     bfd.h dnl
26     ])
27 sf-pippijn 1.1
28     AC_CONFIG_FILES([Makefile])
29     AC_OUTPUT