wiki:Xorg7ProtocolHeaders

Version 15 (modified by Michael Ploujnikov, 15 years ago) ( diff )

fix baces

Xorg 7

You should edit the Automated build scripts. here is xorg 7.2 build scripts. and make sure that you already configure your "PKG_CONFIG_PATH"

Protocol Headers

Installation Script

  • Start a subshell, that exits on error, so that the loop does not continue if a package fails to build.
bash -e
  • Automated build of all packages. Comment out any packages that you do not want to install.
for package in $(grep -v '^#' ../proto-7.2.wget)
do
  packagedir=${package%.tar.bz2}
  tar -xf $package
  cd $packagedir
  ./configure $XORG_CONFIG
  make install
  cd ..
  rm -rf $packagedir
done 2>&1 | tee -a ../proto-7.2-compile.log

Comments on individual protocols

applewmproto is for the Apple rootless window management extension, and generally considered to only be relevant to OSX.

windowswmproto is for win32.

xproxymanagementprotocol is now deprecated, use e.g. ssh instead, but do not leave it out because several Xorg applications require it.

There is further information on dependencies at http://gentoo.linuxhowtos.org/portage/x11-proto - like any wiki it may or may not be accurate.

Up
Top

Note: See TracWiki for help on using the wiki.