diff options
author | markd <markd@pkgsrc.org> | 2002-04-09 02:30:24 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2002-04-09 02:30:24 +0000 |
commit | 27929384a52dba3d12169ebd41cdec7d456394c1 (patch) | |
tree | 978c5b588c82c6316807e2216d1eeb6d953a61f8 /editors | |
parent | f10d3d2d1c58e5ee32fc98978ba7eabc20319ac1 (diff) | |
download | pkgsrc-27929384a52dba3d12169ebd41cdec7d456394c1.tar.gz |
Stop "-I/usr/include" from explicitly appearing in CFLAGS as this breaks
gcc's overriding of some system header files on non-NetBSD platforms.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/ted/distinfo | 5 | ||||
-rw-r--r-- | editors/ted/patches/patch-ab | 32 | ||||
-rw-r--r-- | editors/ted/patches/patch-ac | 10 | ||||
-rw-r--r-- | editors/ted/patches/patch-ad | 10 |
4 files changed, 34 insertions, 23 deletions
diff --git a/editors/ted/distinfo b/editors/ted/distinfo index e19b869cf1b..168378c63e9 100644 --- a/editors/ted/distinfo +++ b/editors/ted/distinfo @@ -1,5 +1,8 @@ -$NetBSD: distinfo,v 1.4 2002/04/09 02:13:37 markd Exp $ +$NetBSD: distinfo,v 1.5 2002/04/09 02:30:24 markd Exp $ SHA1 (ted-2.11.src.tar.gz) = d4f0ff443a2632d7f665cea8999045b2dbea40a6 Size (ted-2.11.src.tar.gz) = 2377582 bytes SHA1 (patch-aa) = d8673fb67176c17beb90a87adebb9ab94a1e15ba +SHA1 (patch-ab) = fddf769a9e48c68a61512fdb60973415a43ea0e6 +SHA1 (patch-ac) = e7e575a50f7e8ee4140f573f16fe8bd2c3e32f0b +SHA1 (patch-ad) = 8dbde13c8e2470deac088c64d1bc901ed1944a92 diff --git a/editors/ted/patches/patch-ab b/editors/ted/patches/patch-ab index bb314faa26a..1f3e1b7c61b 100644 --- a/editors/ted/patches/patch-ab +++ b/editors/ted/patches/patch-ab @@ -1,22 +1,10 @@ -$NetBSD: patch-ab,v 1.3 2001/08/24 13:02:49 hubertf Exp $ - ---- bitmap/bmpng.c.orig Sun Apr 8 18:05:33 2001 -+++ bitmap/bmpng.c -@@ -172,7 +172,7 @@ - return -1; - } - -- png_info_init( &pngi ); -+ png_info_init( pngi ); - png_read_init( &png ); - - png_init_io( &png, f ); -@@ -234,7 +234,7 @@ - if ( setjmp( png.jmpbuf ) ) - { LDEB(1); png_read_destroy( &png, &pngi, (png_info *)0 ); return -1; } - -- png_info_init( &pngi ); -+ png_info_init( pngi ); - png_read_init( &png ); - - png_init_io( &png, (FILE *)0 ); +--- Ted/configure.orig Sun Mar 3 23:24:16 2002 ++++ Ted/configure Tue Apr 9 12:13:32 2002 +@@ -1946,7 +1946,6 @@ + + # Includes + for ac_dir in \ +- /usr/include \ + /usr/local/include \ + /usr/pkg/include \ + /usr/local/include/zlib \ diff --git a/editors/ted/patches/patch-ac b/editors/ted/patches/patch-ac new file mode 100644 index 00000000000..e6d77891a3b --- /dev/null +++ b/editors/ted/patches/patch-ac @@ -0,0 +1,10 @@ +--- appUtil/configure.orig Sun Mar 3 23:24:16 2002 ++++ appUtil/configure Tue Apr 9 12:13:56 2002 +@@ -787,7 +787,6 @@ + + # Includes + for ac_dir in \ +- /usr/include \ + /usr/local/include \ + /usr/pkg/include \ + /usr/local/include/zlib \ diff --git a/editors/ted/patches/patch-ad b/editors/ted/patches/patch-ad new file mode 100644 index 00000000000..af3e614e17e --- /dev/null +++ b/editors/ted/patches/patch-ad @@ -0,0 +1,10 @@ +--- bitmap/configure.orig Sun Mar 3 23:24:16 2002 ++++ bitmap/configure Tue Apr 9 12:14:17 2002 +@@ -1825,7 +1825,6 @@ + + # Includes + for ac_dir in \ +- /usr/include \ + /usr/local/include \ + /usr/pkg/include \ + /usr/local/include/zlib \ |