mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
When configure found libiconv, it helps to also have it use that information
to properly link against it. Problem spotted and fix tested by iCER on #icecast. git-svn-id: https://svn.xiph.org/trunk/ezstream@13632 0101bb08-14d6-0310-b084-bc0e0c8e3800
This commit is contained in:
parent
d5043d9270
commit
de17e12fb8
12
configure.in
12
configure.in
@ -126,7 +126,19 @@ if test x"$ac_cv_header_signal_h" = "xyes"; then
|
||||
AC_DEFINE(HAVE_SIGNALS, 1, [Define whether we have BSD signals])
|
||||
], [], [#include <signal.h>])
|
||||
fi
|
||||
|
||||
LIBICONV=""
|
||||
LTLIBICONV=""
|
||||
INCICONV=""
|
||||
AM_ICONV
|
||||
EZ_LIBICONV=""
|
||||
if test -n "$LTLIBICONV"; then
|
||||
EZ_LIBICONV="$LTLIBICONV"
|
||||
else
|
||||
EZ_LIBICONV="$LIBICONV"
|
||||
fi
|
||||
XIPH_VAR_PREPEND([XIPH_LIBS], [$EZ_LIBICONV])
|
||||
XIPH_VAR_APPEND([XIPH_CPPFLAGS], [$INCICONV])
|
||||
|
||||
|
||||
dnl CONFIGURE OPTIONS
|
||||
|
Loading…
Reference in New Issue
Block a user