diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-14 02:45:10 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-14 02:45:10 +0000 |
commit | dd54e26d30a81b40bdec0f233edf31ab5c6a3941 (patch) | |
tree | fd580f6bb0675b1feb75b8ee968c497d4ce3a78f /sysutils/xfe | |
parent | e0461a6624e93cb4a0aaa9ff1f6f36eb759f664c (diff) | |
download | pkgsrc-dd54e26d30a81b40bdec0f233edf31ab5c6a3941.tar.gz |
Fixed "test ==".
Diffstat (limited to 'sysutils/xfe')
-rw-r--r-- | sysutils/xfe/distinfo | 5 | ||||
-rw-r--r-- | sysutils/xfe/patches/patch-ab | 24 | ||||
-rw-r--r-- | sysutils/xfe/patches/patch-ac | 13 |
3 files changed, 28 insertions, 14 deletions
diff --git a/sysutils/xfe/distinfo b/sysutils/xfe/distinfo index 7a632ec2252..1d56d580ca0 100644 --- a/sysutils/xfe/distinfo +++ b/sysutils/xfe/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.5 2006/07/17 19:27:31 wiz Exp $ +$NetBSD: distinfo,v 1.6 2006/10/14 02:47:08 rillig Exp $ SHA1 (xfe-0.88.tar.gz) = 85ea89fcb967f4d566ab68cbb80e49c7ea1e4c46 RMD160 (xfe-0.88.tar.gz) = c208f1dd6e34710e1306394bdae96e9d37f0c739 Size (xfe-0.88.tar.gz) = 973761 bytes SHA1 (patch-aa) = 094df6cbc885332c6364d8cd8a0a8fe6d6fdf281 -SHA1 (patch-ab) = 41b27f54e3b1487ecb5d893d2cf5ff210bb3976f +SHA1 (patch-ab) = 1c4c62bd9058bd09d6bd79fd4a68d7633022d66e +SHA1 (patch-ac) = c104348cf4be6f0095357080d2001530afe8b180 diff --git a/sysutils/xfe/patches/patch-ab b/sysutils/xfe/patches/patch-ab index 105ac7aa885..0c698e90d7a 100644 --- a/sysutils/xfe/patches/patch-ab +++ b/sysutils/xfe/patches/patch-ab @@ -1,7 +1,7 @@ -$NetBSD: patch-ab,v 1.1 2006/07/03 14:15:29 joerg Exp $ +$NetBSD: patch-ab,v 1.2 2006/10/14 02:47:08 rillig Exp $ ---- configure.orig 2005-06-24 08:38:30.000000000 +0000 -+++ configure +--- configure.orig 2006-01-31 14:33:42.000000000 +0100 ++++ configure 2006-10-14 04:40:35.000000000 +0200 @@ -10965,7 +10965,7 @@ if test "${ac_cv_lib_FOX_1_4_fxfindfox+s echo $ECHO_N "(cached) $ECHO_C" >&6 else @@ -20,12 +20,12 @@ $NetBSD: patch-ab,v 1.1 2006/07/03 14:15:29 joerg Exp $ else { { echo "$as_me:$LINENO: error: \"libFOX-1.4 not found\"" >&5 -@@ -13950,6 +13950,8 @@ do - _ACEOF - cat >>$CONFIG_STATUS <<\_ACEOF - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) -+ # Avoid regenerating for rechecks on pkgsrc -+ exit 0 - ac_cs_recheck=: ;; - --version | --vers* | -V ) - echo "$ac_cs_version"; exit 0 ;; +@@ -11830,7 +11830,7 @@ done + if test "${with_static+set}" = set; then + withval="$with_static" + +- if test "x$withval" == "xyes" ; then ++ if test "x$withval" = "xyes" ; then + echo "$as_me:$LINENO: checking for X" >&5 + echo $ECHO_N "checking for X... $ECHO_C" >&6 + diff --git a/sysutils/xfe/patches/patch-ac b/sysutils/xfe/patches/patch-ac new file mode 100644 index 00000000000..8e2c16b6563 --- /dev/null +++ b/sysutils/xfe/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2006/10/14 02:47:08 rillig Exp $ + +--- configure.in.orig 2006-01-31 14:31:55.000000000 +0100 ++++ configure.in 2006-10-14 04:39:35.000000000 +0200 +@@ -47,7 +47,7 @@ dnl Checks if we have to statically link + AC_ARG_WITH(static, + [ --with-static[[=ARG]] Statically link the program [[ARG=yes/no, default=no]]], + [ +- if test "x$withval" == "xyes" ; then ++ if test "x$withval" = "xyes" ; then + dnl Locate X11 libraries and headers (used for static linking) + AC_PATH_X + AC_PATH_XTRA |