Last change
on this file since 510 was
81,
checked in by Jari Häkkinen, 17 years ago
|
Bumped version, added header files to the distribution (i.e. 'make dist').
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
861 bytes
|
Line | |
---|
1 | # Process this file with autoconf to produce a configure script. |
---|
2 | # |
---|
3 | # $Id: configure.ac 81 2006-03-11 23:47:40Z jari $ |
---|
4 | # |
---|
5 | # Author: Jari Hakkinen, jari@thep.lu.se |
---|
6 | # |
---|
7 | # If you grabbed the source from subversion you should, at top-level, |
---|
8 | # execute: |
---|
9 | # ./bootstrap |
---|
10 | # |
---|
11 | |
---|
12 | AC_PREREQ(2.57) |
---|
13 | AC_INIT([[svnstat]],[0.2],[jari@thep.lu.se]) |
---|
14 | AC_CONFIG_SRCDIR([lib/File.h]) |
---|
15 | AC_CONFIG_AUX_DIR([autotools]) |
---|
16 | AC_PREFIX_DEFAULT([/usr/local]) |
---|
17 | |
---|
18 | AM_CONFIG_HEADER([config.h]) |
---|
19 | AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION,$PACKAGE_BUGREPORT) |
---|
20 | |
---|
21 | # Checks for programs. |
---|
22 | AC_PROG_CPP |
---|
23 | AC_PROG_CXX |
---|
24 | AC_PROG_INSTALL |
---|
25 | AC_PROG_RANLIB |
---|
26 | |
---|
27 | CXXFLAGS="-g -O -Wall -pedantic" |
---|
28 | CPPFLAGS="-DHAVE_INLINE=1" |
---|
29 | # Use these flags when compiling a production library |
---|
30 | #CXXFLAGS="-O3 -Wall -pedantic" |
---|
31 | #CPPFLAGS="-DNDEBUG -DGSL_RANGE_CHECK_OFF -DHAVE_INLINE=1" |
---|
32 | |
---|
33 | AC_CONFIG_FILES([Makefile |
---|
34 | bin/Makefile |
---|
35 | lib/Makefile |
---|
36 | test/Makefile]) |
---|
37 | |
---|
38 | AC_OUTPUT |
---|
Note: See
TracBrowser
for help on using the repository browser.