diff options
author | Keith Packard <keithp@keithp.com> | 2013-11-04 19:01:26 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-11-04 19:01:26 -0800 |
commit | 903a058370645ea075ea98d380fd565efb6160c9 (patch) | |
tree | 61ddbcb6778b63798b6949a92f20d7a6430f4ff8 /hw | |
parent | aaf0e29619196a283fee7ead2020a91032d84f48 (diff) |
hw/xfree86: Link libdri3 only when DRI3 is defined
Don't attempt to link non-existant libraries...
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xfree86/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/hw/xfree86/Makefile.am b/hw/xfree86/Makefile.am index eea16a851..485386fc5 100644 --- a/hw/xfree86/Makefile.am +++ b/hw/xfree86/Makefile.am @@ -9,6 +9,11 @@ DRI2_SUBDIR = dri2 DRI2_LIB = dri2/libdri2.la endif +if DRI3 +DRI3_BUILDDIR = $(top_builddir)/dri3 +DRI3_LIB = $(DRI3_BUILDDIR)/libdri3.la +endif + if XF86UTILS XF86UTILS_SUBDIR = utils endif @@ -59,7 +64,7 @@ LOCAL_LIBS = \ dixmods/libxorgxkb.la \ $(DRI_LIB) \ $(DRI2_LIB) \ - $(top_builddir)/dri3/libdri3.la \ + $(DRI3_LIB) \ $(top_builddir)/miext/sync/libsync.la \ $(top_builddir)/mi/libmi.la \ $(top_builddir)/os/libos.la |