php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #1007 configure doesn't properly substitute for FDFTK_LIBS when configuring with APXS
Submitted: 1998-12-26 09:56 UTC Modified: 1998-12-26 21:02 UTC
From: csaia at wtower dot com Assigned:
Status: Closed Package: Compile Failure
PHP Version: 3.0.6 OS: Linux 2.0.37ac2
Private report: No CVE-ID: None
 [1998-12-26 09:56 UTC] csaia at wtower dot com
The configure.in script creates a variable called FDFLIB_LIBS to store the location of the FDF Library.  However, when creating the APXS_LDLIBS variable for the Makefile, configure(.in) tries to substitute in FDFTK_LIBS instead of FDFLIB_LIBS.  Since there is no variable FDFTK_LIBS, the Makefile will contain "@FDFTK_LIBS@" in the make variable APXS_LDLIBS.  This will cause the make to fail when building PHP with APXS because ld will be looking for a file called @FDFTK_LIBS@.

One possible solution: modify line 243 of the configure.in script to use @FDFLIB_LIBS@, instead of @FDFTK_LIBS@.  Rerun autoconf.  Reconfigure and make.  Serves many.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1998-12-26 21:02 UTC] rasmus
Fixed
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed May 15 19:01:34 2024 UTC