dependency_libs?

2006-04-30 Thread Andreas Volz
Hi, I build my library with GNU autotools and link to it with the pkg-config --uninstalled option without installing it. In this case a la-file (libmhgui.la) is created. I've some problems to understand how libtool generated the dependency_libs field. In my package is a --with-x/--without-x option

Re: noinst_bindir

2006-04-30 Thread Bob Rossi
On Sat, Apr 29, 2006 at 08:34:53PM -0700, Russ Allbery wrote: > Bob Rossi <[EMAIL PROTECTED]> writes: > > > I have > > > noinst_bin_PROGRAMS = gdbmi_driver > > noinst_bindir = $(top_builddir)/progs > > Try using $(abs_top_builddir) instead. I've always had bad luck with > relative paths and an

Re: noinst_bindir

2006-04-30 Thread Olly Betts
On 2006-04-30, Bob Rossi <[EMAIL PROTECTED]> wrote: > Unfortunatly, that doesn't work either. > > test -z "/progs" || mkdir -p -- "/progs" > mkdir: cannot create directory `/progs': Permission denied abs_top_builddir isn't set in the Makefile (with automake 1.8.5, and I can't see a ChangeLog entry

Re: noinst_bindir

2006-04-30 Thread Bob Rossi
On Sun, Apr 30, 2006 at 12:05:57PM +, Olly Betts wrote: > On 2006-04-30, Bob Rossi <[EMAIL PROTECTED]> wrote: > > Unfortunatly, that doesn't work either. > > > > test -z "/progs" || mkdir -p -- "/progs" > > mkdir: cannot create directory `/progs': Permission denied > > abs_top_builddir isn't s

Re: noinst_bindir

2006-04-30 Thread Olly Betts
On Sun, Apr 30, 2006 at 08:18:34AM -0400, Bob Rossi wrote: > Is there any difference between using abs_top_builddir vs top_builddir? The former has an absolute path, while the latter may not (in fact for builddir I think it never will; for srcdir, the non-abs_ versions may also in fact be absolute

fail.at failing on HP-UX

2006-04-30 Thread Albert Chin
I'm getting the following test failure from HEAD on HP-UX 11.23/PA: $ gmake check-local TESTSUITE_FLAGS="15 -v" ... fail.at:54: if $LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o a a.$OBJEXT; then (exit 1); else :; fi stderr: /usr/ccs/bin/ld: Unsatisfied symbols: main (Not referenced y

Re: fail.at failing on HP-UX

2006-04-30 Thread Ralf Wildenhues
Hi Albert, Thanks for the report. * Albert Chin wrote on Sun, Apr 30, 2006 at 05:00:46PM CEST: > I'm getting the following test failure from HEAD on HP-UX 11.23/PA: > However, even though there is no main, `a' is still created. How do we > work around this? Yes. I didn't finish this when I saw

Re: noinst_bindir

2006-04-30 Thread Russ Allbery
Bob Rossi <[EMAIL PROTECTED]> writes: > noinst_bin_PROGRAMS = gdbmi_driver > noinst_bindir = $(abs_top_builddir)/progs > Unfortunatly, that doesn't work either. > test -z "/progs" || mkdir -p -- "/progs" > mkdir: cannot create directory `/progs': Permission denied Well, that makes it look like

Re: dependency_libs?

2006-04-30 Thread Russ Allbery
Andreas Volz <[EMAIL PROTECTED]> writes: > I build my library with GNU autotools and link to it with the pkg-config > --uninstalled option without installing it. In this case a la-file > (libmhgui.la) is created. I've some problems to understand how libtool > generated the dependency_libs field. I

Re: dependency_libs?

2006-04-30 Thread Bob Friesenhahn
On Sun, 30 Apr 2006, Russ Allbery wrote: # Libraries that this one depends upon. dependency_libs=' /home/andreas/src/MakeHuman/cvs/animorph/src/libanimorph.la -l glut -lGLU -lGL -lpng I expect that one of glut, GLU, and GL depend on the X libraries, and hence when libtool resolves transitive

Re: fail.at failing on HP-UX

2006-04-30 Thread Albert Chin
On Sun, Apr 30, 2006 at 05:09:23PM +0200, Ralf Wildenhues wrote: > * Albert Chin wrote on Sun, Apr 30, 2006 at 05:00:46PM CEST: > > I'm getting the following test failure from HEAD on HP-UX 11.23/PA: > > > However, even though there is no main, `a' is still created. How do we > > work around this?