/[pcre]/code/trunk/configure.ac
ViewVC logotype

Contents of /code/trunk/configure.ac

Parent Directory Parent Directory | Revision Log Revision Log


Revision 666 - (hide annotations) (download)
Mon Aug 22 14:56:43 2011 UTC (21 months ago) by ph10
File size: 29187 byte(s)
Commit changes for JIT support

1 nigel 87 dnl Process this file with autoconf to produce a configure script.
2    
3 ph10 481 dnl NOTE FOR MAINTAINERS: Do not use minor version numbers 08 or 09 because
4     dnl the leading zeros may cause them to be treated as invalid octal constants
5     dnl if a PCRE user writes code that uses PCRE_MINOR as a number. There is now
6     dnl a check further down that throws an error if 08 or 09 are used.
7 ph10 99
8 ph10 481 dnl The PCRE_PRERELEASE feature is for identifying release candidates. It might
9     dnl be defined as -RC2, for example. For real releases, it should be empty.
10    
11 ph10 418 m4_define(pcre_major, [8])
12 ph10 666 m4_define(pcre_minor, [20])
13     m4_define(pcre_prerelease, [-RC1])
14     m4_define(pcre_date, [2011-08-18])
15 nigel 87
16 ph10 97 # Libtool shared library interface versions (current:revision:age)
17     m4_define(libpcre_version, [0:1:0])
18     m4_define(libpcreposix_version, [0:0:0])
19     m4_define(libpcrecpp_version, [0:0:0])
20 nigel 87
21 ph10 97 AC_PREREQ(2.57)
22     AC_INIT(PCRE, pcre_major.pcre_minor[]pcre_prerelease, , pcre)
23     AC_CONFIG_SRCDIR([pcre.h.in])
24     AM_INIT_AUTOMAKE([dist-bzip2 dist-zip])
25     AC_CONFIG_HEADERS(config.h)
26 ph10 159
27 ph10 479 # This was added at the suggestion of libtoolize (03-Jan-10)
28     AC_CONFIG_MACRO_DIR([m4])
29    
30 ph10 159 # The default CFLAGS and CXXFLAGS in Autoconf are "-g -O2" for gcc and just
31     # "-g" for any other compiler. There doesn't seem to be a standard way of
32     # getting rid of the -g (which I don't think is needed for a production
33     # library). This fudge seems to achieve the necessary. First, we remember the
34     # externally set values of CFLAGS and CXXFLAGS. Then call the AC_PROG_CC and
35     # AC_PROG_CXX macros to find the compilers - if CFLAGS and CXXFLAGS are not
36     # set, they will be set to Autoconf's defaults. Afterwards, if the original
37     # values were not set, remove the -g from the Autoconf defaults.
38     # (PH 02-May-07)
39    
40     remember_set_CFLAGS="$CFLAGS"
41     remember_set_CXXFLAGS="$CXXFLAGS"
42    
43 ph10 97 AC_PROG_CC
44     AC_PROG_CXX
45 ph10 159
46     if test "x$remember_set_CFLAGS" = "x"
47     then
48     if test "$CFLAGS" = "-g -O2"
49     then
50     CFLAGS="-O2"
51     elif test "$CFLAGS" = "-g"
52     then
53     CFLAGS=""
54     fi
55     fi
56    
57     if test "x$remember_set_CXXFLAGS" = "x"
58     then
59     if test "$CXXFLAGS" = "-g -O2"
60     then
61     CXXFLAGS="-O2"
62     elif test "$CXXFLAGS" = "-g"
63     then
64     CXXFLAGS=""
65     fi
66     fi
67    
68 ph10 330 # AC_PROG_CXX will return "g++" even if no c++ compiler is installed.
69     # Check for that case, and just disable c++ code if g++ doesn't run.
70     AC_LANG_PUSH(C++)
71 ph10 644 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])],, CXX=""; CXXCP=""; CXXFLAGS="")
72 ph10 330 AC_LANG_POP
73 ph10 159
74 ph10 475 # Check for a 64-bit integer type
75     AC_TYPE_INT64_T
76    
77 ph10 97 AC_PROG_INSTALL
78     AC_LIBTOOL_WIN32_DLL
79 ph10 644 LT_INIT
80 ph10 137 AC_PROG_LN_S
81 nigel 87
82 ph10 97 PCRE_MAJOR="pcre_major"
83     PCRE_MINOR="pcre_minor"
84     PCRE_PRERELEASE="pcre_prerelease"
85     PCRE_DATE="pcre_date"
86 nigel 87
87 ph10 481 if test "$PCRE_MINOR" = "08" -o "$PCRE_MINOR" = "09"
88     then
89     echo "***"
90     echo "*** Minor version number $PCRE_MINOR must not be used. ***"
91 ph10 487 echo "*** Use only 01 to 07 or 10 onwards, to avoid octal issues. ***"
92     echo "***"
93 ph10 481 exit 1
94 ph10 487 fi
95 ph10 481
96 ph10 97 AC_SUBST(PCRE_MAJOR)
97     AC_SUBST(PCRE_MINOR)
98     AC_SUBST(PCRE_PRERELEASE)
99     AC_SUBST(PCRE_DATE)
100 nigel 87
101 ph10 97 # Set a more sensible default value for $(htmldir).
102     if test "x$htmldir" = 'x${docdir}'
103     then
104     htmldir='${docdir}/html'
105     fi
106 nigel 87
107 ph10 492 # Handle --disable-cpp. The substitution of enable_cpp is needed for use in
108     # pcre-config.
109 ph10 97 AC_ARG_ENABLE(cpp,
110     AS_HELP_STRING([--disable-cpp],
111     [disable C++ support]),
112     , enable_cpp=yes)
113 ph10 507 AC_SUBST(enable_cpp)
114 nigel 87
115 ph10 666 # Handle --enable-jit (disabled by default)
116     AC_ARG_ENABLE(jit,
117     AS_HELP_STRING([--enable-jit],
118     [enable Just-In-Time compiling support]),
119     , enable_jit=no)
120    
121 ph10 128 # Handle --enable-rebuild-chartables
122     AC_ARG_ENABLE(rebuild-chartables,
123     AS_HELP_STRING([--enable-rebuild-chartables],
124     [rebuild character tables in current locale]),
125     , enable_rebuild_chartables=no)
126    
127 ph10 97 # Handle --enable-utf8 (disabled by default)
128     AC_ARG_ENABLE(utf8,
129     AS_HELP_STRING([--enable-utf8],
130 ph10 391 [enable UTF-8 support (incompatible with --enable-ebcdic)]),
131 ph10 97 , enable_utf8=unset)
132 nigel 87
133 ph10 97 # Handle --enable-unicode-properties
134     AC_ARG_ENABLE(unicode-properties,
135     AS_HELP_STRING([--enable-unicode-properties],
136     [enable Unicode properties support (implies --enable-utf8)]),
137     , enable_unicode_properties=no)
138 nigel 87
139 ph10 97 # Handle --enable-newline=NL
140     dnl AC_ARG_ENABLE(newline,
141     dnl AS_HELP_STRING([--enable-newline=NL],
142 ph10 149 dnl [use NL as newline (lf, cr, crlf, anycrlf, any; default=lf)]),
143 ph10 97 dnl , enable_newline=lf)
144 nigel 87
145 ph10 97 # Separate newline options
146     ac_pcre_newline=lf
147     AC_ARG_ENABLE(newline-is-cr,
148     AS_HELP_STRING([--enable-newline-is-cr],
149     [use CR as newline character]),
150     ac_pcre_newline=cr)
151     AC_ARG_ENABLE(newline-is-lf,
152     AS_HELP_STRING([--enable-newline-is-lf],
153     [use LF as newline character (default)]),
154     ac_pcre_newline=lf)
155     AC_ARG_ENABLE(newline-is-crlf,
156     AS_HELP_STRING([--enable-newline-is-crlf],
157     [use CRLF as newline sequence]),
158     ac_pcre_newline=crlf)
159 ph10 149 AC_ARG_ENABLE(newline-is-anycrlf,
160     AS_HELP_STRING([--enable-newline-is-anycrlf],
161     [use CR, LF, or CRLF as newline sequence]),
162     ac_pcre_newline=anycrlf)
163 ph10 97 AC_ARG_ENABLE(newline-is-any,
164     AS_HELP_STRING([--enable-newline-is-any],
165     [use any valid Unicode newline sequence]),
166     ac_pcre_newline=any)
167     enable_newline="$ac_pcre_newline"
168 nigel 87
169 ph10 231 # Handle --enable-bsr-anycrlf
170     AC_ARG_ENABLE(bsr-anycrlf,
171     AS_HELP_STRING([--enable-bsr-anycrlf],
172     [\R matches only CR, LF, CRLF by default]),
173     , enable_bsr_anycrlf=no)
174    
175 ph10 97 # Handle --enable-ebcdic
176     AC_ARG_ENABLE(ebcdic,
177     AS_HELP_STRING([--enable-ebcdic],
178 ph10 391 [assume EBCDIC coding rather than ASCII; incompatible with --enable-utf8; use only in (uncommon) EBCDIC environments; it implies --enable-rebuild-chartables]),
179 ph10 97 , enable_ebcdic=no)
180 nigel 87
181 ph10 97 # Handle --disable-stack-for-recursion
182     AC_ARG_ENABLE(stack-for-recursion,
183     AS_HELP_STRING([--disable-stack-for-recursion],
184     [don't use stack recursion when matching]),
185     , enable_stack_for_recursion=yes)
186 nigel 87
187 ph10 286 # Handle --enable-pcregrep-libz
188     AC_ARG_ENABLE(pcregrep-libz,
189     AS_HELP_STRING([--enable-pcregrep-libz],
190     [link pcregrep with libz to handle .gz files]),
191     , enable_pcregrep_libz=no)
192    
193     # Handle --enable-pcregrep-libbz2
194     AC_ARG_ENABLE(pcregrep-libbz2,
195     AS_HELP_STRING([--enable-pcregrep-libbz2],
196     [link pcregrep with libbz2 to handle .bz2 files]),
197     , enable_pcregrep_libbz2=no)
198    
199 ph10 644 # Handle --with-pcregrep-bufsize=N
200     AC_ARG_WITH(pcregrep-bufsize,
201     AS_HELP_STRING([--with-pcregrep-bufsize=N],
202     [pcregrep buffer size (default=20480)]),
203     , with_pcregrep_bufsize=20480)
204    
205 ph10 287 # Handle --enable-pcretest-libreadline
206     AC_ARG_ENABLE(pcretest-libreadline,
207     AS_HELP_STRING([--enable-pcretest-libreadline],
208     [link pcretest with libreadline]),
209     , enable_pcretest_libreadline=no)
210    
211 ph10 97 # Handle --with-posix-malloc-threshold=NBYTES
212     AC_ARG_WITH(posix-malloc-threshold,
213     AS_HELP_STRING([--with-posix-malloc-threshold=NBYTES],
214     [threshold for POSIX malloc usage (default=10)]),
215     , with_posix_malloc_threshold=10)
216 nigel 87
217 ph10 97 # Handle --with-link-size=N
218     AC_ARG_WITH(link-size,
219     AS_HELP_STRING([--with-link-size=N],
220     [internal link size (2, 3, or 4 allowed; default=2)]),
221     , with_link_size=2)
222 nigel 87
223 ph10 97 # Handle --with-match-limit=N
224     AC_ARG_WITH(match-limit,
225     AS_HELP_STRING([--with-match-limit=N],
226     [default limit on internal looping (default=10000000)]),
227     , with_match_limit=10000000)
228 nigel 87
229 ph10 97 # Handle --with-match-limit_recursion=N
230     #
231     # Note: In config.h, the default is to define MATCH_LIMIT_RECURSION
232     # symbolically as MATCH_LIMIT, which in turn is defined to be some numeric
233     # value (e.g. 10000000). MATCH_LIMIT_RECURSION can otherwise be set to some
234     # different numeric value (or even the same numeric value as MATCH_LIMIT,
235     # though no longer defined in terms of the latter).
236     #
237     AC_ARG_WITH(match-limit-recursion,
238     AS_HELP_STRING([--with-match-limit-recursion=N],
239     [default limit on internal recursion (default=MATCH_LIMIT)]),
240     , with_match_limit_recursion=MATCH_LIMIT)
241 nigel 87
242 ph10 97 # Make sure that if enable_unicode_properties was set, that UTF-8 support
243     # is enabled.
244     #
245     if test "x$enable_unicode_properties" = "xyes"
246     then
247     if test "x$enable_utf8" = "xno"
248     then
249     AC_MSG_ERROR([support for Unicode properties requires UTF-8 support])
250     fi
251     enable_utf8=yes
252     fi
253 nigel 87
254 ph10 97 if test "x$enable_utf8" = "xunset"
255     then
256     enable_utf8=no
257     fi
258 nigel 87
259 ph10 128 # Make sure that if enable_ebcdic is set, rebuild_chartables is also enabled.
260 ph10 391 # Also check that UTF-8 support is not requested, because PCRE cannot handle
261     # EBCDIC and UTF-8 in the same build. To do so it would need to use different
262     # character constants depending on the mode.
263 ph10 128 #
264 ph10 137 if test "x$enable_ebcdic" = "xyes"
265 ph10 128 then
266     enable_rebuild_chartables=yes
267 ph10 391 if test "x$enable_utf8" = "xyes"
268     then
269     AC_MSG_ERROR([support for EBCDIC and UTF-8 cannot be enabled at the same time])
270     fi
271 ph10 128 fi
272    
273 ph10 97 # Convert the newline identifier into the appropriate integer value.
274     case "$enable_newline" in
275 ph10 149 lf) ac_pcre_newline_value=10 ;;
276     cr) ac_pcre_newline_value=13 ;;
277     crlf) ac_pcre_newline_value=3338 ;;
278 ph10 150 anycrlf) ac_pcre_newline_value=-2 ;;
279 ph10 149 any) ac_pcre_newline_value=-1 ;;
280 ph10 97 *)
281     AC_MSG_ERROR([invalid argument \"$enable_newline\" to --enable-newline option])
282     ;;
283     esac
284 nigel 87
285 ph10 97 # Check argument to --with-link-size
286     case "$with_link_size" in
287     2|3|4) ;;
288     *)
289     AC_MSG_ERROR([invalid argument \"$with_link_size\" to --with-link-size option])
290     ;;
291     esac
292 nigel 87
293 ph10 97 AH_TOP([
294 ph10 100 /* On Unix-like systems config.h.in is converted by "configure" into config.h.
295     Some other environments also support the use of "configure". PCRE is written in
296     Standard C, but there are a few non-standard things it can cope with, allowing
297     it to run on SunOS4 and other "close to standard" systems.
298 nigel 87
299 ph10 111 If you are going to build PCRE "by hand" on a system without "configure" you
300     should copy the distributed config.h.generic to config.h, and then set up the
301 ph10 237 macro definitions the way you need them. You must then add -DHAVE_CONFIG_H to
302     all of your compile commands, so that config.h is included at the start of
303     every source.
304 nigel 87
305 ph10 237 Alternatively, you can avoid editing by using -D on the compiler command line
306     to set the macro values. In this case, you do not have to set -DHAVE_CONFIG_H.
307    
308 ph10 111 PCRE uses memmove() if HAVE_MEMMOVE is set to 1; otherwise it uses bcopy() if
309     HAVE_BCOPY is set to 1. If your system has neither bcopy() nor memmove(), set
310     them both to 0; an emulation function will be used. */])
311 ph10 100
312 ph10 97 # Checks for header files.
313 nigel 87 AC_HEADER_STDC
314 ph10 97 AC_CHECK_HEADERS(limits.h sys/types.h sys/stat.h dirent.h windows.h)
315 nigel 87
316 ph10 97 # The files below are C++ header files.
317     pcre_have_type_traits="0"
318     pcre_have_bits_type_traits="0"
319     if test "x$enable_cpp" = "xyes" -a -n "$CXX"
320 nigel 87 then
321 ph10 97 AC_LANG_PUSH(C++)
322 nigel 87
323 ph10 330 # Older versions of pcre defined pcrecpp::no_arg, but in new versions
324     # it's called pcrecpp::RE::no_arg. For backwards ABI compatibility,
325     # we want to make one an alias for the other. Different systems do
326     # this in different ways. Some systems, for instance, can do it via
327     # a linker flag: -alias (for os x 10.5) or -i (for os x <=10.4).
328     OLD_LDFLAGS="$LDFLAGS"
329     for flag in "-alias,__ZN7pcrecpp2RE6no_argE,__ZN7pcrecpp6no_argE" \
330     "-i__ZN7pcrecpp6no_argE:__ZN7pcrecpp2RE6no_argE"; do
331     AC_MSG_CHECKING([for alias support in the linker])
332     LDFLAGS="$OLD_LDFLAGS -Wl,$flag"
333     # We try to run the linker with this new ld flag. If the link fails,
334     # we give up and remove the new flag from LDFLAGS.
335 ph10 644 AC_LINK_IFELSE([AC_LANG_PROGRAM([namespace pcrecpp {
336 ph10 330 class RE { static int no_arg; };
337     int RE::no_arg;
338     }],
339 ph10 644 [])],
340 ph10 330 [AC_MSG_RESULT([yes]);
341     EXTRA_LIBPCRECPP_LDFLAGS="$EXTRA_LIBPCRECPP_LDFLAGS -Wl,$flag";
342     break;],
343     AC_MSG_RESULT([no]))
344     done
345     LDFLAGS="$OLD_LDFLAGS"
346    
347 ph10 97 # We could be more clever here, given we're doing AC_SUBST with this
348 ph10 127 # (eg set a var to be the name of the include file we want). But we're not
349 ph10 97 # so it's easy to change back to 'regular' autoconf vars if we needed to.
350 nigel 87 AC_CHECK_HEADERS(string, [pcre_have_cpp_headers="1"],
351     [pcre_have_cpp_headers="0"])
352     AC_CHECK_HEADERS(bits/type_traits.h, [pcre_have_bits_type_traits="1"],
353     [pcre_have_bits_type_traits="0"])
354     AC_CHECK_HEADERS(type_traits.h, [pcre_have_type_traits="1"],
355     [pcre_have_type_traits="0"])
356 ph10 330
357 ph10 486 # (This isn't c++-specific, but is only used in pcrecpp.cc, so try this
358     # in a c++ context. This matters becuase strtoimax is C99 and may not
359     # be supported by the C++ compiler.)
360     # Figure out how to create a longlong from a string: strtoll and
361     # equiv. It's not enough to call AC_CHECK_FUNCS: hpux has a
362     # strtoll, for instance, but it only takes 2 args instead of 3!
363     # We have to call AH_TEMPLATE since AC_DEFINE_UNQUOTED below is complex.
364     AH_TEMPLATE(HAVE_STRTOQ, [Define to 1 if you have `strtoq'.])
365     AH_TEMPLATE(HAVE_STRTOLL, [Define to 1 if you have `strtoll'.])
366     AH_TEMPLATE(HAVE__STRTOI64, [Define to 1 if you have `_strtoi64'.])
367     AH_TEMPLATE(HAVE_STRTOIMAX, [Define to 1 if you have `strtoimax'.])
368     have_strto_fn=0
369 ph10 506 for fn in strtoq strtoll _strtoi64 strtoimax; do
370 ph10 486 AC_MSG_CHECKING([for $fn])
371     if test "$fn" = strtoimax; then
372     include=stdint.h
373     else
374     include=stdlib.h
375     fi
376 ph10 644 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <$include>],
377     [char* e; return $fn("100", &e, 10)])],
378 ph10 486 [AC_MSG_RESULT(yes)
379     AC_DEFINE_UNQUOTED(HAVE_`echo $fn | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`, 1,
380     [Define to 1 if you have `$fn'.])
381     have_strto_fn=1
382     break],
383     [AC_MSG_RESULT(no)])
384     done
385    
386     if test "$have_strto_fn" = 1; then
387     AC_CHECK_TYPES([long long],
388     [pcre_have_long_long="1"],
389     [pcre_have_long_long="0"])
390     AC_CHECK_TYPES([unsigned long long],
391     [pcre_have_ulong_long="1"],
392     [pcre_have_ulong_long="0"])
393     else
394     pcre_have_long_long="0"
395     pcre_have_ulong_long="0"
396     fi
397     AC_SUBST(pcre_have_long_long)
398     AC_SUBST(pcre_have_ulong_long)
399    
400 ph10 97 AC_LANG_POP
401     fi
402     # Using AC_SUBST eliminates the need to include config.h in a public .h file
403     AC_SUBST(pcre_have_type_traits)
404 nigel 87 AC_SUBST(pcre_have_bits_type_traits)
405    
406 ph10 97 # Conditional compilation
407     AM_CONDITIONAL(WITH_PCRE_CPP, test "x$enable_cpp" = "xyes")
408 ph10 128 AM_CONDITIONAL(WITH_REBUILD_CHARTABLES, test "x$enable_rebuild_chartables" = "xyes")
409 ph10 666 AM_CONDITIONAL(WITH_JIT, test "x$enable_jit" = "xyes")
410 nigel 87
411 ph10 97 # Checks for typedefs, structures, and compiler characteristics.
412 nigel 87
413     AC_C_CONST
414     AC_TYPE_SIZE_T
415    
416 ph10 97 # Checks for library functions.
417 nigel 87
418 ph10 321 AC_CHECK_FUNCS(bcopy memmove strerror)
419 nigel 87
420 ph10 286 # Check for the availability of libz (aka zlib)
421    
422     AC_CHECK_HEADERS([zlib.h], [HAVE_ZLIB_H=1])
423     AC_CHECK_LIB([z], [gzopen], [HAVE_LIBZ=1])
424    
425 ph10 478 # Check for the availability of libbz2. Originally we just used AC_CHECK_LIB,
426     # as for libz. However, this had the following problem, diagnosed and fixed by
427     # a user:
428     #
429     # - libbz2 uses the Pascal calling convention (WINAPI) for the functions
430     # under Win32.
431     # - The standard autoconf AC_CHECK_LIB fails to include "bzlib.h",
432     # therefore missing the function definition.
433     # - The compiler thus generates a "C" signature for the test function.
434     # - The linker fails to find the "C" function.
435     # - PCRE fails to configure if asked to do so against libbz2.
436     #
437     # Solution:
438     #
439     # - Replace the AC_CHECK_LIB test with a custom test.
440 ph10 286
441     AC_CHECK_HEADERS([bzlib.h], [HAVE_BZLIB_H=1])
442 ph10 478 # Original test
443     # AC_CHECK_LIB([bz2], [BZ2_bzopen], [HAVE_LIBBZ2=1])
444     #
445     # Custom test follows
446 ph10 286
447 ph10 478 AC_MSG_CHECKING([for libbz2])
448     OLD_LIBS="$LIBS"
449     LIBS="$LIBS -lbz2"
450 ph10 644 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
451 ph10 478 #ifdef HAVE_BZLIB_H
452     #include <bzlib.h>
453     #endif]],
454 ph10 644 [[return (int)BZ2_bzopen("conftest", "rb");]])],
455 ph10 478 [AC_MSG_RESULT([yes]);HAVE_LIBBZ2=1; break;],
456     AC_MSG_RESULT([no]))
457     LIBS="$OLD_LIBS"
458    
459 ph10 287 # Check for the availabiity of libreadline
460    
461     AC_CHECK_HEADERS([readline/readline.h], [HAVE_READLINE_H=1])
462     AC_CHECK_HEADERS([readline/history.h], [HAVE_HISTORY_H=1])
463     AC_CHECK_LIB([readline], [readline], [HAVE_LIB_READLINE=1])
464    
465 ph10 97 # This facilitates -ansi builds under Linux
466     dnl AC_DEFINE([_GNU_SOURCE], [], [Enable GNU extensions in glibc])
467 nigel 87
468 ph10 430 PCRE_STATIC_CFLAG=""
469 ph10 97 if test "x$enable_shared" = "xno" ; then
470     AC_DEFINE([PCRE_STATIC], [1], [
471     Define if linking statically (TODO: make nice with Libtool)])
472 ph10 430 PCRE_STATIC_CFLAG="-DPCRE_STATIC"
473 nigel 87 fi
474 ph10 430 AC_SUBST(PCRE_STATIC_CFLAG)
475 nigel 87
476 ph10 97 # Here is where pcre specific defines are handled
477 nigel 87
478 ph10 666 if test "$enable_jit" = "yes"; then
479     AC_DEFINE([SUPPORT_JIT], [], [
480     Define to enable support for Just-In-Time compiling.])
481     fi
482    
483 ph10 97 if test "$enable_utf8" = "yes"; then
484     AC_DEFINE([SUPPORT_UTF8], [], [
485 ph10 391 Define to enable support for the UTF-8 Unicode encoding. This will
486     work even in an EBCDIC environment, but it is incompatible with
487     the EBCDIC macro. That is, PCRE can support *either* EBCDIC code
488     *or* ASCII/UTF-8, but not both at once.])
489 nigel 87 fi
490    
491 ph10 97 if test "$enable_unicode_properties" = "yes"; then
492     AC_DEFINE([SUPPORT_UCP], [], [
493 ph10 666 Define to enable support for Unicode properties.])
494 ph10 97 fi
495 nigel 87
496 ph10 97 if test "$enable_stack_for_recursion" = "no"; then
497     AC_DEFINE([NO_RECURSE], [], [
498     PCRE uses recursive function calls to handle backtracking while
499 ph10 127 matching. This can sometimes be a problem on systems that have
500 ph10 100 stacks of limited size. Define NO_RECURSE to get a version that
501 ph10 97 doesn't use recursion in the match() function; instead it creates
502     its own stack by steam using pcre_recurse_malloc() to obtain memory
503     from the heap. For more detail, see the comments and other stuff
504     just above the match() function. On systems that support it,
505     "configure" can be used to set this in the Makefile
506     (use --disable-stack-for-recursion).])
507 nigel 87 fi
508    
509 ph10 286 if test "$enable_pcregrep_libz" = "yes"; then
510     AC_DEFINE([SUPPORT_LIBZ], [], [
511     Define to allow pcregrep to be linked with libz, so that it is
512     able to handle .gz files.])
513     fi
514    
515     if test "$enable_pcregrep_libbz2" = "yes"; then
516     AC_DEFINE([SUPPORT_LIBBZ2], [], [
517     Define to allow pcregrep to be linked with libbz2, so that it is
518     able to handle .bz2 files.])
519     fi
520    
521 ph10 644 if test $with_pcregrep_bufsize -lt 8192 ; then
522     with_pcregrep_bufsize="8192"
523     fi
524 ph10 654
525 ph10 644 AC_DEFINE_UNQUOTED([PCREGREP_BUFSIZE], [$with_pcregrep_bufsize], [
526     The value of PCREGREP_BUFSIZE determines the size of buffer used by
527     pcregrep to hold parts of the file it is searching. On systems that
528     support it, "configure" can be used to override the default, which is
529     8192. This is also the minimum value. The actual amount of memory used by
530     pcregrep is three times this number, because it allows for the buffering of
531     "before" and "after" lines.])
532    
533 ph10 287 if test "$enable_pcretest_libreadline" = "yes"; then
534     AC_DEFINE([SUPPORT_LIBREADLINE], [], [
535     Define to allow pcretest to be linked with libreadline.])
536 ph10 289 fi
537 ph10 287
538 ph10 97 AC_DEFINE_UNQUOTED([NEWLINE], [$ac_pcre_newline_value], [
539 ph10 111 The value of NEWLINE determines the newline character sequence. On
540 ph10 231 systems that support it, "configure" can be used to override the
541     default, which is 10. The possible values are 10 (LF), 13 (CR),
542     3338 (CRLF), -1 (ANY), or -2 (ANYCRLF).])
543 nigel 87
544 ph10 231 if test "$enable_bsr_anycrlf" = "yes"; then
545     AC_DEFINE([BSR_ANYCRLF], [], [
546     By default, the \R escape sequence matches any Unicode line ending
547     character or sequence of characters. If BSR_ANYCRLF is defined, this is
548     changed so that backslash-R matches only CR, LF, or CRLF. The build-
549     time default can be overridden by the user of PCRE at runtime. On
550     systems that support it, "configure" can be used to override the
551     default.])
552     fi
553    
554 ph10 97 AC_DEFINE_UNQUOTED([LINK_SIZE], [$with_link_size], [
555     The value of LINK_SIZE determines the number of bytes used to store
556     links as offsets within the compiled regex. The default is 2, which
557     allows for compiled patterns up to 64K long. This covers the vast
558     majority of cases. However, PCRE can also be compiled to use 3 or 4
559     bytes instead. This allows for longer patterns in extreme cases. On
560     systems that support it, "configure" can be used to override this default.])
561 nigel 87
562 ph10 97 AC_DEFINE_UNQUOTED([POSIX_MALLOC_THRESHOLD], [$with_posix_malloc_threshold], [
563     When calling PCRE via the POSIX interface, additional working storage
564     is required for holding the pointers to capturing substrings because
565     PCRE requires three integers per substring, whereas the POSIX
566     interface provides only two. If the number of expected substrings is
567     small, the wrapper function uses space on the stack, because this is
568     faster than using malloc() for each call. The threshold above which
569     the stack is no longer used is defined by POSIX_MALLOC_THRESHOLD. On
570     systems that support it, "configure" can be used to override this
571     default.])
572 nigel 91
573 ph10 97 AC_DEFINE_UNQUOTED([MATCH_LIMIT], [$with_match_limit], [
574     The value of MATCH_LIMIT determines the default number of times the
575     internal match() function can be called during a single execution of
576 ph10 100 pcre_exec(). There is a runtime interface for setting a different
577 ph10 97 limit. The limit exists in order to catch runaway regular
578     expressions that take for ever to determine that they do not match.
579     The default is set very large so that it does not accidentally catch
580     legitimate cases. On systems that support it, "configure" can be
581     used to override this default default.])
582 nigel 91
583 ph10 97 AC_DEFINE_UNQUOTED([MATCH_LIMIT_RECURSION], [$with_match_limit_recursion], [
584     The above limit applies to all calls of match(), whether or not they
585     increase the recursion depth. In some environments it is desirable
586     to limit the depth of recursive calls of match() more strictly, in
587     order to restrict the maximum amount of stack (or heap, if
588     NO_RECURSE is defined) that is used. The value of
589     MATCH_LIMIT_RECURSION applies only to recursive calls of match(). To
590     have any useful effect, it must be less than the value of
591 ph10 111 MATCH_LIMIT. The default is to use the same value as MATCH_LIMIT.
592     There is a runtime method for setting a different limit. On systems
593 ph10 100 that support it, "configure" can be used to override the default.])
594 nigel 93
595 ph10 97 AC_DEFINE([MAX_NAME_SIZE], [32], [
596     This limit is parameterized just in case anybody ever wants to
597     change it. Care must be taken if it is increased, because it guards
598     against integer overflow caused by enormously large patterns.])
599 nigel 93
600 ph10 97 AC_DEFINE([MAX_NAME_COUNT], [10000], [
601     This limit is parameterized just in case anybody ever wants to
602     change it. Care must be taken if it is increased, because it guards
603     against integer overflow caused by enormously large patterns.])
604 nigel 87
605 ph10 145 AH_VERBATIM([PCRE_EXP_DEFN], [
606 ph10 97 /* If you are compiling for a system other than a Unix-like system or
607     Win32, and it needs some magic to be inserted before the definition
608     of a function that is exported by the library, define this macro to
609     contain the relevant magic. If you do not define this macro, it
610     defaults to "extern" for a C compiler and "extern C" for a C++
611     compiler on non-Win32 systems. This macro apears at the start of
612     every exported function that is part of the external API. It does
613     not appear on functions that are "external" in the C sense, but
614     which are internal to the library. */
615 ph10 145 #undef PCRE_EXP_DEFN])
616 nigel 87
617 ph10 97 if test "$enable_ebcdic" = "yes"; then
618     AC_DEFINE_UNQUOTED([EBCDIC], [], [
619     If you are compiling for a system that uses EBCDIC instead of ASCII
620     character codes, define this macro as 1. On systems that can use
621 ph10 391 "configure", this can be done via --enable-ebcdic. PCRE will then
622 ph10 392 assume that all input strings are in EBCDIC. If you do not define
623     this macro, PCRE will assume input strings are ASCII or UTF-8 Unicode.
624 ph10 391 It is not possible to build a version of PCRE that supports both
625     EBCDIC and UTF-8.])
626 nigel 87 fi
627    
628 ph10 97 # Platform specific issues
629     NO_UNDEFINED=
630     EXPORT_ALL_SYMBOLS=
631     case $host_os in
632     cygwin* | mingw* )
633     if test X"$enable_shared" = Xyes; then
634     NO_UNDEFINED="-no-undefined"
635     EXPORT_ALL_SYMBOLS="-Wl,--export-all-symbols"
636     fi
637     ;;
638     esac
639 nigel 87
640 ph10 97 # The extra LDFLAGS for each particular library
641     # (Note: The libpcre*_version bits are m4 variables, assigned above)
642 nigel 87
643 ph10 330 EXTRA_LIBPCRE_LDFLAGS="$EXTRA_LIBPCRE_LDFLAGS \
644     $NO_UNDEFINED -version-info libpcre_version"
645 nigel 87
646 ph10 330 EXTRA_LIBPCREPOSIX_LDFLAGS="$EXTRA_LIBPCREPOSIX_LDFLAGS \
647     $NO_UNDEFINED -version-info libpcreposix_version"
648 nigel 87
649 ph10 330 EXTRA_LIBPCRECPP_LDFLAGS="$EXTRA_LIBPCRECPP_LDFLAGS \
650     $NO_UNDEFINED -version-info libpcrecpp_version \
651     $EXPORT_ALL_SYMBOLS"
652 nigel 87
653 ph10 97 AC_SUBST(EXTRA_LIBPCRE_LDFLAGS)
654     AC_SUBST(EXTRA_LIBPCREPOSIX_LDFLAGS)
655     AC_SUBST(EXTRA_LIBPCRECPP_LDFLAGS)
656 nigel 87
657 ph10 97 # When we run 'make distcheck', use these arguments.
658 ph10 666 DISTCHECK_CONFIGURE_FLAGS="--enable-jit --enable-cpp --enable-unicode-properties"
659 ph10 97 AC_SUBST(DISTCHECK_CONFIGURE_FLAGS)
660 nigel 87
661 ph10 286 # Check that, if --enable-pcregrep-libz or --enable-pcregrep-libbz2 is
662 ph10 376 # specified, the relevant library is available.
663 ph10 286
664     if test "$enable_pcregrep_libz" = "yes"; then
665     if test "$HAVE_ZLIB_H" != "1"; then
666     echo "** Cannot --enable-pcregrep-libz because zlib.h was not found"
667     exit 1
668     fi
669     if test "$HAVE_LIBZ" != "1"; then
670     echo "** Cannot --enable-pcregrep-libz because libz was not found"
671     exit 1
672     fi
673 ph10 376 LIBZ="-lz"
674 ph10 286 fi
675 ph10 376 AC_SUBST(LIBZ)
676 ph10 286
677     if test "$enable_pcregrep_libbz2" = "yes"; then
678     if test "$HAVE_BZLIB_H" != "1"; then
679     echo "** Cannot --enable-pcregrep-libbz2 because bzlib.h was not found"
680     exit 1
681     fi
682     if test "$HAVE_LIBBZ2" != "1"; then
683     echo "** Cannot --enable-pcregrep-libbz2 because libbz2 was not found"
684     exit 1
685     fi
686 ph10 376 LIBBZ2="-lbz2"
687 ph10 286 fi
688 ph10 376 AC_SUBST(LIBBZ2)
689 ph10 286
690 ph10 287 # Similarly for --enable-pcretest-readline
691    
692     if test "$enable_pcretest_libreadline" = "yes"; then
693     if test "$HAVE_READLINE_H" != "1"; then
694     echo "** Cannot --enable-pcretest-readline because readline/readline.h was not found."
695     exit 1
696     fi
697     if test "$HAVE_HISTORY_H" != "1"; then
698     echo "** Cannot --enable-pcretest-readline because readline/history.h was not found."
699     exit 1
700     fi
701 ph10 376 LIBREADLINE="-lreadline"
702 ph10 289 fi
703 ph10 376 AC_SUBST(LIBREADLINE)
704 ph10 287
705 ph10 97 # Produce these files, in addition to config.h.
706     AC_CONFIG_FILES(
707     Makefile
708     libpcre.pc
709 ph10 423 libpcreposix.pc
710 ph10 97 libpcrecpp.pc
711     pcre-config
712     pcre.h
713     pcre_stringpiece.h
714     pcrecpparg.h
715 nigel 87 )
716    
717 ph10 97 # Make the generated script files executable.
718 ph10 137 AC_CONFIG_COMMANDS([script-chmod], [chmod a+x pcre-config])
719 nigel 87
720 ph10 128 # Make sure that pcre_chartables.c is removed in case the method for
721     # creating it was changed by reconfiguration.
722 ph10 137 AC_CONFIG_COMMANDS([delete-old-chartables], [rm -f pcre_chartables.c])
723 ph10 128
724 ph10 137 AC_OUTPUT
725 ph10 128
726 ph10 97 # Print out a nice little message after configure is run displaying your
727     # chosen options.
728 ph10 286
729 ph10 97 cat <<EOF
730 nigel 87
731 ph10 97 $PACKAGE-$VERSION configuration summary:
732 nigel 87
733 ph10 287 Install prefix .................. : ${prefix}
734     C preprocessor .................. : ${CPP}
735     C compiler ...................... : ${CC}
736     C++ preprocessor ................ : ${CXXCPP}
737     C++ compiler .................... : ${CXX}
738     Linker .......................... : ${LD}
739     C preprocessor flags ............ : ${CPPFLAGS}
740     C compiler flags ................ : ${CFLAGS}
741     C++ compiler flags .............. : ${CXXFLAGS}
742     Linker flags .................... : ${LDFLAGS}
743     Extra libraries ................. : ${LIBS}
744 ph10 289
745 ph10 287 Build C++ library ............... : ${enable_cpp}
746 ph10 666 Enable JIT compiling support .... : ${enable_jit}
747 ph10 287 Enable UTF-8 support ............ : ${enable_utf8}
748     Unicode properties .............. : ${enable_unicode_properties}
749     Newline char/sequence ........... : ${enable_newline}
750     \R matches only ANYCRLF ......... : ${enable_bsr_anycrlf}
751     EBCDIC coding ................... : ${enable_ebcdic}
752     Rebuild char tables ............. : ${enable_rebuild_chartables}
753     Use stack recursion ............. : ${enable_stack_for_recursion}
754     POSIX mem threshold ............. : ${with_posix_malloc_threshold}
755     Internal link size .............. : ${with_link_size}
756     Match limit ..................... : ${with_match_limit}
757     Match limit recursion ........... : ${with_match_limit_recursion}
758     Build shared libs ............... : ${enable_shared}
759     Build static libs ............... : ${enable_static}
760 ph10 654 Buffer size for pcregrep ........ : ${with_pcregrep_bufsize}
761 ph10 287 Link pcregrep with libz ......... : ${enable_pcregrep_libz}
762     Link pcregrep with libbz2 ....... : ${enable_pcregrep_libbz2}
763 ph10 289 Link pcretest with libreadline .. : ${enable_pcretest_libreadline}
764 nigel 87
765 ph10 97 EOF
766 nigel 87
767 ph10 97 dnl end configure.ac

Properties

Name Value
svn:eol-style native
svn:keywords "Author Date Id Revision Url"

webmaster@exim.org
ViewVC Help
Powered by ViewVC 1.1.12