view configure.in @ 3:0c9a6c2c3e06

Fixed doxygen conf file variable substitution
author Jamie Bullock <jamie@postlude.co.uk>
date Wed, 04 Oct 2006 18:32:25 +0000
parents 819937ea6359
children 46efa5536d04
line wrap: on
line source
AC_PREREQ(2.13)
AC_INIT([libxtract], [0.10], [bugs@postlude.co.uk])

AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
AM_CONFIG_HEADER(config.h)
AC_PROG_CC
AC_PROG_INSTALL
AC_ENABLE_STATIC(no)
AC_ENABLE_SHARED(yes)
AC_PROG_LIBTOOL
#AC_ARG_WITH(fftw, AC_HELP_STRING([--with-vector], [build vector features]),
#            [ if test $withval = "yes"; then with_vector=yes ;
#                           else with_vector=no ; fi ], with_vector=no)

AC_CHECK_HEADERS([math.h])
AC_CHECK_PROG([DOXYGEN], [doxygen], [doc], [])
AC_SUBST(DOXYGEN)

AC_ARG_ENABLE(vector, 
              [  --enable-vector    Turn fft-based vector processing on],
              [case "${enableval}" in
               yes) vector=true ;;
               no)  vector=false ;;
               *) AC_MSG_ERROR(bad value ${enableval} for --enable-vector) ;;
           esac],[vector=false])

XTRACT_SO_VERSION=0:0:0
CFLAGS="-pedantic -ansi"
LDFLAGS="-lm"

dnl Are we building with fftw?
#if [[ "$with_vector" = "yes" ]] ; then
if [[ "$vector" = "true" ]] ; then
    LDFLAGS="$LDFLAGS -lfftw3f"
    AC_DEFINE([BUILD_VECTOR], [1], [Build the vector functions])
fi

AM_CONDITIONAL(BUILD_VECTOR, test "x${vector}" = 'xtrue')

AC_CONFIG_FILES([doc/documentation.doxygen])

AC_OUTPUT(Makefile src/Makefile xtract/Makefile doc/Makefile)