aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan2014-01-20 06:35:25 +0100
committerJack Nagel2014-01-21 15:32:20 -0600
commit982bcc5802c8b8a4f663b9acffcf3daed8acf5ec (patch)
tree919034e4a765ba4e60d61c143da8b870baa82a78
parentd1c1469ee316336ee95bdecb8a09e8a06ec171d8 (diff)
downloadhomebrew-982bcc5802c8b8a4f663b9acffcf3daed8acf5ec.tar.bz2
djmount: use osxfuse
Closes #26045. [jn: This software hasn't been updated since 2006, so sending patches upstream is probably a futile exercise. In the interest of finishing the move to osxfuse, I'm bending the rules.] Signed-off-by: Jack Nagel <jacknagel@gmail.com>
-rw-r--r--Library/Formula/djmount.rb34
1 files changed, 32 insertions, 2 deletions
diff --git a/Library/Formula/djmount.rb b/Library/Formula/djmount.rb
index 4e7d29cbc..7717583c9 100644
--- a/Library/Formula/djmount.rb
+++ b/Library/Formula/djmount.rb
@@ -7,7 +7,7 @@ class Djmount < Formula
depends_on 'pkg-config' => :build
depends_on 'libupnp'
- depends_on 'fuse4x'
+ depends_on 'osxfuse'
def patches
{ :p0 => DATA }
@@ -27,7 +27,7 @@ class Djmount < Formula
end
def caveats; <<-EOS.undent
- Make sure to follow the directions given by `brew info fuse4x-kext`
+ Make sure to follow the directions given by `brew info osxfuse`
before trying to use a FUSE-based filesystem.
EOS
end
@@ -101,3 +101,33 @@ diff -u -r configure configure
#
+--- djmount/upnp_util.h.orig 2006-08-27 20:12:20.000000000 +0000
++++ djmount/upnp_util.h
+@@ -27,6 +27,7 @@
+ #define UPNP_UTIL_H_INCLUDED
+
+
++#include <upnp/upnp.h>
+ #include <upnp/upnptools.h>
+
+
+@@ -46,8 +47,8 @@ extern "C" {
+ *****************************************************************************/
+ char*
+ UpnpUtil_GetEventString (void* talloc_context,
+- IN Upnp_EventType eventType,
+- IN const void* event);
++ Upnp_EventType eventType,
++ const void* event);
+
+
+ /*****************************************************************************
+@@ -55,7 +56,7 @@ UpnpUtil_GetEventString (void* talloc_co
+ * @return a static constant string, or NULL if unknown event type.
+ *****************************************************************************/
+ const char*
+-UpnpUtil_GetEventTypeString (IN Upnp_EventType e);
++UpnpUtil_GetEventTypeString (Upnp_EventType e);
+
+
+