Re: [Plib-devel] configure fails GL test due to dependency on libXiand libXmu
Brought to you by:
sjbaker
From: Fay, J. F Dr C. U. A. 46 S. <joh...@eg...> - 2009-05-18 17:52:51
|
OK, I've put that change into SVN. It's revision 2157. Interestingly, the examples don't build "right out of the box." It can't find "freeglut" on my system. That's probably a local problem to me. John F. Fay Technical Fellow Jacobs Technology TEAS Group 850-883-1294 -----Original Message----- From: Melchior FRANZ [mailto:mf...@us...] Sent: Monday, May 18, 2009 12:07 PM To: pli...@li... Subject: Re: [Plib-devel] configure fails GL test due to dependency on libXiand libXmu * Fay, John F Dr CTR USAF AFMC 46 SK -- Monday 18 May 2009: > I have passed the "./configure" step and did not see any error messages about > "libXmu" or "libXi". Do you have those two libraries on your system? Works here as well, but several people have reported this problem and Anton GOMEZ once offered a solution for it: * Anton Gomez -- Monday 17 March 2008: | The problem in this installation was libxi-dev and libxmu-dev packages where | not installed. But also, by replacing line 279 in config.in | LIBS="$LIBS $X_PRE_LIBS -lXi -lXmu -lXext -lX11 $X_EXTRA_LIBS -lm" | | to something like this: | LIBS="$LIBS $X_PRE_LIBS $X_LIBS $X_EXTRA_LIBS -lm" | | The compilation went smooth as silk. Maybe those libs are not really needed? This seems like a sensible change. X_LIBS is defined in any case, as it's use just one line further up. m. diff --git a/configure.in b/configure.in index d4b5c74..0d119cd 100644 --- a/configure.in +++ b/configure.in @@ -276,7 +276,7 @@ case "${host}" in LDFLAGS="$LDFLAGS $X_LIBS" - LIBS="$LIBS $X_PRE_LIBS -lXi -lXmu -lXext -lX11 $X_EXTRA_LIBS -lm" + LIBS="$LIBS $X_PRE_LIBS $X_LIBS $X_EXTRA_LIBS -lm" dnl ========================================================= dnl if test "x$x_includes" != "x"; then ------------------------------------------------------------------------ ------ Crystal Reports - New Free Runtime and 30 Day Trial Check out the new simplified licensing option that enables unlimited royalty-free distribution of the report engine for externally facing server and web deployment. http://p.sf.net/sfu/businessobjects _______________________________________________ plib-devel mailing list pli...@li... https://lists.sourceforge.net/lists/listinfo/plib-devel |