mirror of
https://gitlab.freedesktop.org/xorg/lib/libx11.git
synced 2025-12-20 07:00:12 +01:00
- For Xcomposite and Xdamage, don't link the build system out of the xc tree - Link the public X11 headers into their own directory - Add links to XKeysymDB and XErrorDB - Add links to all the Xlib man pages - Add links to the lcUniConv subdirectory - Conditionally include config.h in Xlib source
12 lines
195 B
Bash
Executable file
12 lines
195 B
Bash
Executable file
#! /bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
ORIGDIR=`pwd`
|
|
cd $srcdir
|
|
|
|
autoreconf -v --install || exit 1
|
|
cd $ORIGDIR || exit $?
|
|
|
|
$srcdir/configure --enable-maintainer-mode "$@"
|