diff options
author | foobar <sniper@php.net> | 2002-07-07 00:47:16 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-07-07 00:47:16 +0000 |
commit | b989395478c2cd326d8f562fd60a3ef681d4c1ea (patch) | |
tree | 31d9a739bbc435f279f9c2fbb7bc99471e9b7640 /acinclude.m4 | |
parent | 08f4a57cad0f22f9cf7149ad9096c026b43b5f88 (diff) | |
download | php-git-b989395478c2cd326d8f562fd60a3ef681d4c1ea.tar.gz |
PHP_EVAL_LIBLINE must not reverse the order of libraries.
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 2347889a3f..dd0f336e56 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -255,7 +255,7 @@ AC_DEFUN(PHP_EVAL_LIBLINE,[ case $ac_i in -l*) ac_ii=`echo $ac_i|cut -c 3-` - PHP_ADD_LIBRARY($ac_ii,,$2) + PHP_ADD_LIBRARY($ac_ii,1,$2) ;; -L*) ac_ii=`echo $ac_i|cut -c 3-` |