[liblouis-liblouisxml] [liblouis commit] r92 - trunk

  • From: codesite-noreply@xxxxxxxxxx
  • To: liblouis-liblouisxml@xxxxxxxxxxxxx
  • Date: Tue, 20 Jan 2009 23:41:23 +0000

Author: jamie@xxxxxxxxxxx
Date: Tue Jan 20 04:19:47 2009
New Revision: 92

Modified:
   trunk/ChangeLog
   trunk/configure.ac

Log:
* configure.ac: Include -avoid-version in LDFLAGS if the host is mingw or cygwin so that the version suffix is not included in the dll filename.

Modified: trunk/ChangeLog
==============================================================================
--- trunk/ChangeLog     (original)
+++ trunk/ChangeLog     Tue Jan 20 04:19:47 2009
@@ -2,6 +2,7 @@

* liblouis/lou_translateString.c: Fix the bug whereby the next character in the input was skipped if doing compbrlAtCursor and the first character of the word was a capital letter. * liblouis/compileTranslationTable.c: lou_version() now returns PACKAGE_VERSION as defined in louiscfg.h. + * configure.ac: Include -avoid-version in LDFLAGS if the host is mingw or cygwin so that the version suffix is not included in the dll filename.

 2009-01-19  Christian Egli  <christian.egli@xxxxxxxx>


Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac  (original)
+++ trunk/configure.ac  Tue Jan 20 04:19:47 2009
@@ -79,6 +79,12 @@
       ;;
 esac

+case $host in
+  *mingw* | *cygwin*)
+    LDFLAGS="$LDFLAGS -avoid-version"
+  ;;
+esac
+
 AC_CONFIG_FILES([Makefile
                  doc/Makefile
                  liblouis/Makefile
For a description of the software and to download it go to
http://www.jjb-software.com

Other related posts:

  • » [liblouis-liblouisxml] [liblouis commit] r92 - trunk - codesite-noreply