pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/source-highlight Fixed the "==" operator with...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9e04b5bf562a
branches:  trunk
changeset: 519436:9e04b5bf562a
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Mon Oct 02 23:41:01 2006 +0000

description:
Fixed the "==" operator with test(1).

diffstat:

 textproc/source-highlight/distinfo         |   4 ++--
 textproc/source-highlight/patches/patch-ad |  15 ++++++++++++---
 2 files changed, 14 insertions(+), 5 deletions(-)

diffs (48 lines):

diff -r b2c3a55227b5 -r 9e04b5bf562a textproc/source-highlight/distinfo
--- a/textproc/source-highlight/distinfo        Mon Oct 02 23:39:22 2006 +0000
+++ b/textproc/source-highlight/distinfo        Mon Oct 02 23:41:01 2006 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.14 2006/02/07 16:30:43 joerg Exp $
+$NetBSD: distinfo,v 1.15 2006/10/02 23:41:01 rillig Exp $
 
 SHA1 (source-highlight-2.1.2.tar.gz) = 378ff93218a29db42f9b56e3c88fb18751686259
 RMD160 (source-highlight-2.1.2.tar.gz) = f4a54515efb7952a0f5105bc97d60929c726fd2f
@@ -6,7 +6,7 @@
 SHA1 (patch-aa) = e4911d6c15c81fd1a24f517c0e5a7d3302c62656
 SHA1 (patch-ab) = 51752354b791007ffbe2ec560d322a0526036951
 SHA1 (patch-ac) = b2c5e51a85660d0e298dbfca6f3a335dde68b3d3
-SHA1 (patch-ad) = 94ed755464db572c0f56d8411bb11d69a0c1382b
+SHA1 (patch-ad) = 85096ce664b2b3a60ed30314f5bea4b8584cb5a6
 SHA1 (patch-ae) = 1695543aaee9a414fe0267c8e4798be7ed507760
 SHA1 (patch-af) = 6131f0c5be4c6c0819abc591fd0f8a7a6ab8a05a
 SHA1 (patch-ag) = 469d098f73ab695a46bf3ac4a69f033f85f676e8
diff -r b2c3a55227b5 -r 9e04b5bf562a textproc/source-highlight/patches/patch-ad
--- a/textproc/source-highlight/patches/patch-ad        Mon Oct 02 23:39:22 2006 +0000
+++ b/textproc/source-highlight/patches/patch-ad        Mon Oct 02 23:41:01 2006 +0000
@@ -1,7 +1,7 @@
-$NetBSD: patch-ad,v 1.6 2006/02/07 16:30:44 joerg Exp $
+$NetBSD: patch-ad,v 1.7 2006/10/02 23:41:01 rillig Exp $
 
---- configure.orig     2005-08-25 14:11:30.000000000 +0000
-+++ configure
+--- configure.orig     2005-08-25 16:11:30.000000000 +0200
++++ configure  2006-10-03 01:34:07.000000000 +0200
 @@ -309,7 +309,7 @@ ac_includes_default="\
  # include <unistd.h>
  #endif"
@@ -91,6 +91,15 @@
    { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    (eval $ac_try) 2>&5
    ac_status=$?
+@@ -2893,7 +2901,7 @@ cat <<EOF >conftest.c
+ int conftest(void){return 0;}
+ EOF
+ ${CXX} -xar -o conftest.a conftest.c >/dev/null 2>&1
+-if test $? == 0; then
++if test $? = 0; then
+   ar_to_use="\$(CXX) -xar -o"
+ else
+   ar_to_use="\$(AR) cru"
 @@ -2978,7 +2986,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_c
    cat conftest.err >&5
    echo "$as_me:$LINENO: \$? = $ac_status" >&5



Home | Main Index | Thread Index | Old Index