Changeset aef58ba6ff1f23f0533a4c896a3f71ac64fff84d for configure.ac
- Timestamp:
- 05/10/10 17:03:24 (2 years ago)
- Parents:
- 2d482ecb0a2abf82199a1f7c2350125d362c000f
- Children:
- d375779d1d4dfca413cc875bbe88abbdbf171a17
- git-committer:
- Philip Herron <redbrain@alpha.(none)> / 2010-05-10T17:03:24Z+0100
- Files:
-
- 1 modified
-
configure.ac (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r10c72b9 raef58ba 80 80 AC_CANONICAL_HOST 81 81 82 AC_ARG_WITH(include, 83 [AS_HELP_STRING([--with-include=<inc dir>], 84 [external include dir for headers, default null!])], 85 [xinclude="$withval"]) 86 if test "x$xinclude" != "x"; then 87 CFLAGS="$CFLAGS -I$xinclude" 88 else 89 xinclude="none" 90 fi 91 92 AC_ARG_WITH(lib, 93 [AS_HELP_STRING([--with-lib=<lib dir>], 94 [external lib dir for libraries, default null!])], 95 [xlib="$withval"]) 96 if test "x$xlib" != "x"; then 97 LDFLAGS="$LDFLAGS -L$xlib" 98 else 99 xlib="none" 100 fi 101 102 CFLAGS_save="$CFLAGS" 103 CFLAGS="" 82 83 # CFLAGS_save="$CFLAGS" 84 # CFLAGS="$" 104 85 105 86 xpkgs="" … … 160 141 [AC_MSG_ERROR([MPFR not found, see http://www.mpfr.org/])]) 161 142 AC_CHECK_SIZEOF(mp_limb_t, , [#include <gmp.h>]) 143 144 AC_CHECK_LIB([pcre], [pcre_compile], , 145 [AC_MSG_ERROR([Libpcre3 - Perl Regex not found. \ 146 On Debfian can be found via libpcre3-dev])]) 162 147 163 148 VL_LIB_READLINE … … 226 211 AC_CHECK_SIZEOF(long long) 227 212 AC_CHECK_SIZEOF(crl_symbol_obj, , \ 228 [#include " crules/symbols.h"])213 [#include "include/crules/symbols.h"]) 229 214 230 215 # Checks for header files. … … 235 220 stdint.h stdio.h getopt.h \ 236 221 assert.h sys/types.h signal.h \ 237 fcntl.h pthread.h sys/wait.h]) 222 fcntl.h pthread.h sys/wait.h \ 223 gmp.h mpfr.h pcre.h]) 238 224 239 225 # Checks for typedefs, structures, and compiler characteristics. … … 269 255 echo " * LEX version: $LEX" 270 256 echo " * Perl support: $XPERL" 271 echo " * External include dir: $xinclude" 272 echo " * External lib dir $xlib" 273 echo " * Multi-Precision: yes" 257 echo " * GMP & MPFR support: yes" 258 echo " * Perl Regex Support: yes" 274 259 echo " * POSIX pthreads: $pthread" 275 260 echo " * DEBUG Symbols: $debug"
