summaryrefslogtreecommitdiff
path: root/audio/zinf/files/patch-base-src-registrar.cpp
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2016-07-26 16:51:15 +0000
committerMathieu Arnold <mat@FreeBSD.org>2016-07-26 16:51:15 +0000
commit9fa9eb9ac7bf1d3de825ee25a8f0ae81b7b77896 (patch)
tree9b071a8105704e992946dcd6b801e9fcb7635142 /audio/zinf/files/patch-base-src-registrar.cpp
parentMooseFS 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/zinf/files/patch-base-src-registrar.cpp')
-rw-r--r--audio/zinf/files/patch-base-src-registrar.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/audio/zinf/files/patch-base-src-registrar.cpp b/audio/zinf/files/patch-base-src-registrar.cpp
deleted file mode 100644
index 5e34a92860d1..000000000000
--- a/audio/zinf/files/patch-base-src-registrar.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
---- base/src/registrar.cpp.orig Sat Mar 15 10:01:46 2003
-+++ base/src/registrar.cpp Mon Aug 18 18:54:16 2003
-@@ -28,7 +28,7 @@
- #include <stdlib.h>
- #include <unistd.h>
- #include <set>
--#include <wordexp.h>
-+#include <glob.h>
- #endif // WIN32
-
- #include <stdio.h>
-@@ -79,13 +79,13 @@
- dir = *di++;
-
- #ifndef WIN32
-- wordexp_t result;
-- if (wordexp(dir.c_str(), &result, 0) ==0){
-+ glob_t result;
-+ if (glob(dir.c_str(), 0, NULL, &result) ==0){
- //cerr << "Expanded " << dir << " in ";
-- dir = result.we_wordv[0];
-+ dir = result.gl_pathv[0];
- //cerr << dir << endl;
- }
-- wordfree(&result);
-+ globfree(&result);
-
- #if 0
- if (dir[0] == '~') {