diff options
author | Colin Hill <colin.james.hill@gmail.com> | 2011-01-11 18:02:42 -0800 |
---|---|---|
committer | Colin Hill <colin.james.hill@gmail.com> | 2011-01-11 18:02:42 -0800 |
commit | 8aa3071eb7d84bb56889636143cf3e297debe913 (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /configure.ac | |
parent | d0c4b019d310e7607c2c746c3203b397b6b92b05 (diff) |
Clear
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/configure.ac b/configure.ac deleted file mode 100644 index c21f77b..0000000 --- a/configure.ac +++ /dev/null @@ -1,56 +0,0 @@ -dnl -dnl Permission is hereby granted, free of charge, to any person obtaining a -dnl copy of this software and associated documentation files (the "Software"), -dnl to deal in the Software without restriction, including without limitation -dnl the rights to use, copy, modify, merge, publish, distribute, sublicense, -dnl and/or sell copies of the Software, and to permit persons to whom the -dnl Software is furnished to do so, subject to the following conditions: -dnl -dnl The above copyright notice and this permission notice (including the next -dnl paragraph) shall be included in all copies or substantial portions of the -dnl Software. -dnl -dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -dnl IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -dnl FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -dnl THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -dnl LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -dnl FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -dnl DEALINGS IN THE SOFTWARE. -dnl -dnl Author: Paulo Zanoni <pzanoni@mandriva.com> -dnl - -AC_PREREQ([2.65]) -AC_INIT([xf86-video-nestedv], [0.1.0], [pzanoni@mandriva.com]) -AC_CONFIG_AUX_DIR([build-aux]) -AM_INIT_AUTOMAKE([foreign -Wall -Werror dist-bzip2]) -AM_MAINTAINER_MODE -AC_PROG_CC - -# Require xorg-macros: XORG_DEFAULT_OPTIONS -m4_ifndef([XORG_MACROS_VERSION], - [m4_fatal([must install xorg-macros 1.7 or later before running autoconf/autogen])]) -XORG_MACROS_VERSION(1.7) -XORG_DEFAULT_OPTIONS - -# Initialize libtool -AC_DISABLE_STATIC -AC_PROG_LIBTOOL - -# Define a configure option for an alternate module directory -AC_ARG_WITH(xorg-module-dir, [ --with-xorg-module-dir=DIR ], - [ moduledir="$withval" ], - [ moduledir="$libdir/xorg/modules" ]) -AC_SUBST(moduledir) - -PKG_CHECK_MODULES(XORG, [xorg-server]) -PKG_CHECK_MODULES(X11, x11) -PKG_CHECK_MODULES(XEXT, xext) - -DRIVER_NAME=nestedv -AC_SUBST([DRIVR_NAME]) - -AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_FILES([Makefile src/Makefile]) -AC_OUTPUT |