diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-14 01:14:15 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-14 01:14:15 +0000 |
commit | 57811b648fe720c958e00bce85988cec7f5b011d (patch) | |
tree | d3d86f44c97cbdf8211e190c065917a9bcb5b648 /graphics/freeglut | |
parent | 4c9668bb5b21db302deeba8d660c552bde40c19e (diff) | |
download | pkgsrc-57811b648fe720c958e00bce85988cec7f5b011d.tar.gz |
Fixed "test ==".
Diffstat (limited to 'graphics/freeglut')
-rw-r--r-- | graphics/freeglut/distinfo | 3 | ||||
-rw-r--r-- | graphics/freeglut/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/graphics/freeglut/distinfo b/graphics/freeglut/distinfo index 8bfcde8789d..9c663b617e3 100644 --- a/graphics/freeglut/distinfo +++ b/graphics/freeglut/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2005/02/24 08:45:05 agc Exp $ +$NetBSD: distinfo,v 1.3 2006/10/14 01:17:47 rillig Exp $ SHA1 (freeglut-2.2.0.tar.gz) = 87c762bd9653fe844f67e1944f1397061b590dc8 RMD160 (freeglut-2.2.0.tar.gz) = 854de841d634074aac0df1cd62c8ca236570419a Size (freeglut-2.2.0.tar.gz) = 384055 bytes +SHA1 (patch-aa) = 94fbd8965fa42db9c6c57c2b4089c764f9e7bcc0 diff --git a/graphics/freeglut/patches/patch-aa b/graphics/freeglut/patches/patch-aa new file mode 100644 index 00000000000..d072f492357 --- /dev/null +++ b/graphics/freeglut/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2006/10/14 01:17:47 rillig Exp $ + +--- configure.orig 2006-10-14 03:16:15.000000000 +0200 ++++ configure 2006-10-14 03:16:35.000000000 +0200 +@@ -6880,7 +6880,7 @@ fi + # Check whether --enable-warnings or --disable-warnings was given. + if test "${enable_warnings+set}" = set; then + enableval="$enable_warnings" +- if test "x$GCC" == xyes ++ if test "x$GCC" = xyes + then + CFLAGS="$CFLAGS -Wall -Wno-parentheses -Werror" + fi |