diff options
author | minskim <minskim@pkgsrc.org> | 2004-04-11 23:04:50 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2004-04-11 23:04:50 +0000 |
commit | a75e443d46e417dc43882ef2511ea7ca72960bcc (patch) | |
tree | 2929dcbdfec795b25d071d37e894eaf09c5e8888 /archivers/afio/patches | |
parent | b3d1130cf95839ad708f50076fc45a108e3f33b5 (diff) | |
download | pkgsrc-a75e443d46e417dc43882ef2511ea7ca72960bcc.tar.gz |
- Update afio to 2.5.
- Use buildlink framework.
- NO_CONFIGURE=yes
- Enable pkgviews installation.
Changes in 2.5:
- In afio.h ulo and ull macros, added L and LL letters in constants.
- Documented `long long' issues in PORTING file. Removed ifdeffed
typedef ulonglong porting hacks from the afio.h file.
- Changed mknod() call to mkfifo() call when creating named pipe from
archive. Freebsd cannot make named pipes with mknod.
- Added some extra defines to suppress some warnings on sun platform.
Also added some stuff around awk invocations in makefile and regtest
to make things easier on sun -- the sun platform I tried it on had a
default awk that was too ancient to understand things like gsub.
- Added some discussion of sun and freebsd to PORTING file.
- Fix to regression test: no longer complains if two compared directory
inodes have a size difference. Bases on bug report by vasudeva.
- Changed sanity check on the stdin at the start of executing -o mode:
now the check only happens if stdin is a tty. This allows scripts to
make empty archives, and is needed for compatibility with tob. Based
on problem report by Dirk Eddelbuettel.
- Changed read() to readall() in outdata().
- Updated SCRIPTS file.
Diffstat (limited to 'archivers/afio/patches')
-rw-r--r-- | archivers/afio/patches/patch-aa | 37 |
1 files changed, 20 insertions, 17 deletions
diff --git a/archivers/afio/patches/patch-aa b/archivers/afio/patches/patch-aa index 32b979c8713..f3ad906feed 100644 --- a/archivers/afio/patches/patch-aa +++ b/archivers/afio/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.1.1.1 2003/06/27 10:17:58 agc Exp $ +$NetBSD: patch-aa,v 1.2 2004/04/11 23:04:50 minskim Exp $ ---- Makefile 2003/06/27 09:37:50 1.1 -+++ Makefile 2003/06/27 09:39:40 -@@ -26,7 +26,7 @@ +--- Makefile.orig 2003-12-21 04:23:51.000000000 -0600 ++++ Makefile +@@ -28,7 +28,7 @@ SHELL=/bin/sh c = -DHAVEMEMCMP ## Define DEFFMTCMD to being how to format the media you use the most ## This is the DEFault FoRMat CoManD. @@ -11,27 +11,30 @@ $NetBSD: patch-aa,v 1.1.1.1 2003/06/27 10:17:58 agc Exp $ ## Define LONGZFILE if you want .Z to be tagged on the end of a 14 char ## file name (or longer for BSD) in the archive when the file is compressed #e = -DLONGZFILE -@@ -56,10 +56,10 @@ - - #CFLAGS1 = -ggdb - #CFLAGS1 = -Wall -s -g -O2 -fomit-frame-pointer --CFLAGS1 = -Wall -O2 -fomit-frame-pointer -+#CFLAGS1 = -Wall -O2 -fomit-frame-pointer +@@ -71,11 +71,12 @@ LARGEFILEFLAGS=-D_FILE_OFFSET_BITS=64 -D + MW= + #MW=-Wtraditional -Wcast-qual -Wcast-align -Wconversion -pedantic -Wlong-long -Wimplicit -Wuninitialized -W -Wshadow -Wsign-compare -Wstrict-prototypes -Wmissing-declarations +-CFLAGS1 = -Wall -Wstrict-prototypes -s -O2 -fomit-frame-pointer ${LARGEFILEFLAGS} ${MW} ++#CFLAGS1 = -Wall -Wstrict-prototypes -s -O2 -fomit-frame-pointer ${LARGEFILEFLAGS} ${MW} ++CFLAGS1 = ${LARGEFILEFLAGS} -CC=gcc +#CC=gcc +-CFLAGS = ${CFLAGS1} $1 $2 $3 $4 $5 $6 $7 $8 $9 $a $b $c $d $e ${e2} $f $g $I ++CFLAGS += ${CFLAGS1} $1 $2 $3 $4 $5 $6 $7 $8 $9 $a $b $c $d $e ${e2} $f $g $I + LDFLAGS = - CFLAGS = ${CFLAGS1} $1 $2 $3 $4 $5 $6 $7 $8 $9 $a $b $c $d $e $f $g $I -@@ -72,8 +72,8 @@ - rm -f *.o afio + afio : afio.o compfile.o exten.o match.o $M +@@ -88,8 +89,8 @@ clean: + cd regtest; /bin/sh regtest.clean install: afio -- cp afio /usr/bin -- cp afio.1 /usr/man/man1 +- cp afio /usr/local/bin +- cp afio.1 /usr/share/man/man1 + cp afio ${PREFIX}/bin + cp afio.1 ${PREFIX}/man/man1 - - afio.o : afio.h patchlevel.h + # generate default list of -E extensions from manpage + # note: on sun, I had to change awk command below to nawk or gawk |