diff options
author | Keith Packard <keithp@neko.keithp.com> | 2007-04-19 13:15:23 -0700 |
---|---|---|
committer | Keith Packard <keithp@neko.keithp.com> | 2007-04-19 13:15:23 -0700 |
commit | cca389769001c657435f056e1f1c26b0f52a48bd (patch) | |
tree | 8ce6b6f001d4bf32dd25a122c1a015ef34496cad | |
parent | 07797fee88d6be0dfb30394a419dd86f8a3c9095 (diff) |
Clean up 1.2 xserver build support.
Convert relative X server source path to absolute. Check for local copies
of needed header files before building, rather than requiring server source.
Remove extra duplicate -I elements in AM_CFLAGS in sub directories.
-rw-r--r-- | configure.ac | 33 | ||||
-rw-r--r-- | src/ch7017/Makefile.am | 3 | ||||
-rw-r--r-- | src/ch7xxx/Makefile.am | 3 | ||||
-rw-r--r-- | src/ivch/Makefile.am | 3 | ||||
-rw-r--r-- | src/sil164/Makefile.am | 3 |
5 files changed, 25 insertions, 20 deletions
diff --git a/configure.ac b/configure.ac index 2d265530..a06d3e4b 100644 --- a/configure.ac +++ b/configure.ac @@ -131,19 +131,14 @@ if test "x$XSERVER_SOURCE" = x; then fi fi -if test "x$XMODES" = xyes; then - echo built-in mode code - AC_DEFINE(XMODES, 1,[X server has built-in mode code]) - XMODES_CFLAGS= -else - echo symlink mode code - if test "x$XSERVER_SOURCE" = x; then - AC_MSG_ERROR([Must have X server >= 1.3 source tree for mode setting code. Please specify --with-xserver-source]) - fi - XMODES_CFLAGS='-DXF86_MODES_RENAME -I$(top_srcdir)/src/modes -I$(top_srcdir)/src/parser' -fi - if test -d "$XSERVER_SOURCE"; then + case "$XSERVER_SOURCE" in + /*) + ;; + *) + XSERVER_SOURCE="`cd $XSERVER_SOURCE && pwd`" + ;; + esac if test -f src/modes/xf86Modes.h; then : else @@ -156,6 +151,20 @@ if test -d "$XSERVER_SOURCE"; then ln -sf $XSERVER_SOURCE/hw/xfree86/parser src/parser fi fi + +if test "x$XMODES" = xyes; then + AC_MSG_NOTICE([X server has new mode code]) + AC_DEFINE(XMODES, 1,[X server has built-in mode code]) + XMODES_CFLAGS= +else + if test -f src/modes/xf86Modes.h -a -f src/parser/xf86Parser.h; then + AC_MSG_NOTICE([X server is missing new mode code, using local copy]) + else + AC_MSG_ERROR([Must have X server >= 1.3 source tree for mode setting code. Please specify --with-xserver-source]) + fi + XMODES_CFLAGS='-DXF86_MODES_RENAME -I$(top_srcdir)/src -I$(top_srcdir)/src/modes -I$(top_srcdir)/src/parser' +fi + AC_SUBST([XMODES_CFLAGS]) dnl Use lots of warning flags with GCC diff --git a/src/ch7017/Makefile.am b/src/ch7017/Makefile.am index 9858941b..71c50853 100644 --- a/src/ch7017/Makefile.am +++ b/src/ch7017/Makefile.am @@ -3,8 +3,7 @@ # -avoid-version prevents gratuitous .0.0.0 version numbers on the end # _ladir passes a dummy rpath to libtool so the thing will actually link # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. -AM_CFLAGS = @WARN_CFLAGS@ @XMODES_CFLAGS@ @XORG_CFLAGS@ @DRI_CFLAGS@ \ - -I$(srcdir)/.. -I$(srcdir)/../modes +AM_CFLAGS = @WARN_CFLAGS@ @XMODES_CFLAGS@ @XORG_CFLAGS@ @DRI_CFLAGS@ ch7017_la_LTLIBRARIES = ch7017.la ch7017_la_LDFLAGS = -module -avoid-version diff --git a/src/ch7xxx/Makefile.am b/src/ch7xxx/Makefile.am index 49a5aa3e..fdf6e9e5 100644 --- a/src/ch7xxx/Makefile.am +++ b/src/ch7xxx/Makefile.am @@ -3,8 +3,7 @@ # -avoid-version prevents gratuitous .0.0.0 version numbers on the end # _ladir passes a dummy rpath to libtool so the thing will actually link # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. -AM_CFLAGS = @WARN_CFLAGS@ @XMODES_CFLAGS@ @XORG_CFLAGS@ @DRI_CFLAGS@ \ - -I$(srcdir)/.. -I$(srcdir)/../modes +AM_CFLAGS = @WARN_CFLAGS@ @XMODES_CFLAGS@ @XORG_CFLAGS@ @DRI_CFLAGS@ ch7xxx_la_LTLIBRARIES = ch7xxx.la ch7xxx_la_LDFLAGS = -module -avoid-version diff --git a/src/ivch/Makefile.am b/src/ivch/Makefile.am index cf05c018..1dc9cb35 100644 --- a/src/ivch/Makefile.am +++ b/src/ivch/Makefile.am @@ -3,8 +3,7 @@ # -avoid-version prevents gratuitous .0.0.0 version numbers on the end # _ladir passes a dummy rpath to libtool so the thing will actually link # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. -AM_CFLAGS = @WARN_CFLAGS@ @XMODES_CFLAGS@ @XORG_CFLAGS@ @DRI_CFLAGS@ \ - -I$(srcdir)/.. -I$(srcdir)/../modes +AM_CFLAGS = @WARN_CFLAGS@ @XMODES_CFLAGS@ @XORG_CFLAGS@ @DRI_CFLAGS@ ivch_la_LTLIBRARIES = ivch.la ivch_la_LDFLAGS = -module -avoid-version diff --git a/src/sil164/Makefile.am b/src/sil164/Makefile.am index de17bd05..497ee9f7 100644 --- a/src/sil164/Makefile.am +++ b/src/sil164/Makefile.am @@ -3,8 +3,7 @@ # -avoid-version prevents gratuitous .0.0.0 version numbers on the end # _ladir passes a dummy rpath to libtool so the thing will actually link # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. -AM_CFLAGS = @WARN_CFLAGS@ @XMODES_CFLAGS@ @XORG_CFLAGS@ @DRI_CFLAGS@ \ - -I$(srcdir)/.. -I$(srcdir)/../modes +AM_CFLAGS = @WARN_CFLAGS@ @XMODES_CFLAGS@ @XORG_CFLAGS@ @DRI_CFLAGS@ sil164_la_LTLIBRARIES = sil164.la sil164_la_LDFLAGS = -module -avoid-version |