summaryrefslogtreecommitdiff
path: root/sysutils/mkisofs
diff options
context:
space:
mode:
authorross <ross@pkgsrc.org>1999-05-07 08:09:06 +0000
committerross <ross@pkgsrc.org>1999-05-07 08:09:06 +0000
commit52626bc48615157e1e8c144e3a8bb19ec4f72872 (patch)
tree01d1ac5f1a563673c7a1d1cc00e3c69acb4663f2 /sysutils/mkisofs
parent7997bc7b57ea5423385a90be0c404d0e91337f10 (diff)
downloadpkgsrc-52626bc48615157e1e8c144e3a8bb19ec4f72872.tar.gz
* Enable this on alpha.
* Include <stdlib.h> for alloca(3).
Diffstat (limited to 'sysutils/mkisofs')
-rw-r--r--sysutils/mkisofs/Makefile4
-rw-r--r--sysutils/mkisofs/patches/patch-ac18
2 files changed, 13 insertions, 9 deletions
diff --git a/sysutils/mkisofs/Makefile b/sysutils/mkisofs/Makefile
index abb33ffc510..d36a87fbf9c 100644
--- a/sysutils/mkisofs/Makefile
+++ b/sysutils/mkisofs/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 1999/04/07 23:55:25 tron Exp $
+# $NetBSD: Makefile,v 1.14 1999/05/07 08:09:06 ross Exp $
#
DISTNAME= mkisofs-1.11.3
@@ -8,8 +8,6 @@ MASTER_SITES= ftp://ftp.cdrom.com/pub/linux/tsx-11/packages/mkisofs/
MAINTAINER= mycroft@netbsd.org
HOMEPAGE= http://andante.jic.com/mkisofs.html
-NOT_FOR_ARCHS= alpha #gcc lossage
-
GNU_CONFIGURE= yes
ALL_TARGET= World
diff --git a/sysutils/mkisofs/patches/patch-ac b/sysutils/mkisofs/patches/patch-ac
index 4dc0fdec13c..cf269c3362f 100644
--- a/sysutils/mkisofs/patches/patch-ac
+++ b/sysutils/mkisofs/patches/patch-ac
@@ -1,8 +1,14 @@
-$NetBSD: patch-ac,v 1.3 1998/08/07 11:14:05 agc Exp $
-
---- name.c.orig Thu Apr 10 04:41:48 1997
-+++ name.c Wed Oct 29 12:11:01 1997
-@@ -58,6 +58,7 @@
+--- name.c.orig Fri May 7 00:57:30 1999
++++ name.c Fri May 7 00:58:04 1999
+@@ -25,6 +25,7 @@
+
+ #include "mkisofs.h"
+
++#include <stdlib.h>
+ #include <ctype.h>
+
+ extern int allow_leading_dots;
+@@ -58,6 +59,7 @@
const char * pnt;
int priority = 32767;
char * result;
@@ -10,7 +16,7 @@ $NetBSD: patch-ac,v 1.3 1998/08/07 11:14:05 agc Exp $
int seen_dot = 0;
int seen_semic = 0;
int tildes = 0;
-@@ -105,13 +106,17 @@
+@@ -105,13 +107,17 @@
last_dot = strrchr (pnt,'.');
if( (last_dot != NULL)
&& ( (last_dot[1] == '~')