2010/12/13 Marcin Mirosław <[email protected]>: > W dniu 2010-12-13 19:17, Michael Biebl pisze: >> 2010/12/13 Marcin Mirosław <[email protected]>: >>> Hello. >>> Libee doesn't compile with make -jN, i get error: >>> libtool: link: cannot find the library `../src/libee.la' or unhandled >>> argument `../src/libee.la' >> >> could you paste the complete build log, please > > > I run: make -j . Buil log is attached.
A simple patch like the attached one should suffice. Problem is, that automake does not generate a dependency if you add it to _LIBADD via variable substitution. Rainer, I also noticed that you defined LIBEE_CFLAGS in configure.ac *and* src/Makefile.am? Cheers, Michael -- Why is it that all of the instruments seeking intelligent life in the universe are pointed away from Earth?
diff --git a/src/Makefile.am b/src/Makefile.am index dc23440..ffe3eb9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -38,6 +38,6 @@ libee_la_LDFLAGS = -version-info 0:0:0 convert_SOURCES = convert.c convert_CPPFLAGS = -I$(top_srcdir) $(LIBEE_CFLAGS) $(LIBESTR_CFLAGS) $(LIBXML2_CFLAGS) -convert_LDADD = $(LIBEE_LIBS) $(LIBXML2_LIBS) $(LIBESTR_LIBS) +convert_LDADD = libee.la $(LIBXML2_LIBS) $(LIBESTR_LIBS) include_HEADERS =
_______________________________________________ rsyslog mailing list http://lists.adiscon.net/mailman/listinfo/rsyslog http://www.rsyslog.com

