mirror of
https://github.com/X11Libre/xf86-video-ast.git
synced 2026-03-24 01:24:41 +00:00
Replace "Xv.h" with <X11/extensions/Xv.h> and add #include "config.h" for
modular build Strip ^M out of ast_accel.c
13 lines
195 B
Bash
Executable File
13 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 "$@"
|