diff options
author | nakai <nakai@FreeBSD.org> | 2001-03-20 21:35:56 +0800 |
---|---|---|
committer | nakai <nakai@FreeBSD.org> | 2001-03-20 21:35:56 +0800 |
commit | a581266976e5be5654c818d26a21068d26d4024e (patch) | |
tree | 475befbd746eb4e5d62037c1e400fd679aca9e02 /misc | |
parent | b83b9e43a65608a78341a9e4f804a328f999b49e (diff) | |
download | freebsd-ports-gnome-a581266976e5be5654c818d26a21068d26d4024e.tar.gz freebsd-ports-gnome-a581266976e5be5654c818d26a21068d26d4024e.tar.zst freebsd-ports-gnome-a581266976e5be5654c818d26a21068d26d4024e.zip |
Add dummy getmntent() func.
PR: ports/24570
Submitted by: Roman Shterenzon<roman@xpert.com>
Diffstat (limited to 'misc')
-rw-r--r-- | misc/rpm/Makefile | 2 | ||||
-rw-r--r-- | misc/rpm/files/patch-bi | 18 | ||||
-rw-r--r-- | misc/rpm/files/patch-bj | 14 |
3 files changed, 30 insertions, 4 deletions
diff --git a/misc/rpm/Makefile b/misc/rpm/Makefile index 29ca9a71b1c9..28b2e845d576 100644 --- a/misc/rpm/Makefile +++ b/misc/rpm/Makefile @@ -7,7 +7,7 @@ PORTNAME= rpm PORTVERSION= 3.0.6 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= misc MASTER_SITES= ftp://ftp.rpm.org/pub/rpm/dist/rpm-3.0.x/ \ ftp://ftp.mirror.ac.uk/sites/ftp.rpm.org/pub/rpm/dist/rpm-3.0.x/ diff --git a/misc/rpm/files/patch-bi b/misc/rpm/files/patch-bi index d4e23f73235b..2f4b57a890a3 100644 --- a/misc/rpm/files/patch-bi +++ b/misc/rpm/files/patch-bi @@ -1,6 +1,18 @@ ---- lib/fs.c.orig Thu Nov 2 12:54:47 2000 -+++ lib/fs.c Thu Nov 2 12:55:32 2000 -@@ -129,8 +129,10 @@ +--- lib/fs.c.orig Wed Jun 14 21:34:30 2000 ++++ lib/fs.c Tue Mar 20 22:24:58 2001 +@@ -12,6 +12,11 @@ + /*@only@*/ /*@null@*/ static const char ** fsnames = NULL; + static int numFilesystems = 0; + ++/* dummy getmntent() for FreeBSD */ ++our_mntent *getmntent(FILE *filep) { ++ return NULL; ++} ++ + void freeFilesystems(void) + { + if (filesystems) { +@@ -129,8 +134,10 @@ # if GETMNTENT_ONE || GETMNTENT_TWO mtab = fopen(MOUNTED, "r"); if (!mtab) { diff --git a/misc/rpm/files/patch-bj b/misc/rpm/files/patch-bj new file mode 100644 index 000000000000..b48019f66759 --- /dev/null +++ b/misc/rpm/files/patch-bj @@ -0,0 +1,14 @@ +--- system.h.orig Tue Mar 20 22:24:05 2001 ++++ system.h Tue Mar 20 22:24:30 2001 +@@ -351,9 +351,9 @@ + # elif HAVE_STRUCT_MNTTAB + # include <stdio.h> + # include <mnttab.h> +- struct our_mntent { ++ typedef struct our_mntent { + char * our_mntdir; +- }; ++ } our_mntent; + struct our_mntent *getmntent(FILE *filep); + # define our_mntent struct our_mntent + # else |