diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-07-26 16:51:15 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-07-26 16:51:15 +0000 |
commit | 9fa9eb9ac7bf1d3de825ee25a8f0ae81b7b77896 (patch) | |
tree | 9b071a8105704e992946dcd6b801e9fcb7635142 /audio/xmms2/files/patch-src_plugins_file_wscript | |
parent | MooseFS is a Fault tolerant, High Available, Highly Performing, Scale-Out, (diff) |
Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them.
With hat: portmgr
Sponsored by: Absolight
Diffstat (limited to 'audio/xmms2/files/patch-src_plugins_file_wscript')
-rw-r--r-- | audio/xmms2/files/patch-src_plugins_file_wscript | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/audio/xmms2/files/patch-src_plugins_file_wscript b/audio/xmms2/files/patch-src_plugins_file_wscript new file mode 100644 index 000000000000..a09b4fbbd95b --- /dev/null +++ b/audio/xmms2/files/patch-src_plugins_file_wscript @@ -0,0 +1,19 @@ +--- src/plugins/file/wscript.orig 2011-10-20 19:26:08 UTC ++++ src/plugins/file/wscript +@@ -1,7 +1,7 @@ + from waftools.plugin import plugin + + def plugin_build(bld, obj): +- if bld.env.HAVE_FSTATAT and bld.env.HAVE_DIRFD: ++ if bld.env.HAVE_FSTATAT: + obj.source.append('browse/fstatat.c') + else: + obj.source.append('browse/gdir.c') +@@ -9,7 +9,6 @@ def plugin_build(bld, obj): + def plugin_configure(conf): + conf.check_cc(function_name='fstatat', header_name=['fcntl.h','sys/stat.h'], + defines=['_ATFILE_SOURCE=1']) +- conf.check_cc(function_name='dirfd', header_name=['dirent.h','sys/types.h']) + + configure, build = plugin("file", + configure=plugin_configure, build=plugin_build, |