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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: lee at arco dot met dot fu-berlin dot de
New email:
PHP Version: OS:

 

 [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

Pull Requests

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: Sun Dec 22 02:01:28 2024 UTC