summaryrefslogtreecommitdiff
path: root/ext/swf/config.m4
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2000-05-18 00:39:00 +0000
committerSterling Hughes <sterling@php.net>2000-05-18 00:39:00 +0000
commita8bb2a86b1c67b287ba7ea79cae69412b35de897 (patch)
treefd2417db54f1a6a4930d486c3bcb5dee4be432cd /ext/swf/config.m4
parent09915a1597cf6a36b9035a46aba2eda740fe8486 (diff)
downloadphp-git-a8bb2a86b1c67b287ba7ea79cae69412b35de897.tar.gz
Make the SWF module compile again + 1 stylistic change.
Diffstat (limited to 'ext/swf/config.m4')
-rw-r--r--ext/swf/config.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/swf/config.m4 b/ext/swf/config.m4
index b02dcf26b6..9c60e18e4b 100644
--- a/ext/swf/config.m4
+++ b/ext/swf/config.m4
@@ -9,7 +9,7 @@ PHP_ARG_WITH(swf, for libswf support,
if test "$PHP_SWF" != "no"; then
for i in /usr/local /usr $PHP_SWF; do
- if test -r $i/lib/libswf.a; then
+ if test -r $i/libswf.a; then
SWF_DIR=$i
fi
done
@@ -21,7 +21,7 @@ if test "$PHP_SWF" != "no"; then
AC_ADD_INCLUDE($SWF_DIR/include)
PHP_SUBST(SWF_SHARED_LIBADD)
- AC_ADD_LIBRARY_WITH_PATH(swf, $SWF_DIR/lib, SWF_SHARED_LIBADD)
+ AC_ADD_LIBRARY_WITH_PATH(swf, $SWF_DIR, SWF_SHARED_LIBADD)
AC_DEFINE(HAVE_SWF,1,[ ])
PHP_EXTENSION(swf, $ext_shared)