[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: FYI: X11 fails to build in xlockmore
You wrote (in your message from Tuesday 8)
> Ok, I updated my sources, lndir'd the X sources into a work area, then
> did a "make build" in the work area. The "all" part of the build works
> fine. The "install" part of the build fails trying to link (?)
> xlockmore/xlock. Looks like it didn't include -lX11 or something like
> that.
>
The following patch that I just commited fixes it:
Index: xc/programs/xlockmore/iconfig.h
===================================================================
RCS file: /cvs/X11/xc/programs/xlockmore/iconfig.h,v
retrieving revision 1.8
diff -u -u -r1.8 iconfig.h
--- xc/programs/xlockmore/iconfig.h 1999/05/02 19:17:41 1.8
+++ xc/programs/xlockmore/iconfig.h 1999/06/11 15:35:11
@@ -377,7 +377,7 @@
BITMAPTYPE = x11
PIXMAPTYPE = x11
#else
-#if defined(FreeBSDArchitecture) || defined(NetBSDArchitecture) || defined(i386BsdArchitecture)
+#if defined(FreeBSDArchitecture) || defined(NetBSDArchitecture) || defined(OpenBSDArchitecture) || defined(i386BsdArchitecture)
SLEEPDEF = -DHAVE_USLEEP
BITMAPTYPE = bsd
PIXMAPTYPE = bsd
--
Matthieu