Changeset 96 for trunk/configure.ac


Ignore:
Timestamp:
Mar 29, 2006, 1:00:51 AM (18 years ago)
Author:
Jari Häkkinen
Message:

Added --with-apr and --with-svn options to configure script. These may be needed for compilation success.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r84 r96  
    3131AC_CONFIG_AUX_DIR([autotools])
    3232AC_PREFIX_DEFAULT([/usr/local])
     33test $prefix = NONE && prefix=/usr/local
    3334
    3435AM_CONFIG_HEADER([config.h])
     
    4748#CPPFLAGS="-DNDEBUG -DGSL_RANGE_CHECK_OFF -DHAVE_INLINE=1"
    4849
     50AC_ARG_WITH(apr,
     51  [  --with-apr=DIR          prefix for installed APR or path to APR build
     52                          tree [[PREFIX]]],
     53  [ APR_PATH=$withval ],
     54  [ APR_PATH=$prefix ])
     55AC_SUBST(APR_PATH)
     56
     57AC_ARG_WITH(svn,
     58  [  --with-svn=DIR          prefix for svn developer files [[PREFIX]]],
     59  [ SVN_PATH=$withval ],
     60  [ SVN_PATH=$prefix ])
     61AC_SUBST(SVN_PATH)
     62
    4963AC_CONFIG_FILES([Makefile
    5064                bin/Makefile
Note: See TracChangeset for help on using the changeset viewer.