diff options
author | foobar <sniper@php.net> | 2002-03-27 15:30:52 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-03-27 15:30:52 +0000 |
commit | 2d8c05bb38b0d8cafa2292f25da02cb69d68f308 (patch) | |
tree | 2a3763b22af2771aebf3edca35a57980a82f5e9d | |
parent | f870804c452c87719169eaaf49f50c8eb4acd3d2 (diff) | |
download | php-git-2d8c05bb38b0d8cafa2292f25da02cb69d68f308.tar.gz |
- Fixed bug: #16203
# unconditionally adding libraries which are not even neeeded is evil.
-rw-r--r-- | ext/ming/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ming/config.m4 b/ext/ming/config.m4 index e5e45a11e8..243c071ac3 100644 --- a/ext/ming/config.m4 +++ b/ext/ming/config.m4 @@ -21,7 +21,7 @@ if test "$PHP_MING" != "no"; then ],[ AC_MSG_ERROR([Ming library 0.2a or greater required.]) ],[ - -L$MING_DIR/lib -lm -ldl + -L$MING_DIR/lib ]) PHP_ADD_INCLUDE($MING_DIR/include) |