diff options
author | obache <obache@pkgsrc.org> | 2014-12-15 09:00:32 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-12-15 09:00:32 +0000 |
commit | 3cb38cab92e36861f7a95da86214303dfc4dadef (patch) | |
tree | 764161a28f5d97c6a976bb29eb258646a4ab1452 /cad | |
parent | b4434e57646e9f66c69d1f4bdad71ef170ae981e (diff) | |
download | pkgsrc-3cb38cab92e36861f7a95da86214303dfc4dadef.tar.gz |
remove unwanted replacement "==" with "=", it's in C code, not sh script.
Diffstat (limited to 'cad')
-rw-r--r-- | cad/xcircuit/distinfo | 4 | ||||
-rw-r--r-- | cad/xcircuit/patches/patch-ab | 17 |
2 files changed, 3 insertions, 18 deletions
diff --git a/cad/xcircuit/distinfo b/cad/xcircuit/distinfo index 3657e7a267a..ca21c23d4e6 100644 --- a/cad/xcircuit/distinfo +++ b/cad/xcircuit/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.16 2014/12/15 08:58:52 obache Exp $ +$NetBSD: distinfo,v 1.17 2014/12/15 09:00:32 obache Exp $ SHA1 (xcircuit-3.7.50.tgz) = f3d0d7213d42bf7db1110454f8a3f74239d338f5 RMD160 (xcircuit-3.7.50.tgz) = 2c416e939810a3e0fd82fa7411e89c3f12bc890e Size (xcircuit-3.7.50.tgz) = 1649046 bytes SHA1 (patch-aa) = 27b15c9105873f5ebe4b2ae7c04ed041a480d0f4 -SHA1 (patch-ab) = a4fea15b8a432dd8db40073aa0dbaff8bc13eab6 +SHA1 (patch-ab) = cc339aaa2ceda954c43efc8e76c96cbe253ee032 diff --git a/cad/xcircuit/patches/patch-ab b/cad/xcircuit/patches/patch-ab index 9a2acb3e9d6..4d544e6d442 100644 --- a/cad/xcircuit/patches/patch-ab +++ b/cad/xcircuit/patches/patch-ab @@ -1,22 +1,7 @@ -$NetBSD: patch-ab,v 1.12 2014/12/15 08:58:52 obache Exp $ +$NetBSD: patch-ab,v 1.13 2014/12/15 09:00:32 obache Exp $ --- configure.orig 2012-08-15 11:45:19.000000000 +0000 +++ configure -@@ -3794,12 +3794,12 @@ static char *f (char * (*g) (char **, in - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ --int osf4_cc_array ['\x00' == 0 ? 1 : -1]; -+int osf4_cc_array ['\x00' = 0 ? 1 : -1]; - - /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ - #define FOO(x) 'x' --int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; -+int xlc6_cc_array[FOO(a) = 'x' ? 1 : -1]; - - int test (int i, double x); - struct s1 {int (*f) (int a);}; @@ -6006,7 +6006,7 @@ if test "${enable_double_buffer+set}" = enableval=$enable_double_buffer; else |