Allow using pcre with cross-compiling (pcre-config got fixed; fixes #1986)
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2511 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
57066345e4
commit
cbec37396d
1
NEWS
1
NEWS
|
@ -46,6 +46,7 @@ NEWS
|
|||
* Backup errno for later usage (reported by Guido Reina via mailinglist)
|
||||
* Improve FastCGI performance (fixes #1999)
|
||||
* Workaround broken operating systems: check for trailing '/' in filenames (fixes #1989)
|
||||
* Allow using pcre with cross-compiling (pcre-config got fixed; fixes #1986)
|
||||
|
||||
- 1.4.22 - 2009-03-07
|
||||
* Fix wrong lua type for CACHE_MISS/CACHE_HIT in mod_cml (fixes #533)
|
||||
|
|
|
@ -250,7 +250,7 @@ AC_ARG_WITH(pcre, AC_HELP_STRING([--with-pcre],[Enable pcre support (default yes
|
|||
[WITH_PCRE=$withval],[WITH_PCRE=yes])
|
||||
AC_MSG_RESULT([$WITH_PCRE])
|
||||
|
||||
if test "x$cross_compiling" = xno -a "$WITH_PCRE" != "no"; then
|
||||
if test "$WITH_PCRE" != "no"; then
|
||||
AC_PATH_PROG(PCRECONFIG, pcre-config)
|
||||
|
||||
if test x"$PCRECONFIG" != x; then
|
||||
|
|
Loading…
Reference in New Issue