diff options
| author | foobar <sniper@php.net> | 2001-09-05 13:18:09 +0000 |
|---|---|---|
| committer | foobar <sniper@php.net> | 2001-09-05 13:18:09 +0000 |
| commit | 032b2631292008146b3a9c779f5dfc717a9ec82d (patch) | |
| tree | 65977d797f6e0237a557a80b24a841871caa8e54 /ext/fdf | |
| parent | d082fb373d4a2b1cdd336cab5bf4ca574803cdfb (diff) | |
| download | php-git-032b2631292008146b3a9c779f5dfc717a9ec82d.tar.gz | |
Fixes commit / link problems with certain compilers.
# Please use PHP_CHECK_LIBRARY() always instead of AC_CHECK_LIB
# if you need to pass extra libs/libpaths to the test.
Diffstat (limited to 'ext/fdf')
| -rw-r--r-- | ext/fdf/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fdf/config.m4 b/ext/fdf/config.m4 index 139458c8c5..b6569b6697 100644 --- a/ext/fdf/config.m4 +++ b/ext/fdf/config.m4 @@ -19,7 +19,7 @@ if test "$PHP_FDFTK" != "no"; then FDFLIBRARY="" for i in fdftk FdfTk; do - AC_CHECK_LIB($i, FDFOpen, [FDFLIBRARY=$i], [], [-L$FDFTK_DIR/lib -lm]) + PHP_CHECK_LIBRARY($i, FDFOpen, [FDFLIBRARY=$i], [], [-L$FDFTK_DIR/lib -lm]) done if test -z "$FDFLIBRARY"; then |
