source: trunk/configure.ac @ 85

Last change on this file since 85 was 84, checked in by Jari Häkkinen, 17 years ago

Added copyright statement. Bumped version number to pre0.3. Cleaned up code.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id: configure.ac 84 2006-03-13 22:04:34Z jari $
4##
5## If you grabbed the source from subversion you should, at top-level,
6## execute:
7##          ./bootstrap
8
9# Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson
10#
11# This file is part of svnstat, http://lev.thep.lu.se/trac/svnstat
12#
13# svnstat is free software; you can redistribute it and/or modify it
14# under the terms of the GNU General Public License as published by
15# the Free Software Foundation; either version 2 of the License, or
16# (at your option) any later version.
17#
18# svnstat is distributed in the hope that it will be useful, but
19# WITHOUT ANY WARRANTY; without even the implied warranty of
20# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21# General Public License for more details.
22#
23# You should have received a copy of the GNU General Public License
24# along with this program; if not, write to the Free Software
25# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
26# 02111-1307, USA.
27
28AC_PREREQ(2.57)
29AC_INIT([[svnstat]],[pre0.3],[jari@thep.lu.se])
30AC_CONFIG_SRCDIR([lib/File.h])
31AC_CONFIG_AUX_DIR([autotools])
32AC_PREFIX_DEFAULT([/usr/local])
33
34AM_CONFIG_HEADER([config.h])
35AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION,$PACKAGE_BUGREPORT)
36
37# Checks for programs.
38AC_PROG_CPP
39AC_PROG_CXX
40AC_PROG_INSTALL
41AC_PROG_RANLIB
42
43CXXFLAGS="-g -O -Wall -pedantic"
44CPPFLAGS="-DHAVE_INLINE=1"
45# Use these flags when compiling a production library
46#CXXFLAGS="-O3 -Wall -pedantic"
47#CPPFLAGS="-DNDEBUG -DGSL_RANGE_CHECK_OFF -DHAVE_INLINE=1"
48
49AC_CONFIG_FILES([Makefile
50                bin/Makefile
51                lib/Makefile
52                test/Makefile])
53
54AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.