diff options
author | joerg <joerg@pkgsrc.org> | 2006-05-28 15:52:37 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-05-28 15:52:37 +0000 |
commit | ab165d4a0de475e39fdaa5e67a50f43783026282 (patch) | |
tree | 17eb11e49d5f8615f1777b3344165ba0baeaf181 /graphics/giram | |
parent | b52e66a3201f7123b43da61a1cfc001ba5bb51e6 (diff) | |
download | pkgsrc-ab165d4a0de475e39fdaa5e67a50f43783026282.tar.gz |
Fix label at end of compound statement.
Diffstat (limited to 'graphics/giram')
-rw-r--r-- | graphics/giram/distinfo | 4 | ||||
-rw-r--r-- | graphics/giram/patches/patch-af | 44 | ||||
-rw-r--r-- | graphics/giram/patches/patch-ag | 12 |
3 files changed, 59 insertions, 1 deletions
diff --git a/graphics/giram/distinfo b/graphics/giram/distinfo index 03d94e55d6b..ca5922badc9 100644 --- a/graphics/giram/distinfo +++ b/graphics/giram/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2005/02/24 08:45:06 agc Exp $ +$NetBSD: distinfo,v 1.9 2006/05/28 15:52:37 joerg Exp $ SHA1 (giram-0.3.5.tar.gz) = f8ecdd1a954315cb9e1356af3b8a3b20fb9f9b41 RMD160 (giram-0.3.5.tar.gz) = 4535ff962ceb68f774e2d8b3176dac9dd9eceed1 @@ -8,3 +8,5 @@ SHA1 (patch-ab) = d26d581019ef91e42c93a4eee01d7b78b69e65f3 SHA1 (patch-ac) = 39ea22c932ff31f70ac0dc71828725a969d529d3 SHA1 (patch-ad) = c161a8cebc9536626e28bc79155a0ab43ff3aee1 SHA1 (patch-ae) = e07c9e06010f7af087f3cc3987ec34a6c15012d2 +SHA1 (patch-af) = f8e67e83c416af1f611503590fca2def1ce14ec2 +SHA1 (patch-ag) = a5787a1574a9a5143b00d4f96e58476e2130f097 diff --git a/graphics/giram/patches/patch-af b/graphics/giram/patches/patch-af new file mode 100644 index 00000000000..0d637003312 --- /dev/null +++ b/graphics/giram/patches/patch-af @@ -0,0 +1,44 @@ +$NetBSD: patch-af,v 1.3 2006/05/28 15:52:37 joerg Exp $ + +--- src/filetypes/povray/LoadPov.c.orig 2006-05-28 15:23:05.000000000 +0000 ++++ src/filetypes/povray/LoadPov.c +@@ -1152,6 +1152,7 @@ static int parse_rel_term(ParsedVector * + break; + default: + /* panic!!! */ ++ break; + } + get_token(); + } +@@ -3238,6 +3239,7 @@ static void parse_directive(gboolean aft + + default: + /*Error("Mis-matched '#case' or '#range'.");*/ ++ break; + } + done = TRUE; + break; +@@ -3303,6 +3305,7 @@ static void parse_directive(gboolean aft + + default: + /* Error("Mis-matched '#end'.");*/ ++ break; + } + done = TRUE; + break; +@@ -4965,6 +4968,7 @@ static int parse_bicubic_patch(ObjectStr + break; + default: + /* panic!!! */ ++ break; + } + get_token(); + } +@@ -5111,6 +5115,7 @@ static int parse_disc(ObjectStruct **pDi + PARSE_FLOAT(HoleRadius) + break; + default: /* nothing */ ++ break; + } + + *pDisc = giram_disc_new(Center, Normal, Radius, HoleRadius); diff --git a/graphics/giram/patches/patch-ag b/graphics/giram/patches/patch-ag new file mode 100644 index 00000000000..831d57aa834 --- /dev/null +++ b/graphics/giram/patches/patch-ag @@ -0,0 +1,12 @@ +$NetBSD: patch-ag,v 1.3 2006/05/28 15:52:37 joerg Exp $ + +--- src/filetypes/povray/SavePov.c.orig 2006-05-28 15:24:52.000000000 +0000 ++++ src/filetypes/povray/SavePov.c +@@ -799,6 +799,7 @@ static void SavePovCamera(FILE *OutFile, + + default: + /* panic */ ++ break; + } + fprintf(OutFile, " location <%g, %g, %g>\n", Camera->Location[0], + Camera->Location[1], |