diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2005-10-07 11:30:41 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2005-10-07 11:30:41 +0000 |
commit | 76f35f988f37430e3d45e4d14fac68f0d0871cc4 (patch) | |
tree | b2e1fea751fb14bc77e2beb825276fb5854ebe58 /gst/debug | |
parent | 216762e86b8413d94204fb5d8ee23eb0ec360cb3 (diff) |
configure.ac: Add check for mmap
Original commit message from CVS:
* configure.ac:
Add check for mmap
* gst/debug/Makefile.am:
Only compile efence plugin on systems that have mmap.
Diffstat (limited to 'gst/debug')
-rw-r--r-- | gst/debug/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gst/debug/Makefile.am b/gst/debug/Makefile.am index b3b2911f..da3b3a29 100644 --- a/gst/debug/Makefile.am +++ b/gst/debug/Makefile.am @@ -1,4 +1,10 @@ -plugin_LTLIBRARIES = libgstefence.la libgstdebug.la libgstnavigationtest.la +if GST_HAVE_MMAP + EFENCE_PLUGIN=libgstefence.la +else + EFENCE_PLUGIN= +endif + +plugin_LTLIBRARIES = $(EFENCE_PLUGIN) libgstdebug.la libgstnavigationtest.la noinst_HEADERS = efence.h gstnavigationtest.h gstnavseek.h tests.h |