php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #1655 --with-system-regex wrong when using apxs
Submitted: 1999-07-03 17:27 UTC Modified: 1999-07-03 17:34 UTC
From: lee at arco dot met dot fu-berlin dot de Assigned:
Status: Closed Package: Installation problem
PHP Version: 3.0.11 OS: Linux 2.2.10
Private report: No CVE-ID: None
 [1999-07-03 17:27 UTC] lee at arco dot met dot fu-berlin dot de
configure.in, line 488 checks the answers from apxs
if apxs says nothing about HSREGEX, configure erraneously assumes
to use HSREGEX

fix:
change line 488 of configure.in from
if test -z "`$APXS -q CFLAGS | grep USE_HSREGEX`"; then
to
if test -n "`$APXS -q CFLAGS | grep USE_HSREGEX`"; then

and rerun autoconf

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1999-07-03 17:34 UTC] sas at cvs dot php dot net
That's fixed in CVS.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 20:01:29 2024 UTC