Re: Another garnome on Solaris x86 issue - scrollkeeper bug



On Sun, Sep 28, 2003 at 08:31:22PM -0400, Carson Gaspar wrote:
> FYI, scrollkeeper 0.3.12 is just hopeless on non-GNU platforms. The 
> included intl library doesn't build, and the Makefile.in files don't 
> include $(INTLLIB) in the link commands of targets that use the intl 
> functions. So if your libc doesn't include GNU gettext, you're hosed.

I had the same problem on darwin.  I added a few line to configure to
get it working, until I submit a proper patch.  I've modified the patch
to also add -lintl on solaris.


-- 
GPG public key:
http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x9D5B8762
diff --speed-large-files --minimal -Nru scrollkeeper-0.3.12.orig/configure scrollkeeper-0.3.12/configure
--- scrollkeeper-0.3.12.orig/configure	Wed Jan 22 22:12:13 2003
+++ scrollkeeper-0.3.12/configure	Sun Sep 28 19:43:40 2003
@@ -8785,12 +8785,16 @@
 XSLT_LIBS=`$XSLT_CONFIG --libs`
 XSLT_CFLAGS=`$XSLT_CONFIG --cflags`
 
-
+case "$host_os" in
+	darwin6*)
+	XSLT_LIBS="$XSLT_LIBS -lintl"
+	;;
+esac
 
 case "$host_os" in
    solaris*)
 	HOST_TYPE=-DSOLARIS
-
+	XSLT_LIBS="$XSLT_LIBS -lintl"
         ;;
    *)
 	echo "$as_me:$LINENO: checking for docbook-dtd412-xml" >&5


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]