> From: "Robert Porter" <[EMAIL PROTECTED]> > To: [email protected] > Subject: Chapter 25 - Xorg-6.9.0 buid problem > > I am unable to build Xorg for some reason. I am using a 'by the book' > LFS system on a Pentium D with integrated intel graphics (82865G) and > have installed all the required dependencies listed in the BLFS book. My > host.def and the tail of my Xorg-compile log is as follows. > > > /* Begin Xorg host.def file */ > > #define DefaultGcc2i386Opt -O2 -fno-strength-reduce \ > -fno-strict-aliasing -march=i686 > > #define HasFreetype2 YES > #define HasFontconfig YES > #define HasExpat YES > #define HasLibpng YES > #define HasZlib YES > > #define XF86CardDrivers mga glint nv tga s3virge sis rendition \ > neomagic i740 tdfx savage \ > cirrus vmware tseng trident chips apm \ > GlideDriver fbdev i128 \ > ati DevelDrivers ark \ > cyrix siliconmotion vesa vga \ > XF86OSCardDrivers XF86ExtraCardDrivers > > #define XF86ExtraCardDrivers i810 > > #define XInput drivers mouse keyboard > > #define BuildXterm YES > > #define XprtServer NO > #define BuildXprintClients NO > > /* End Xorg host.def. file */ > > make[3]: Leaving directory `/blfs-sources/xcbuild/include/bitmaps' > including in include/extensions... > make[3]: Entering directory `/blfs-sources/xcbuild/include/extensions' > make[3]: *** No rule to make target `drivers', needed by `includes'. > Stop. > make[3]: Leaving directory `/blfs-sources/xcbuild/include/extensions' > make[2]: *** [includes] Error 2 > make[2]: Leaving directory `/blfs-sources/xcbuild/include' > make[1]: *** [includes] Error 2 > make[1]: Leaving directory `/blfs-sources/xcbuild' > make: *** [World] Error 2 > > Any ideas? > > Also, when I write host.def it ends up in xcbuild/config/cf and not in > xc/config/cf. Is that OK?(I don't understand the whole shadow directory > thing.) > > Bob
I think I know what's wrong. You had some typos there. "XInput drivers" should be XInputDrivers. I also put host.def in xc/config/cf and made a symlink to xcbuild/config/cf. For one thing, no \ line continuation, it's a C file.. Try this: /* Begin Xorg host.def file */ #define DefaultGcc2i386Opt -O2 -fno-strength-reduce -fno-strict-aliasing -march=i686 #define HasFreetype2 YES #define HasFontconfig YES #define HasExpat YES #define HasLibpng YES #define HasZlib YES #define XF86CardDrivers i810 i740 vmware fbdev DevelDrivers vesa vga XF86OSCardDrivers XF86ExtraCardDrivers #define XInput drivers mouse keyboard #define BuildXterm YES #define BuildCyrillicFonts NO #define XprtServer NO #define BuildXprintClients NO /* End Xorg host.def. file */ Lauri -- _______________________________________________ Surf the Web in a faster, safer and easier way: Download Opera 9 at http://www.opera.com Powered by Outblaze -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
