Commit Graph

45 Commits

Author SHA1 Message Date
Alan Coopersmith 850c05161d Update configure.ac bug URL for gitlab migration
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-11-25 13:56:38 -08:00
Aaron Plattner 87249af5fa Remove DGA support
DGA was so 2004.

Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Bob Terek <xorg@esoterek.com>
Tested-by: Antoine Martin <antoine@nagafix.co.uk>
2017-08-05 16:46:24 -07:00
Aaron Plattner 12e3e20301 Delete XV stuff
As far as I can tell, this was never implemented or used.

Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Bob Terek <xorg@esoterek.com>
Tested-by: Antoine Martin <antoine@nagafix.co.uk>
2017-08-05 16:46:14 -07:00
Julien Cristau 4a6df6b4ee xf86-video-dummy 0.3.8
Signed-off-by: Julien Cristau <jcristau@debian.org>
2016-12-14 22:00:03 +01:00
Julien Cristau 52a6346c63 configure: require xorg-server 1.4.99.901
dixChangeWindowProperty was introduced in that release.

Signed-off-by: Julien Cristau <jcristau@debian.org>
2016-12-14 22:00:03 +01:00
Alan Coopersmith 85402253d0 configure: Drop AM_MAINTAINER_MODE
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-06-04 17:44:00 -07:00
Julien Cristau 4160421c64 Bump to 0.3.7
Signed-off-by: Julien Cristau <jcristau@debian.org>
2013-09-09 19:45:36 +02:00
Dave Airlie fee6b520a6 dummy: bump to 0.3.6 for release
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-07-18 19:39:32 +10:00
Jeremy Huddleston 02918fd534 Don't use XFreeXDGA to determine DGA support
If our server supports DGA and we want to build the dummy driver without it,
XFreeXDGA will be defined by the server and will be picked up rather than
our configuration option.  This change forces us to honor our configuration
hoice.

Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2012-01-09 01:00:40 -08:00
Cyril Brulebois bccf37f052 dummy 0.3.5
Signed-off-by: Cyril Brulebois <kibi@debian.org>
2012-01-01 07:15:36 +01:00
Jeremy Huddleston dd9be3b218 Add a configure option to disable dga
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Reviewed-by: Jamey Sharp <jamey@minilop.net>
Signed-off-by: Jamey Sharp <jamey@minilop.net>
2011-09-14 15:48:13 -05:00
Gaetan Nadon f8dc281042 config: add comments for main statements 2010-07-21 20:12:43 -04:00
Gaetan Nadon ca77f09bd6 config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-21 16:07:00 -04:00
Gaetan Nadon 945a161930 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-21 14:05:22 -04:00
Gaetan Nadon 8fbbafb7ed config: complete AC_INIT m4 quoting
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-21 09:27:42 -04:00
Gaetan Nadon 93898c6d62 config: remove unrequired AC_HEADER_STDC
Autoconf says:
"This macro is obsolescent, as current systems have conforming
header files. New programs need not use this macro".

Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-20 20:24:42 -04:00
Gaetan Nadon c26603e9c0 config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
AC_PROG_C_C99. This sets gcc with -std=gnu99.
If AC_PROG_CC macro is called afterwards, it resets CC to gcc.

Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-20 19:41:30 -04:00
Gaetan Nadon 839b742066 config: update AC_PREREQ statement to 2.60
Unrelated to the previous patches, the new value simply reflects
the reality that the minimum level for autoconf to configure
all x.org modules is 2.60 dated June 2006.

ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz

Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-20 18:45:18 -04:00
Dave Airlie 51642de730 dummy 0.3.4 2010-07-05 12:05:40 +10:00
Gaetan Nadon c4134a6cb6 config: move compiler flags from configure.ac to Makefile.am
CFLAGS is an automake defined variable that should not be set
by the module. It should not be AC_SUBST either, it already is.

Use AM_CFLAGS in Makefile.am. This will allow the user to override
the flags as they will be in the right order.

Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-02-08 20:08:52 -05:00
Gaetan Nadon 3370539eea config: remove unrequired '-I$(top_srcdir)/src'
The current dir is already included by default in the makefile
top_builddir = ..
DEFAULT_INCLUDES = -I. -I$(top_builddir)

Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-02-08 19:07:22 -05:00
Gaetan Nadon ea7cc253b0 config: remove unused INCLUDES='-I$(top_srcdir)/src'
This statement is redundant and not used in the makefile

Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-02-08 18:42:52 -05:00
Gaetan Nadon bff6fc2f25 config: remove unused variable XORG_INCS
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-02-08 17:45:42 -05:00
Gaetan Nadon 17f6ec36df configure.ac: sdkdir usage duplicates the sdk include dir
The sdkdir variable provides a duplicate copy of the include/xorg
directory. The statement is removed as this was it's only used.
In the Makefile, there is now only one instance of the -I sdkdir
The sdkdir is provided in XORG_CFLAGS.

Acked-by: Dan Nicholson <dbn.lists@gmail.com>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2009-12-29 19:31:57 -05:00
Michael Olbrich 86a7baa415 configure.ac: remove wrong include path. #24675
Don't use $(prefix)/include as include path. It can break things
when cross-compiling with DESTDIR and prefix=/usr

Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2009-12-10 14:54:00 -05:00
Adam Jackson 483db0376d dummy 0.3.3
Signed-off-by: Adam Jackson <ajax@redhat.com>
2009-12-01 10:51:30 -05:00
Gaetan Nadon 2fc665b979 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
Add missing INSTALL file. Use standard GNU file on building tarball
README may have been updated
Remove AUTHORS file as it is empty and no content available yet.
Remove NEWS file as it is empty and no content available yet.
2009-11-19 11:28:42 -05:00
Gaetan Nadon 27946998e6 Several driver modules do not have a ChangeLog target in Makefile.am #23814
The git generated ChangeLog replaces the hand written one.
Update configure.ac to xorg-macros level 1.3.
Use XORG_DEFAULT_OPTIONS which replaces four XORG_* macros
Update Makefile.am to add ChangeLog target if missing
Remove ChangeLog from EXTRA_DIST or *CLEAN variables
This is a pre-req for the INSTALL_CMD
2009-11-19 11:28:42 -05:00
Adam Jackson ecf513ae11 dummy 0.3.2 2009-07-02 11:08:25 -04:00
Julien Cristau d876e71996 dummy 0.3.1 2009-01-25 23:25:33 +01:00
Adam Jackson 0dcdce106d dummy 0.3.0 2008-03-19 17:31:28 -04:00
Adam Jackson 7432eaf48b Unlibcwrap. Bump server version requirement. Bump to 1.1.0. 2006-04-07 18:50:19 +00:00
Kevin E Martin 474af88079 Update package version for X11R7 release. 2005-12-21 02:29:59 +00:00
Kevin E Martin d2cff58c1e Update package version number for final X11R7 release candidate. 2005-12-15 00:24:17 +00:00
Kevin E Martin 39f1e4449a Update package version number for X11R7 RC3 release. 2005-12-03 05:49:33 +00:00
Kevin E Martin 1b47f2e8f4 Remove extraneous AC_MSG_RESULT. 2005-12-02 02:16:08 +00:00
Adam Jackson c2c245b184 Only build dlloader modules by default. 2005-11-29 23:29:58 +00:00
Kevin E Martin ec562722d0 Add check for DGA extension to fix issues when building with separate build
roots.
2005-11-15 05:42:03 +00:00
Kevin E Martin 1073cc5a2b Update package version number for X11R7 RC2 release. 2005-11-09 21:15:14 +00:00
Kevin E Martin 5ced29a35f Update pkgcheck depedencies to work with separate build roots. 2005-11-01 15:08:52 +00:00
Kevin E Martin ffa97f2346 Update package version number for RC1 release. 2005-10-19 02:48:02 +00:00
Alan Coopersmith 4bb6048d8d Use sed & cpp to substitute variables in driver man pages 2005-10-17 00:09:02 +00:00
Søren Sandmann Pedersen d43c40d00a Don\'t lose existing CFLAGS in all the input drivers and some of the video
drivers
2005-08-10 14:07:24 +00:00
Kevin E Martin ef552d7e17 Various changes preparing packages for RC0:
- Verify and update package version numbers as needed
- Implement versioning scheme
- Change bug address to point to bugzilla bug entry form
- Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
    reenable it)
- Fix makedepend to use pkgconfig and pass distcheck
- Update build script to build macros first
- Update modular Xorg version
2005-07-29 21:22:43 +00:00
Søren Sandmann Pedersen 30a2cce4b6 Build system for dummy video driver 2005-07-13 21:45:21 +00:00