# HG changeset patch # User Paul Aurich # Date 1250739609 0 # Node ID 9fa1de6d508a53ef47d8a8abc4849e4099a38339 # Parent cf533027c3be6c99ce540b8215d7637f1f58793d Properly detect libpanel by including ncurses libs in linking test. Patch from Brad "brad0" Smith. Closes #9972. diff -r cf533027c3be -r 9fa1de6d508a ChangeLog --- a/ChangeLog Wed Aug 19 22:42:11 2009 +0000 +++ b/ChangeLog Thu Aug 20 03:40:09 2009 +0000 @@ -7,6 +7,9 @@ * Fix connecting to XMPP domains with no SRV records from Pidgin on Windows. + Finch: + * Properly detect libpanel on OpenBSD. (Brad Smith) + version 2.6.1 (08/18/2009): * Fix a crash when some users send you a link in a Yahoo IM * Fix compilation with GTK+ < 2.6.0 diff -r cf533027c3be -r 9fa1de6d508a configure.ac --- a/configure.ac Wed Aug 19 22:42:11 2009 +0000 +++ b/configure.ac Thu Aug 20 03:40:09 2009 +0000 @@ -632,7 +632,8 @@ [ac_ncurses_includes="$withval"], [ac_ncurses_includes=""]) if test "x$enable_consoleui" = "xyes"; then AC_CHECK_LIB(ncursesw, initscr, [GNT_LIBS="-lncursesw"], [enable_consoleui=no]) - AC_CHECK_LIB(panelw, update_panels, [GNT_LIBS="$GNT_LIBS -lpanelw"], [enable_consoleui=no]) + AC_CHECK_LIB(panelw, update_panels, [GNT_LIBS="$GNT_LIBS -lpanelw"], + [enable_consoleui=no], [$GNT_LIBS]) if test "x$enable_consoleui" = "xyes"; then dnl # Some distros put the headers in ncursesw/, some don't @@ -675,7 +676,8 @@ # ncursesw was not found. Look for plain old ncurses enable_consoleui=yes AC_CHECK_LIB(ncurses, initscr, [GNT_LIBS="-lncurses"], [enable_consoleui=no]) - AC_CHECK_LIB(panel, update_panels, [GNT_LIBS="$GNT_LIBS -lpanel"], [enable_consoleui=no]) + AC_CHECK_LIB(panel, update_panels, [GNT_LIBS="$GNT_LIBS -lpanel"], + [enable_consoleui=no], [$GNT_LIBS]) AC_DEFINE(NO_WIDECHAR, 1, [Define to 1 if you don't have wide-character support.]) if test x"$ac_ncurses_includes" != "x"; then GNT_CFLAGS="-I$ac_ncurses_includes"