Index: [thread] [date] [subject] [author]
  From: Moses DeJong <dejong@cs.umn.edu>
  To  : ggi-develop@eskimo.com
  Date: Tue, 23 Feb 1999 05:15:35 -0600

patch for libggi configure problem

Hello,

I tried to compile libggi but it would not pass the test
for libgii in the configure script. After some looking
I found that the problem was with the compiler and my
non default install dir for libgii. This patch fixed
the problem. I was using the --with-gii argument to
configure but that was not enough.


--- copy_configure.in   Tue Feb 23 03:57:05 1999
+++ configure.in        Tue Feb 23 04:22:10 1999
@@ -69,7 +69,7 @@
 [  --with-gii=DIR          use the LibGII installed with prefix DIR],
 CFLAGS="$CFLAGS -I$withval/include"
 CPPFLAGS="$CPPFLAGS -I$withval/include"
-LDFLAGS="$LDFLAGS -L$withval/lib")
+LDFLAGS="$LDFLAGS -L$withval/lib -R$withval/lib")
 
 AC_ARG_ENABLE(confdir,
 [  --enable-confdir=NAME   specify the directory where to put libggi.conf


I hope that helps
Mo DeJong
dejong at cs.umn.edu

Index: [thread] [date] [subject] [author]