[PHP-DEV] Bug #846: Problem when adding Informix libraries From: djl <email protected>
Date: 10/14/98

From: djl <email protected>
Operating system: OSF1 DGUX4.0 Alpha
PHP version: 3.0 Latest CVS (14/10/1998)
PHP Bug Type: Compile Failure
Bug description: Problem when adding Informix libraries

In configure.in, and therefore configure, there is a line like the following:

$IFX_LIBS = `esql -libs | sed -e 's/-lm//'`

It should be replaced with

$IFX_LIBS = `esql -libs | sed -e 's/-lm$//'`

One of the required Informix libraries on the OSF1 Platform is "libmach.a", seen as "-lmach". With the above sed command, "ach" is returned as a needed library instead of "-lmach". By adding the dollar sign ($), this error is corrected.

Daniel

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>