| 6 |
dnl be defined as -RC2, for example. For real releases, it should be defined |
dnl be defined as -RC2, for example. For real releases, it should be defined |
| 7 |
dnl empty. |
dnl empty. |
| 8 |
|
|
| 9 |
m4_define(pcre_major, [7]) |
m4_define(pcre_major, [8]) |
| 10 |
m4_define(pcre_minor, [9]) |
m4_define(pcre_minor, [00]) |
| 11 |
m4_define(pcre_prerelease, [-RC1]) |
m4_define(pcre_prerelease, [-RC1]) |
| 12 |
m4_define(pcre_date, [2009-02-27]) |
m4_define(pcre_date, [2009-10-05]) |
| 13 |
|
|
| 14 |
# Libtool shared library interface versions (current:revision:age) |
# Libtool shared library interface versions (current:revision:age) |
| 15 |
m4_define(libpcre_version, [0:1:0]) |
m4_define(libpcre_version, [0:1:0]) |
| 379 |
# This facilitates -ansi builds under Linux |
# This facilitates -ansi builds under Linux |
| 380 |
dnl AC_DEFINE([_GNU_SOURCE], [], [Enable GNU extensions in glibc]) |
dnl AC_DEFINE([_GNU_SOURCE], [], [Enable GNU extensions in glibc]) |
| 381 |
|
|
| 382 |
|
PCRE_STATIC_CFLAG="" |
| 383 |
if test "x$enable_shared" = "xno" ; then |
if test "x$enable_shared" = "xno" ; then |
| 384 |
AC_DEFINE([PCRE_STATIC], [1], [ |
AC_DEFINE([PCRE_STATIC], [1], [ |
| 385 |
Define if linking statically (TODO: make nice with Libtool)]) |
Define if linking statically (TODO: make nice with Libtool)]) |
| 386 |
|
PCRE_STATIC_CFLAG="-DPCRE_STATIC" |
| 387 |
fi |
fi |
| 388 |
|
AC_SUBST(PCRE_STATIC_CFLAG) |
| 389 |
|
|
| 390 |
# Here is where pcre specific defines are handled |
# Here is where pcre specific defines are handled |
| 391 |
|
|
| 516 |
If you are compiling for a system that uses EBCDIC instead of ASCII |
If you are compiling for a system that uses EBCDIC instead of ASCII |
| 517 |
character codes, define this macro as 1. On systems that can use |
character codes, define this macro as 1. On systems that can use |
| 518 |
"configure", this can be done via --enable-ebcdic. PCRE will then |
"configure", this can be done via --enable-ebcdic. PCRE will then |
| 519 |
assume that all input strings are in EBCDIC. If you do not define |
assume that all input strings are in EBCDIC. If you do not define |
| 520 |
this macro, PCRE will assume input strings are ASCII or UTF-8 Unicode. |
this macro, PCRE will assume input strings are ASCII or UTF-8 Unicode. |
| 521 |
It is not possible to build a version of PCRE that supports both |
It is not possible to build a version of PCRE that supports both |
| 522 |
EBCDIC and UTF-8.]) |
EBCDIC and UTF-8.]) |
| 523 |
fi |
fi |
| 603 |
AC_CONFIG_FILES( |
AC_CONFIG_FILES( |
| 604 |
Makefile |
Makefile |
| 605 |
libpcre.pc |
libpcre.pc |
| 606 |
|
libpcreposix.pc |
| 607 |
libpcrecpp.pc |
libpcrecpp.pc |
| 608 |
pcre-config |
pcre-config |
| 609 |
pcre.h |
pcre.h |