]> git.lyx.org Git - features.git/commitdiff
- avoid testing for fortran when setting up libtool
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 14 Aug 2006 20:20:36 +0000 (20:20 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 14 Aug 2006 20:20:36 +0000 (20:20 +0000)
- test for iconv library

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14681 a592a061-630c-0410-9148-cb99ea01b6c8

configure.ac

index be1657855a8dd713622209bec3d4a9d6697fdbe1..b91706d8c2f7f1b7c86d6b9a3aa89edb92374a8e 100644 (file)
@@ -144,6 +144,11 @@ AC_SUBST(AIKSAURUS_LIBS)
 LYX_USE_INCLUDED_BOOST
 
 ### Setup libtool
+dnl Dirty trick ahead: disable libtool checking for a fortran compiler
+dnl see http://permalink.gmane.org/gmane.comp.gnu.libtool.general/6699
+dnl Note that this will reportedly not be needed with libtool 2.0
+m4_undefine([AC_PROG_F77])
+m4_defun([AC_PROG_F77],[])
 AC_DISABLE_SHARED
 AC_LIBTOOL_WIN32_DLL
 #AM_PROG_LIBTOOL
@@ -234,6 +239,12 @@ if echo $prefix |grep ' ' >/dev/null 2>/dev/null ; then
   prefix=`pwd`/installprefix
 fi
 
+### We need iconv for unicode support
+AM_ICONV
+if test "$am_cv_func_iconv" = no; then
+  LYX_ERROR([Cannot find required library iconv])
+fi
+
 ### Setup GNU gettext
 dnl GNU gettext is written in C
 AC_LANG_PUSH(C)