diff options
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/configure.in b/configure.in index ed0f0d051..2cad641a6 100644 --- a/configure.in +++ b/configure.in @@ -312,7 +312,27 @@ case "$host_or_hostalias" in xv_lib="libXv.so" fi ;; + i386-*-freebsd*) + AC_CHECK_FILE(/usr/local/include/iconv.h, + GICONV_BSD_LIBS="-lgiconv" + no_BSDiconv="no", + [ no_BSDiconv="yes" + echo + echo "****************************************************************" + echo "* You need to install a recent version of the port 'libiconv' *" + echo "* (in /usr/ports/converters/libiconv). *" + echo "* The library in this port is needed to successfully compile *" + echo "* libsputext plugin. *" + echo "****************************************************************" + echo + ],) + ;; + *) + no_BSDiconv="no" + ;; esac +AC_SUBST(GICONV_BSD_LIBS) +AM_CONDITIONAL(HAVE_GICONV, test x$no_BSDiconv != "xyes") AC_ARG_WITH(xv-path,[ --with-xv-path=path Where $xv_lib is installed], |
