debrix-driver-cyrix ChangeLog,NONE,1.1 configure.ac,NONE,1.1
Adam Jackson <xserver-commit-u7BhqnqprCWvj1b/[email protected]>
| Newsgroups | gmane.comp.freedesktop.xserver.cvs |
|---|---|
| Message-ID | <[email protected]> |
Committed by: ajax Update of /cvs/xserver/debrix-driver-cyrix In directory pdx:/home/ajax/tmp/cyrix Added Files: ChangeLog configure.ac Log Message: Autotool a few more drivers. --- NEW FILE: ChangeLog --- 2004-07-01 Adam Jackson <[email protected]> * configure.ac, cyrix/Makefile.am: Finish autotooling. * cyrix/cyrix_driver.c: Fix header locations. 2004-06-25 Adam Jackson <[email protected]> * Initial import from monolithic tree. * Makefile.am, autogen.sh: First pass at autotooling. --- NEW FILE: configure.ac --- # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) AC_INIT([debrix-driver-cyrix], 0.1.0, [[email protected]], debrix-driver-cyrix) AC_CONFIG_SRCDIR([Makefile.am]) AM_INIT_AUTOMAKE([dist-bzip2]) AM_MAINTAINER_MODE AM_CONFIG_HEADER([config.h]) AC_CONFIG_AUX_DIR(.) # Checks for programs. AC_PROG_LIBTOOL AC_PROG_CC # Checks for pkg-config packages PKG_CHECK_MODULES(XORG, debrix) driverdir=$(pkg-config --variable=driverdir debrix) AC_SUBST([driverdir]) sdkdir=$(pkg-config --variable=sdkdir debrix) CFLAGS="$XORG_CFLAGS -include debrix.h "'-I$(top_srcdir)/cyrix' INCLUDES="$XORG_INCS -I${sdkdir}" AC_SUBST([CFLAGS]) AC_SUBST([INCLUDES]) # Checks for libraries. # Checks for header files. AC_HEADER_STDC AC_OUTPUT([Makefile cyrix/Makefile])