diff options
author | Mark Kettenis <mark.kettenis@xs4all.nl> | 2008-02-26 17:26:50 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2008-02-26 17:26:50 -0800 |
commit | fdc25cb0ca7d479051cee66a032f9ee1b68db98a (patch) | |
tree | ee62099b66e0d35477ba316b162aea97720196c0 /src/ch7017 | |
parent | e55d86f654aa9dd4951b441636c8ca4b37786daf (diff) |
Bug #14649: Fix build if pciaccess headers are not with other xorg headers.
We failed to include the pciaccess header flags in our build. Even if the
server was to include those flags for us, it would leave us broken for the
tools-only case, and it's easier to just put the flags everywhere so we avoid
future copy'n'paste mistakes.
Diffstat (limited to 'src/ch7017')
-rw-r--r-- | src/ch7017/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ch7017/Makefile.am b/src/ch7017/Makefile.am index 71c50853..fef4d373 100644 --- a/src/ch7017/Makefile.am +++ b/src/ch7017/Makefile.am @@ -3,7 +3,8 @@ # -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@ +AM_CFLAGS = @WARN_CFLAGS@ @XMODES_CFLAGS@ @XORG_CFLAGS@ @DRI_CFLAGS@ \ + @PCIACCESS_CFLAGS@ ch7017_la_LTLIBRARIES = ch7017.la ch7017_la_LDFLAGS = -module -avoid-version |