wiki:Xorg7ProtocolHeaders

Version 19 (modified by Ivan Wagner, 12 years ago) ( diff )

change automated build command to 7.6.2

Xorg 7

You should edit the Automated build scripts. here is xorg 7.5 build scripts. and make sure that you already configured 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.6-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.6-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.

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.