diff options
author | joerg <joerg@pkgsrc.org> | 2006-12-06 18:58:45 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-12-06 18:58:45 +0000 |
commit | 9622f0d3feefa6f49618f3b635cefe4bd7fb3f67 (patch) | |
tree | 197cb24d2b489a1d266d057adbd7a18d50b83056 /devel | |
parent | 7379bea76c1bee8f1cecef35afd26e54771e0599 (diff) | |
download | pkgsrc-9622f0d3feefa6f49618f3b635cefe4bd7fb3f67.tar.gz |
Fix portability (==).
Diffstat (limited to 'devel')
-rw-r--r-- | devel/rapidsvn/distinfo | 3 | ||||
-rw-r--r-- | devel/rapidsvn/patches/patch-ab | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/devel/rapidsvn/distinfo b/devel/rapidsvn/distinfo index f1068fc8b71..b24bc45d850 100644 --- a/devel/rapidsvn/distinfo +++ b/devel/rapidsvn/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.11 2006/09/24 16:04:00 joerg Exp $ +$NetBSD: distinfo,v 1.12 2006/12/06 18:58:45 joerg Exp $ SHA1 (rapidsvn-0.9.3.tar.gz) = 71a57ffb4f7944191df51c4a2a87f1c971567543 RMD160 (rapidsvn-0.9.3.tar.gz) = 316904503ab1a067fb14b0567d6e28bc2a6ad6c5 Size (rapidsvn-0.9.3.tar.gz) = 998268 bytes SHA1 (patch-aa) = 05867a8dde1c9c4db512e40e99be20c89b1f3576 +SHA1 (patch-ab) = 93482d2379eaa6ad6096ad754bd0fba6074ca094 diff --git a/devel/rapidsvn/patches/patch-ab b/devel/rapidsvn/patches/patch-ab new file mode 100644 index 00000000000..b8fa76d5309 --- /dev/null +++ b/devel/rapidsvn/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2006/12/06 18:58:45 joerg Exp $ + +--- configure.orig 2006-12-06 18:43:28.000000000 +0000 ++++ configure +@@ -18665,7 +18665,7 @@ CPPFLAGS="$CPPFLAGS -I$abs_srcdir/includ + + echo "$as_me:$LINENO: checking for gcc/g++" >&5 + echo $ECHO_N "checking for gcc/g++... $ECHO_C" >&6 +-if test "$GXX" == "yes" ; then ++if test "$GXX" = "yes" ; then + echo "$as_me:$LINENO: result: found (using \"-Wall\" and \"-fexceptions\")" >&5 + echo "${ECHO_T}found (using \"-Wall\" and \"-fexceptions\")" >&6 + CPPFLAGS="$CPPFLAGS -Wall -fexceptions" |