diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/geomview.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/geomview.rb b/Library/Formula/geomview.rb index 0ce6e1f93..53feeeff9 100644 --- a/Library/Formula/geomview.rb +++ b/Library/Formula/geomview.rb @@ -8,6 +8,11 @@ class Geomview < Formula depends_on :x11 depends_on 'lesstif' + # Per MacPorts: https://trac.macports.org/ticket/35856 + def patches + DATA + end + def install system "./configure", "--disable-debug", "--disable-dependency-tracking", @@ -15,3 +20,17 @@ class Geomview < Formula system "make install" end end + +__END__ +diff --git a/src/bin/animate/glob.c b/src/bin/animate/glob.c +index f573f9c..2d80834 100644 +--- a/src/bin/animate/glob.c ++++ b/src/bin/animate/glob.c +@@ -41,7 +41,7 @@ static char sccsid[] = "@(#)glob.c 5.7 (Berkeley) 12/14/88"; + #include <errno.h> + #include <pwd.h> + +-#if !defined(dirfd) && !defined(__GLIBC__) && !defined(__linux__) && !defined(__FreeBSD__) && !defined(__CYGWIN__) ++#if !defined(dirfd) && !defined(__APPLE__) && !defined(__GLIBC__) && !defined(__linux__) && !defined(__FreeBSD__) && !defined(__CYGWIN__) + #define dirfd(dirp) ((dirp)->dd_fd) + #endif |
