diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2003-03-26 06:51:12 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2003-03-26 06:51:12 +0000 |
commit | aab07175ca1d9e14de490c7e87ffbe679e11c8d3 (patch) | |
tree | 9a15ffb7bb50ed374c2d5854e3703531cac9202c /devel/clo++/files/patch-src::contrib::xmlwrapp-0.2.2::configure.pl | |
parent | o Update to 1.12[1]. (diff) |
Update to version 0.6.2
PR: 45978
Submitted by: Stefan Farfeleder <stefan@fafoe.dyndns.org>
Notes
Notes:
svn path=/head/; revision=77468
Diffstat (limited to 'devel/clo++/files/patch-src::contrib::xmlwrapp-0.2.2::configure.pl')
-rw-r--r-- | devel/clo++/files/patch-src::contrib::xmlwrapp-0.2.2::configure.pl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/clo++/files/patch-src::contrib::xmlwrapp-0.2.2::configure.pl b/devel/clo++/files/patch-src::contrib::xmlwrapp-0.2.2::configure.pl new file mode 100644 index 000000000000..6e2670c38bcc --- /dev/null +++ b/devel/clo++/files/patch-src::contrib::xmlwrapp-0.2.2::configure.pl @@ -0,0 +1,11 @@ +--- src/contrib/xmlwrapp-0.2.2/configure.pl.orig Tue Jan 28 18:41:25 2003 ++++ src/contrib/xmlwrapp-0.2.2/configure.pl Tue Jan 28 18:41:43 2003 +@@ -191,7 +191,7 @@ + print "$output "; + + if ($output =~ /^(\d+\.\d+)\.(\d+)$/) { +- if ($1 >= 2.4 && $2 >= 7) { ++ if ($1 > 2.4 || ($1 == 2.4 && $2 >= 7)) { + print "[good]\n"; + } else { + print "[fail]\n"; |