PDA

View Full Version : please add libtool '.la' files to the installer


spart
04-06-03, 09:38 AM
Without those, compiling autoconf-based software will be tricky...

bwkaz
04-06-03, 11:40 AM
???

Not really, you just add -lGL -lm -lXext -lX11 -ldl to your compile command line. And since you're compiling something with a GUI, most of those will already be there -- the only one I'd ever have to worry about would be -lm, the math library.

And the way this can be done is by adding LDFLAGS+=-lGL -lm -lXext -lX11 -ldl to your Makefile.am.

Edit: Oops, somehow between the output of ldd and what I posted, Xext turned into Xm. :o