mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
popt fixes
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@48 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
42092bacbe
commit
18ecebe10d
28
configure.in
28
configure.in
@ -183,27 +183,6 @@ AM_CONDITIONAL(BUILD_SERVERTEST, test "x$want_servertest" = "xyes")
|
||||
AC_DEFINE_UNQUOTED(SYSCONFDIR, "$prefix/etc")
|
||||
AC_DEFINE_UNQUOTED(PLUGINSDIR, "$prefix/lib/irssi/plugins")
|
||||
|
||||
dnl **
|
||||
dnl ** check for popt.h
|
||||
dnl **
|
||||
if test "x$popt_dir" = "x"; then
|
||||
AC_CHECK_HEADER(popt.h, [
|
||||
AC_DEFINE(HAVE_POPT_H)
|
||||
PROG_LIBS="$PROG_LIBS -lpopt"
|
||||
])
|
||||
else
|
||||
poptlib=-L$popt_dir/lib
|
||||
CFLAGS="$CFLAGS -I$popt_dir/include"
|
||||
PROG_LIBS="$PROG_LIBS $poptlib -lpopt"
|
||||
if test -f $popt_dir/include/popt.h; then
|
||||
AC_DEFINE(HAVE_POPT_H)
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "x$POPT_LIBS" = "x"; then
|
||||
POPT_LIBS="../lib-popt/libpopt.a"
|
||||
fi
|
||||
|
||||
dnl **
|
||||
dnl ** check for libPropList
|
||||
dnl **
|
||||
@ -281,8 +260,9 @@ else
|
||||
want_gnome_panel="no"
|
||||
AC_DEFINE(HAVE_GTK)
|
||||
AM_PATH_GTK(1.2.0)
|
||||
GUI_CFLAGS="$GTK_CFLAGS $POPT_CFLAGS"
|
||||
GUI_LIBS="$GTK_LIBS $POPT_LIBS"
|
||||
GUI_CFLAGS="$GTK_CFLAGS"
|
||||
GUI_LIBS="$GTK_LIBS"
|
||||
PROG_LIBS="$PROG_LIBS ../lib-popt/libpopt.a"
|
||||
|
||||
if test "x$want_imlib" = "xyes"; then
|
||||
AM_PATH_GDK_IMLIB(, [define_imlib=true])
|
||||
@ -354,7 +334,7 @@ if test "x$want_ipv6" = "xyes"; then
|
||||
AC_DEFINE(HAVE_IPV6)
|
||||
fi
|
||||
|
||||
PROG_LIBS="$PROG_LIBS $POPT_LIBS $GLIB_LIBS"
|
||||
PROG_LIBS="$PROG_LIBS $GLIB_LIBS"
|
||||
AC_SUBST(PROG_LIBS)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user