From: Jean-Marc Lasgouttes Date: Tue, 9 Jul 2002 14:12:24 +0000 (+0000) Subject: link fix from Kayvan X-Git-Tag: 1.6.10~18931 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=149c1bdfcd0df8ef35a56c8f144c97538ba65b74;p=features.git link fix from Kayvan git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4570 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/ChangeLog b/ChangeLog index 50777fc4aa..5812c34f74 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-07-04 Kayvan A. Sylvan + + * configure.in (LYX_USE_FRONTEND): The order of libraries is + now dependant on the $host variable. + 2002-07-06 Adrien Rebollo * autogen.sh: use $ACLOCAL and $AUTOHEADER instead of aclocal diff --git a/configure.in b/configure.in index ebbd6a266c..43864ca504 100644 --- a/configure.in +++ b/configure.in @@ -171,7 +171,14 @@ case "$lyx_use_frontend" in FRONTEND="xforms" FRONTEND_GUILIB="xforms/*.lo xforms/forms/*.lo" FRONTEND_INCLUDES="-I\$(srcdir)/xforms" - FRONTEND_LIBS="@XFORMS_LIB@ @XFORMS_IMAGE_LIB@ @XPM_LIB@" + case "$host" in + *cygwin) + FRONTEND_LIBS="@XFORMS_LIB@ @XFORMS_IMAGE_LIB@ @XPM_LIB@" + ;; + *) + FRONTEND_LIBS="@XFORMS_IMAGE_LIB@ @XFORMS_LIB@ @XPM_LIB@" + ;; + esac FRONTEND_INFO=`cat <