diff options
author | foobar <sniper@php.net> | 2003-08-05 11:17:01 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-08-05 11:17:01 +0000 |
commit | 22dba46f2d086422a21c130ab909364237e595e7 (patch) | |
tree | 877e3f5a0124b401b9f9057f874526ee367df9ff | |
parent | 90b29aa076f1a5ef1b36b20cef925aac932d66b5 (diff) | |
download | php-git-22dba46f2d086422a21c130ab909364237e595e7.tar.gz |
- Fixed bug #24936 (ext/fdf is not linked properly when compiled as shared extension). (Jani)
-rw-r--r-- | ext/fdf/config.m4 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/fdf/config.m4 b/ext/fdf/config.m4 index 31d3e2d70f..2ed695e17e 100644 --- a/ext/fdf/config.m4 +++ b/ext/fdf/config.m4 @@ -8,16 +8,16 @@ PHP_ARG_WITH(fdftk, for FDF support, if test "$PHP_FDFTK" != "no"; then case $host_os in - aix*) + aix*[)] libtype=aix ;; - solaris* ) + solaris*[)] libtype=solaris ;; - linux*) + linux*[)] libtype=linux ;; - *) + *[)] AC_MSG_ERROR([The fdf toolkit is not available for $host_os.]) ;; esac @@ -65,9 +65,9 @@ if test "$PHP_FDFTK" != "no"; then AC_MSG_ERROR(no usable fdf library found) fi - PHP_ADD_LIBRARY_WITH_PATH($FDFLIBRARY, $FDFTK_LIB_DIR, FDFTK_SHARED_LIBADD) + PHP_ADD_LIBRARY_WITH_PATH($FDFLIBRARY, $FDFTK_LIB_DIR, FDF_SHARED_LIBADD) PHP_NEW_EXTENSION(fdf, fdf.c, $ext_shared) - PHP_SUBST(FDFTK_SHARED_LIBADD) + PHP_SUBST(FDF_SHARED_LIBADD) AC_DEFINE(HAVE_FDFLIB,1,[ ]) fi |