diff options
author | wiz <wiz@pkgsrc.org> | 2006-05-14 16:50:53 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-05-14 16:50:53 +0000 |
commit | 1d37a1278f8ba3b0c23ca63a809e3d679d1891d9 (patch) | |
tree | b69b63e33f3eaa12720650dd516276f912531db1 /graphics/Coin/patches | |
parent | bf4c010ddc8d34bdeaf31d7ab04ca6342f6b4464 (diff) | |
download | pkgsrc-1d37a1278f8ba3b0c23ca63a809e3d679d1891d9.tar.gz |
Fix configure script for broken hostname implementations that
don't grok options (e.g. Solaris). From Gilles Dauphin in PR 33349.
Diffstat (limited to 'graphics/Coin/patches')
-rw-r--r-- | graphics/Coin/patches/patch-aa | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/graphics/Coin/patches/patch-aa b/graphics/Coin/patches/patch-aa new file mode 100644 index 00000000000..ea2805ce97d --- /dev/null +++ b/graphics/Coin/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2006/05/14 16:50:54 wiz Exp $ + +--- configure.orig 2005-09-19 21:57:49.000000000 +0000 ++++ configure +@@ -25221,7 +25221,7 @@ fi; + + echo "$as_me:$LINENO: checking if user is simian" >&5 + echo $ECHO_N "checking if user is simian... $ECHO_C" >&6 +-case `hostname -d 2>/dev/null || domainname 2>/dev/null || hostname` in ++case `domainname 2>/dev/null || hostname` in + *.sim.no | sim.no ) + sim_ac_simian=true + ;; |