diff options
author | Derick Rethans <derick@php.net> | 2001-11-18 12:01:54 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2001-11-18 12:01:54 +0000 |
commit | a72dce7da90a9e1cdb34913ad294d6f3ce267fd1 (patch) | |
tree | ef50db097c42e074709de81e6b3ca8c595ce69cf /ext/ncurses | |
parent | fc3906e93acaeecb97be2e5cf795680e65485a3b (diff) | |
download | php-git-a72dce7da90a9e1cdb34913ad294d6f3ce267fd1.tar.gz |
- Fix build on FreeBSD (patch by Markus Fischer)
Diffstat (limited to 'ext/ncurses')
-rw-r--r-- | ext/ncurses/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ncurses/config.m4 b/ext/ncurses/config.m4 index 818724ef6b..46498df186 100644 --- a/ext/ncurses/config.m4 +++ b/ext/ncurses/config.m4 @@ -32,7 +32,7 @@ if test "$PHP_NCURSES" != "no"; then LIBNAME=ncurses LIBSYMBOL=initscr old_LIBS=$LIBS - LIBS="$LIBS -L$NCURSES_DIR/lib -lm -ldl" + LIBS="$LIBS -L$NCURSES_DIR/lib -lm" AC_CHECK_LIB($LIBNAME, $LIBSYMBOL, [AC_DEFINE(HAVE_NCURSESLIB,1,[ ])], [AC_MSG_ERROR(wrong ncurses lib version or lib not found)]) LIBS=$old_LIBS |