diff options
author | grant <grant@pkgsrc.org> | 2005-07-01 04:12:20 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2005-07-01 04:12:20 +0000 |
commit | da77102651ebc8d375ee77f93b6d4ca0c6449cd9 (patch) | |
tree | f022ca65d11d4427591d33daa55e6ac05ef0936e /chat | |
parent | 40429dd3655009d78600f53070bff4a84d92f36f (diff) | |
download | pkgsrc-da77102651ebc8d375ee77f93b6d4ca0c6449cd9.tar.gz |
don't pass -Xc on Solaris if not building with gcc.
passing -Xc to sunpro defines __STDC__=1 and the build fails in
ircsig.c because <signal.h> only declares sigaction if __STD__=0.
fixes build on Solaris w/ sunpro.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/ircII/distinfo | 3 | ||||
-rw-r--r-- | chat/ircII/patches/patch-aa | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/chat/ircII/distinfo b/chat/ircII/distinfo index 08d0169f18d..3f9dc5610e9 100644 --- a/chat/ircII/distinfo +++ b/chat/ircII/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.24 2005/02/23 15:59:11 agc Exp $ +$NetBSD: distinfo,v 1.25 2005/07/01 04:12:20 grant Exp $ SHA1 (ircii-20040820.tar.bz2) = 60970833257543c213f44f6046d681a5418d4c42 RMD160 (ircii-20040820.tar.bz2) = 8be064650062a1dd861d70ce0d5ebd7f99c3448e Size (ircii-20040820.tar.bz2) = 559843 bytes +SHA1 (patch-aa) = fbc75ea374cee67f366ef8b783dd90f13b434831 SHA1 (patch-ac) = f4633c01dc1ee9136ec5cc13694fe5f9fb8542ac diff --git a/chat/ircII/patches/patch-aa b/chat/ircII/patches/patch-aa new file mode 100644 index 00000000000..e6687f1c93c --- /dev/null +++ b/chat/ircII/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.5 2005/07/01 04:12:20 grant Exp $ + +--- configure.orig 2004-07-03 20:37:00.000000000 +1000 ++++ configure +@@ -1107,9 +1107,6 @@ then + 5.*) + echo "$ac_t""yes" 1>&6 + svr4=1 +- if test $ac_cv_prog_gcc = no; then +- CFLAGS="-Xc $CFLAGS" +- fi + ;; + esac + else |