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
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: csaia at wtower dot com
New email:
PHP Version: OS:

 

 [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: Mon May 20 11:01:34 2024 UTC