diff options
author | rillig <rillig@pkgsrc.org> | 2006-06-29 10:58:26 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-06-29 10:58:26 +0000 |
commit | 853ac09b84daec8cb84629dd7403f4493cdb4437 (patch) | |
tree | 295b620693030f6eb043eba8a1e350067a07fb0b | |
parent | df94b5f876a9e7c0bd6bbec6a3fcd68ff707c972 (diff) | |
download | pkgsrc-853ac09b84daec8cb84629dd7403f4493cdb4437.tar.gz |
Fixed gcc warnings that have been reported in PR 33859. While here, also
fixed the pkglint warning regarding INFO_FILES. Bumped PKGREVISION.
-rw-r--r-- | devel/cqual/Makefile | 3 | ||||
-rw-r--r-- | devel/cqual/distinfo | 5 | ||||
-rw-r--r-- | devel/cqual/patches/patch-bk | 13 | ||||
-rw-r--r-- | devel/cqual/patches/patch-cd | 12 |
4 files changed, 28 insertions, 5 deletions
diff --git a/devel/cqual/Makefile b/devel/cqual/Makefile index 36e426c9007..17d89ed1929 100644 --- a/devel/cqual/Makefile +++ b/devel/cqual/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2006/03/04 21:29:13 jlam Exp $ +# $NetBSD: Makefile,v 1.11 2006/06/29 10:58:26 rillig Exp $ # DISTNAME= cqual-0.991 @@ -15,6 +15,7 @@ GNU_CONFIGURE= yes USE_TOOLS+= gmake perl:run bison REPLACE_PERL+= bin/* +INFO_FILES= yes INSTALLATION_DIRS= share/doc/cqual share/examples/cqual diff --git a/devel/cqual/distinfo b/devel/cqual/distinfo index 8cac077ca67..410a64396ec 100644 --- a/devel/cqual/distinfo +++ b/devel/cqual/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2006/03/02 19:56:24 wiz Exp $ +$NetBSD: distinfo,v 1.6 2006/06/29 10:58:26 rillig Exp $ SHA1 (cqual-0.991.tar.gz) = f559af6947465ca242f19c1f499c7cb004e713e4 RMD160 (cqual-0.991.tar.gz) = e3837a11c75f750196ec4be7f991ec519c1260f6 @@ -16,9 +16,10 @@ SHA1 (patch-bg) = 4b53d4caac2c24a98e8acbc054877256c6ddebac SHA1 (patch-bh) = b4e05070ced650b4dea42620e2ebb78eabf743ee SHA1 (patch-bi) = 7997cb5b9f5f8b51bf382ae18cf355a74a7c3624 SHA1 (patch-bj) = 66c4c93fe18841db68ccdc2bb8e4d22a06abd731 -SHA1 (patch-bk) = 58edca8937cd587911d58bebc5d6bbbea87ca028 +SHA1 (patch-bk) = 240ad47d74c397b94eb9955fa903542fa7407d95 SHA1 (patch-bl) = 70fe692644529a38bdaefbff67a264db9179e5f7 SHA1 (patch-bm) = eb57badc6c4530243aeeeb14aba4418d77ea453c SHA1 (patch-ca) = fb4806cfb3c2347fe5089f42e419c57bec7e2432 SHA1 (patch-cb) = 568df77eefeea982d9a7faa638c6be12a54fa284 SHA1 (patch-cc) = f30adeec491d999b63e1ad5abd2b34c287608e5e +SHA1 (patch-cd) = 39af7244eb89410de704e902bdce901883f02cf4 diff --git a/devel/cqual/patches/patch-bk b/devel/cqual/patches/patch-bk index 6b9dc0ee2dc..e494b23b7b5 100644 --- a/devel/cqual/patches/patch-bk +++ b/devel/cqual/patches/patch-bk @@ -1,9 +1,18 @@ -$NetBSD: patch-bk,v 1.1 2006/01/18 23:24:12 rillig Exp $ +$NetBSD: patch-bk,v 1.2 2006/06/29 10:58:26 rillig Exp $ SunPro cannot handle direct initialization of structures. --- src/rinf_analyze.c.orig 2003-09-06 02:50:16.000000000 +0200 -+++ src/rinf_analyze.c 2006-01-16 14:49:27.617152900 +0100 ++++ src/rinf_analyze.c 2006-06-29 12:54:43.000000000 +0200 +@@ -29,7 +29,7 @@ Boston, MA 02111-1307, USA. */ + static effecttype global_effect = NULL; + static effecttype global_env = NULL; + static hash_table globals = NULL; +-static function_decl current_function_decl = NULL; ++/*global*/ function_decl current_function_decl = NULL; + static aloctype current_function_ret = NULL; + + typedef struct einfo { @@ -107,19 +107,27 @@ static bool is_memcpy_fun(const char *na static inline einfo mkeinfo(alocreftype tau, effecttype eff) diff --git a/devel/cqual/patches/patch-cd b/devel/cqual/patches/patch-cd new file mode 100644 index 00000000000..cd9258f2104 --- /dev/null +++ b/devel/cqual/patches/patch-cd @@ -0,0 +1,12 @@ +$NetBSD: patch-cd,v 1.1 2006/06/29 10:58:26 rillig Exp $ + +--- src/c-lex.h.orig 2002-07-02 19:32:38.000000000 +0200 ++++ src/c-lex.h 2006-06-29 12:49:37.000000000 +0200 +@@ -64,7 +64,6 @@ enum rid + + #define NORID RID_UNUSED + +-extern char *traditional token_buffer; /* Pointer to token buffer. */ + extern bool in_system_header; /* TRUE while in system header file */ + extern bool in_prelude; /* TRUE if we're analyzing a prelude (may + span more than one actual file) */ |