# Process this file with autoconf to produce a configure script. # # $Id: configure.ac 81 2006-03-11 23:47:40Z jari $ # # Author: Jari Hakkinen, jari@thep.lu.se # # If you grabbed the source from subversion you should, at top-level, # execute: # ./bootstrap # AC_PREREQ(2.57) AC_INIT([[svnstat]],[0.2],[jari@thep.lu.se]) AC_CONFIG_SRCDIR([lib/File.h]) AC_CONFIG_AUX_DIR([autotools]) AC_PREFIX_DEFAULT([/usr/local]) AM_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION,$PACKAGE_BUGREPORT) # Checks for programs. AC_PROG_CPP AC_PROG_CXX AC_PROG_INSTALL AC_PROG_RANLIB CXXFLAGS="-g -O -Wall -pedantic" CPPFLAGS="-DHAVE_INLINE=1" # Use these flags when compiling a production library #CXXFLAGS="-O3 -Wall -pedantic" #CPPFLAGS="-DNDEBUG -DGSL_RANGE_CHECK_OFF -DHAVE_INLINE=1" AC_CONFIG_FILES([Makefile bin/Makefile lib/Makefile test/Makefile]) AC_OUTPUT