diff options
author | minskim <minskim> | 2004-08-15 00:08:58 +0000 |
---|---|---|
committer | minskim <minskim> | 2004-08-15 00:08:58 +0000 |
commit | 735af61eac60d0b3d9da388802973bf5910bb3ca (patch) | |
tree | aed0c877161da0839640c1009a1d821cded02ea6 /editors | |
parent | 3cf0832dedaaeacfa5acc785742aa11c98ba8c24 (diff) | |
download | pkgsrc-735af61eac60d0b3d9da388802973bf5910bb3ca.tar.gz |
Honor CPPFLAGS to make this package build on Interix.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/zile/distinfo | 5 | ||||
-rw-r--r-- | editors/zile/patches/patch-ab | 13 | ||||
-rw-r--r-- | editors/zile/patches/patch-ac | 22 | ||||
-rw-r--r-- | editors/zile/patches/patch-ad | 13 |
4 files changed, 52 insertions, 1 deletions
diff --git a/editors/zile/distinfo b/editors/zile/distinfo index 5b5f8714154..608c43f058f 100644 --- a/editors/zile/distinfo +++ b/editors/zile/distinfo @@ -1,5 +1,8 @@ -$NetBSD: distinfo,v 1.2 2003/06/29 22:19:13 jtb Exp $ +$NetBSD: distinfo,v 1.3 2004/08/15 00:08:58 minskim Exp $ SHA1 (zile-1.6.2.tar.gz) = 3e88d5d7d50f65c58f1d305f93fe275a49650ac7 Size (zile-1.6.2.tar.gz) = 254162 bytes SHA1 (patch-aa) = 80456cfebddddec4029a37db493acce46bc69e8c +SHA1 (patch-ab) = bf37094e812b4c8dea8f305d7ae174e93b0b7fa9 +SHA1 (patch-ac) = 39fa3f6de47b619b547d8e025d735e69a91248ac +SHA1 (patch-ad) = 30a7d6584781a54a6da7692c376c1a7728da2906 diff --git a/editors/zile/patches/patch-ab b/editors/zile/patches/patch-ab new file mode 100644 index 00000000000..eb4292551e2 --- /dev/null +++ b/editors/zile/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2004/08/15 00:08:58 minskim Exp $ + +--- src/Makefile.in.orig Sat Aug 14 18:53:10 2004 ++++ src/Makefile.in +@@ -77,7 +77,7 @@ OBJS = basic.o \ + window.o + + .c.o: +- $(CC) -c -I. -I$(srcdir) $(CFLAGS) $< ++ $(CC) -c -I. -I$(srcdir) @CPPFLAGS@ $(CFLAGS) $< + + all: paths.h maketerminals $(PROG) zile.1 + diff --git a/editors/zile/patches/patch-ac b/editors/zile/patches/patch-ac new file mode 100644 index 00000000000..50292592df5 --- /dev/null +++ b/editors/zile/patches/patch-ac @@ -0,0 +1,22 @@ +$NetBSD: patch-ac,v 1.1 2004/08/15 00:08:58 minskim Exp $ + +--- etc/Makefile.in.orig Thu Apr 24 10:11:17 2003 ++++ etc/Makefile.in +@@ -13,7 +13,7 @@ INSTALL_DATA = @INSTALL_DATA@ + INSTALL = @INSTALL@ + + CC = @CC@ +-CFLAGS = -I.. -I../lib -I../src @CFLAGS@ ++CFLAGS += -I.. -I../lib -I../src @CFLAGS@ + LDFLAGS = @LDFLAGS@ + ZILELIBS = ../lib/libzile.a + LIBS = $(ZILELIBS) @LIBS@ +@@ -27,7 +27,7 @@ AUTODOCSRCS = $(srcdir)/../src/*.c + .SUFFIXES: + .SUFFIXES: .c .o + .c.o: +- $(CC) -c -I. -I$(srcdir)/../src $(CFLAGS) $< ++ $(CC) -c -I. -I$(srcdir)/../src @CPPFLAGS@ $(CFLAGS) $< + + all: $(FILES) + diff --git a/editors/zile/patches/patch-ad b/editors/zile/patches/patch-ad new file mode 100644 index 00000000000..e7e7074699e --- /dev/null +++ b/editors/zile/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1 2004/08/15 00:08:58 minskim Exp $ + +--- lib/Makefile.in.orig Thu Apr 24 10:11:58 2003 ++++ lib/Makefile.in +@@ -13,7 +13,7 @@ LIB = libzile.a + OBJS = alist.o astr.o htable.o @LIBOBJS@ + + .c.o: +- $(CC) -c -I. -I$(srcdir) $(CFLAGS) $< ++ $(CC) -c -I. -I$(srcdir) @CPPFLAGS@ $(CFLAGS) $< + + all: $(LIB) + |