diff options
author | mharo <mharo@FreeBSD.org> | 1999-04-18 23:15:11 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-04-18 23:15:11 +0000 |
commit | 2b468d5347ef2b093369bb1634fa8904c5bf2de3 (patch) | |
tree | dad77cd6007ff874d7bc2471e08c75bc8df8998a /misc | |
parent | 1bc34099426af2d40d93d7f706ffdb804a8eb999 (diff) | |
download | FreeBSD-ports-2b468d5347ef2b093369bb1634fa8904c5bf2de3.zip FreeBSD-ports-2b468d5347ef2b093369bb1634fa8904c5bf2de3.tar.gz |
fix so it isn't BROKEN
Reviewed by: obrien
Obtained from: bento.freebsd.org
Diffstat (limited to 'misc')
-rw-r--r-- | misc/cwish/Makefile | 12 | ||||
-rw-r--r-- | misc/cwish/files/patch-03 | 14 |
2 files changed, 17 insertions, 9 deletions
diff --git a/misc/cwish/Makefile b/misc/cwish/Makefile index 5d78f7d..0999e7d 100644 --- a/misc/cwish/Makefile +++ b/misc/cwish/Makefile @@ -4,7 +4,7 @@ # Date created: Thur Sept 25, 1998 # Whom: David O'Brien (obrien@NUXI.com) # -# $Id: Makefile,v 1.1.1.1 1998/09/25 10:57:57 obrien Exp $ +# $Id: Makefile,v 1.2 1998/11/11 05:37:27 asami Exp $ # DISTNAME= cwish @@ -15,15 +15,9 @@ MASTER_SITES= http://www.hcs.de/users/hm/packages/ MAINTAINER= obrien@FreeBSD.org NO_WRKSUBDIR= yes -ALL_TARGET= #emtpy +ALL_TARGET= cwish MAN1= cwish.1 -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 300000 -BROKEN= "headers problem" -.endif - pre-configure: ${CP} ${WRKSRC}/Makefile.freebsd ${WRKSRC}/Makefile @@ -31,4 +25,4 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/cwish ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/cwish.1 ${PREFIX}/man/man1 -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/misc/cwish/files/patch-03 b/misc/cwish/files/patch-03 new file mode 100644 index 0000000..81c6c71 --- /dev/null +++ b/misc/cwish/files/patch-03 @@ -0,0 +1,14 @@ +--- files.c.orig Sun Apr 18 14:16:10 1999 ++++ files.c Sun Apr 18 14:17:43 1999 +@@ -45,6 +45,11 @@ + + #include "cwish.h" /* global include file */ + ++#ifdef __FreeBSD__ ++#include <sys/disklabel.h> ++#define MOUNT_CD9660 FS_ISO9660 ++#endif ++ + #ifdef ultrix + + #include <sys/fs_types.h> |