136 |
ac_pcre_newline=any) |
ac_pcre_newline=any) |
137 |
enable_newline="$ac_pcre_newline" |
enable_newline="$ac_pcre_newline" |
138 |
|
|
139 |
|
# Handle --enable-bsr-anycrlf |
140 |
|
AC_ARG_ENABLE(bsr-anycrlf, |
141 |
|
AS_HELP_STRING([--enable-bsr-anycrlf], |
142 |
|
[\R matches only CR, LF, CRLF by default]), |
143 |
|
, enable_bsr_anycrlf=no) |
144 |
|
|
145 |
# Handle --enable-ebcdic |
# Handle --enable-ebcdic |
146 |
AC_ARG_ENABLE(ebcdic, |
AC_ARG_ENABLE(ebcdic, |
147 |
AS_HELP_STRING([--enable-ebcdic], |
AS_HELP_STRING([--enable-ebcdic], |
327 |
|
|
328 |
AC_DEFINE_UNQUOTED([NEWLINE], [$ac_pcre_newline_value], [ |
AC_DEFINE_UNQUOTED([NEWLINE], [$ac_pcre_newline_value], [ |
329 |
The value of NEWLINE determines the newline character sequence. On |
The value of NEWLINE determines the newline character sequence. On |
330 |
Unix-like systems, "configure" can be used to override the default, |
systems that support it, "configure" can be used to override the |
331 |
which is 10. The possible values are 10 (LF), 13 (CR), 3338 (CRLF), |
default, which is 10. The possible values are 10 (LF), 13 (CR), |
332 |
-1 (ANY), or -2 (ANYCRLF).]) |
3338 (CRLF), -1 (ANY), or -2 (ANYCRLF).]) |
333 |
|
|
334 |
|
if test "$enable_bsr_anycrlf" = "yes"; then |
335 |
|
AC_DEFINE([BSR_ANYCRLF], [], [ |
336 |
|
By default, the \R escape sequence matches any Unicode line ending |
337 |
|
character or sequence of characters. If BSR_ANYCRLF is defined, this is |
338 |
|
changed so that backslash-R matches only CR, LF, or CRLF. The build- |
339 |
|
time default can be overridden by the user of PCRE at runtime. On |
340 |
|
systems that support it, "configure" can be used to override the |
341 |
|
default.]) |
342 |
|
fi |
343 |
|
|
344 |
AC_DEFINE_UNQUOTED([LINK_SIZE], [$with_link_size], [ |
AC_DEFINE_UNQUOTED([LINK_SIZE], [$with_link_size], [ |
345 |
The value of LINK_SIZE determines the number of bytes used to store |
The value of LINK_SIZE determines the number of bytes used to store |
467 |
|
|
468 |
$PACKAGE-$VERSION configuration summary: |
$PACKAGE-$VERSION configuration summary: |
469 |
|
|
470 |
Install prefix ......... : ${prefix} |
Install prefix ........... : ${prefix} |
471 |
C preprocessor ......... : ${CPP} |
C preprocessor ........... : ${CPP} |
472 |
C compiler ............. : ${CC} |
C compiler ............... : ${CC} |
473 |
C++ preprocessor ....... : ${CXXCPP} |
C++ preprocessor ......... : ${CXXCPP} |
474 |
C++ compiler ........... : ${CXX} |
C++ compiler ............. : ${CXX} |
475 |
Linker ................. : ${LD} |
Linker ................... : ${LD} |
476 |
C preprocessor flags ... : ${CPPFLAGS} |
C preprocessor flags ..... : ${CPPFLAGS} |
477 |
C compiler flags ....... : ${CFLAGS} |
C compiler flags ......... : ${CFLAGS} |
478 |
C++ compiler flags ..... : ${CXXFLAGS} |
C++ compiler flags ....... : ${CXXFLAGS} |
479 |
Linker flags ........... : ${LDFLAGS} |
Linker flags ............. : ${LDFLAGS} |
480 |
Extra libraries ........ : ${LIBS} |
Extra libraries .......... : ${LIBS} |
481 |
|
|
482 |
Build C++ library ...... : ${enable_cpp} |
Build C++ library ........ : ${enable_cpp} |
483 |
Enable UTF-8 support ... : ${enable_utf8} |
Enable UTF-8 support ..... : ${enable_utf8} |
484 |
Unicode properties ..... : ${enable_unicode_properties} |
Unicode properties ....... : ${enable_unicode_properties} |
485 |
Newline char/sequence .. : ${enable_newline} |
Newline char/sequence .... : ${enable_newline} |
486 |
EBCDIC coding .......... : ${enable_ebcdic} |
\R matches only ANYCRLF .. : ${enable_bsr_anycrlf} |
487 |
Rebuild char tables .... : ${enable_rebuild_chartables} |
EBCDIC coding ............ : ${enable_ebcdic} |
488 |
Use stack recursion .... : ${enable_stack_for_recursion} |
Rebuild char tables ...... : ${enable_rebuild_chartables} |
489 |
POSIX mem threshold .... : ${with_posix_malloc_threshold} |
Use stack recursion ...... : ${enable_stack_for_recursion} |
490 |
Internal link size ..... : ${with_link_size} |
POSIX mem threshold ...... : ${with_posix_malloc_threshold} |
491 |
Match limit ............ : ${with_match_limit} |
Internal link size ....... : ${with_link_size} |
492 |
Match limit recursion .. : ${with_match_limit_recursion} |
Match limit .............. : ${with_match_limit} |
493 |
Build shared libs ...... : ${enable_shared} |
Match limit recursion .... : ${with_match_limit_recursion} |
494 |
Build static libs ...... : ${enable_static} |
Build shared libs ........ : ${enable_shared} |
495 |
|
Build static libs ........ : ${enable_static} |
496 |
|
|
497 |
EOF |
EOF |
498 |
|
|