/[pcre]/code/branches/pcre16/configure.ac
ViewVC logotype

Contents of /code/branches/pcre16/configure.ac

Parent Directory Parent Directory | Revision Log Revision Log


Revision 757 - (show annotations) (download)
Mon Nov 21 11:44:55 2011 UTC (18 months, 4 weeks ago) by ph10
File size: 33053 byte(s)
More 16-bit patches

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