Hi!
When compiling fvwm 2.6.1 on FreeBSD I noticed that the configure script
doesn't pick up libXcursor.so properly. On FreeBSD all libraries not
installed together with the base system is located in /usr/local/lib,
instead of /lib, and ld/gcc has to be told that. This is done properly
for all other libs, but libXcursor, and the attached patch fixes that.
I'm not sure the patch is correct, but it works.
Please CC me as I'm not subscribed, and apologies if this is the wrong
place to report this.
Regards!
--
Niclas Zeising
Index: configure.ac
===================================================================
RCS file: /home/cvs/fvwm/fvwm/configure.ac,v
retrieving revision 1.69
diff -u -d -r1.69 configure.ac
--- configure.ac 16 Apr 2011 21:46:36 -0000 1.69
+++ configure.ac 4 Jun 2011 15:47:30 -0000
@@ -656,7 +656,7 @@
],[
with_xcursor=no
problem_xcursor=": Failed to detect libXcursor"
- ],)
+ ],[$X_LIBS $X_PRE_LIBS -lXext -lX11 $X_EXTRA_LIBS])
fi
AC_SUBST(Xcursor_CFLAGS)
AC_SUBST(Xcursor_LIBS)