summaryrefslogtreecommitdiff
path: root/x11-fm/xplore/files
diff options
context:
space:
mode:
Diffstat (limited to 'x11-fm/xplore/files')
-rw-r--r--x11-fm/xplore/files/patch-Xplore.tmpl44
-rw-r--r--x11-fm/xplore/files/patch-ftype.c10
-rw-r--r--x11-fm/xplore/files/patch-scripts-find.script9
-rw-r--r--x11-fm/xplore/files/patch-xg-TimeEntry.c20
-rw-r--r--x11-fm/xplore/files/patch-xplore.h20
5 files changed, 0 insertions, 103 deletions
diff --git a/x11-fm/xplore/files/patch-Xplore.tmpl b/x11-fm/xplore/files/patch-Xplore.tmpl
deleted file mode 100644
index 37c143487097..000000000000
--- a/x11-fm/xplore/files/patch-Xplore.tmpl
+++ /dev/null
@@ -1,44 +0,0 @@
---- Xplore.tmpl.orig Wed May 1 16:59:23 2002
-+++ Xplore.tmpl Sun Feb 1 23:18:12 2004
-@@ -49,41 +49,7 @@
-
- /* These definitions are needed for statfs() and the stuff in mnttable.c. */
-
--#ifdef AIXArchitecture
-- SYSDEP = -DAIX
--#endif
--
--#ifdef AlphaArchitecture
-- SYSDEP = -DOSF1
--#endif
--
--#ifdef HPArchitecture
-- SYSDEP = -DHPUX -D_HPUX_SOURCE
--#endif
--
--#ifdef i386Architecture
- SYSDEP = -DFreeBSD
--#endif
--
--#ifdef LinuxArchitecture
-- SYSDEP = -DLINUX
--#endif
--
--#ifdef SCOArchitecture
-- SYSDEP = -DSCO
--#endif
--
--#ifdef SGIArchitecture
-- SYSDEP = -DSGI
--#endif
--
--#if defined(SunArchitecture)
--#if OSMajorVersion > 4
-- SYSDEP = -DSOLARIS
--#else
-- SYSDEP = -DSUNOS
--#endif
--#endif
-
- XCOMM If your system is not SVR4 and neither matches one of the above, you
- XCOMM might wish to uncomment one of the following and proceed with fingers
diff --git a/x11-fm/xplore/files/patch-ftype.c b/x11-fm/xplore/files/patch-ftype.c
deleted file mode 100644
index b73767100d23..000000000000
--- a/x11-fm/xplore/files/patch-ftype.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- ftype.c.orig Thu Sep 2 23:14:04 2004
-+++ ftype.c Thu Sep 2 23:14:25 2004
-@@ -300,6 +300,7 @@
- goto err;
- return i;
- err:
-+ break;
- }
- }
- return NONE;
diff --git a/x11-fm/xplore/files/patch-scripts-find.script b/x11-fm/xplore/files/patch-scripts-find.script
deleted file mode 100644
index e81452f0740d..000000000000
--- a/x11-fm/xplore/files/patch-scripts-find.script
+++ /dev/null
@@ -1,9 +0,0 @@
---- scripts/find.script.orig Mon Aug 5 02:51:39 2002
-+++ scripts/find.script Sun Aug 10 04:24:10 2003
-@@ -27,5 +27,5 @@
- $find "$1" -name "$2" -print
- else
- echo "+++ find [$1]: searching \"$2\" for \"$3\" +++"
-- $find "$1" -name "$2" -xtype f -print0 | $xargs -0 grep -l "$3"
-+ $find "$1" -name "$2" -type f -print0 | $xargs -0 grep -l "$3"
- fi
diff --git a/x11-fm/xplore/files/patch-xg-TimeEntry.c b/x11-fm/xplore/files/patch-xg-TimeEntry.c
deleted file mode 100644
index ce83b60fc2a2..000000000000
--- a/x11-fm/xplore/files/patch-xg-TimeEntry.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- xg/TimeEntry.c.orig Wed May 1 16:59:23 2002
-+++ xg/TimeEntry.c Wed Dec 17 22:48:28 2003
-@@ -1549,7 +1549,7 @@
- {
- struct tm ts;
- long time_value;
--#ifdef __OpenBSD__
-+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
- extern long tz;
- #else
- extern long timezone;
-@@ -1578,7 +1578,7 @@
- */
- if ( te->timeentry.use_timezone == False )
- {
--#ifdef __OpenBSD__
-+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
- time_value -= tz;
- #else
- time_value -= timezone;
diff --git a/x11-fm/xplore/files/patch-xplore.h b/x11-fm/xplore/files/patch-xplore.h
deleted file mode 100644
index 5ef4668f66dd..000000000000
--- a/x11-fm/xplore/files/patch-xplore.h
+++ /dev/null
@@ -1,20 +0,0 @@
---- xplore.h.orig Wed Aug 14 23:26:59 2002
-+++ xplore.h Fri Aug 8 13:17:09 2003
-@@ -26,7 +26,7 @@
- #ifdef hpux
- #pragma alloca
- #else
--#if defined(__NetBSD__) || defined(__OpenBSD__)
-+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
- #pragma alloca
- #else
- #include <alloca.h>
-@@ -64,7 +64,7 @@
- #ifdef USE_STATVFS
- #include <sys/statvfs.h>
- #else
--#if defined(__NetBSD__) || defined(__OpenBSD__)
-+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
- #include <sys/param.h>
- #include <sys/mount.h>
- #else