Index: [thread] [date] [subject] [author]
  From: Peter Danielsson <peter.danielsson@era-t.ericsson.se>
  To  : ggi-develop@eskimo.com
  Date: Tue, 23 Feb 1999 15:08:15 +0000

Re: patch for libggi configure problem

Marcus Sundberg wrote:
> 
> Moses DeJong wrote:
> >
> > 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
> 
> That is not portable, and also breaks the purpose of the test -
> to see if there is a working LibGII installed.
> 
> //Marcus
> --

How do this work in a cross-compile situation? 

/Peter

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