mirror of
https://github.com/X11Libre/xf86-video-wsfb.git
synced 2026-03-24 01:25:29 +00:00
copyright. The version is 0.1.0 based on what was in wsfb_driver.c.
In wsfb_driver.c, renamed VERSION to WSFB_VERSION so doesn't conflict with
VERSION from new makefile.
Tested under NetBSD using wsdisplay on vesafb.
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 "$@"
|