summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorH.Merijn Brand <h.m.brand@xs4all.nl>2008-11-28 07:52:03 +0000
committerDavid Mitchell <davem@iabyn.com>2009-01-27 21:41:48 +0000
commitf50912c9165a8103faa34a80d510ca30962568fb (patch)
tree342887c273d022cd985bd1e28718705bcb9f5106 /Configure
parenta9d5417f3e7dccb0bf466f8aacc44d0269d0cc23 (diff)
downloadperl-f50912c9165a8103faa34a80d510ca30962568fb.tar.gz
could we add usedevel to config.h?
From: Nicholas Clark <nick@ccl4.org> Date: Thu, 27 Nov 2008 20:28:08 +0000 Message-ID: <20081127202807.GG49335@plum.flirble.org> Subject: Avoid duplicate vendorlib [PATCH] From: Gisle Aas <gisle@activestate.com> Date: Wed, 12 Nov 2008 13:50:34 +0100 Message-Id: <71B06786-4C55-4A76-BE24-C01F89015D45@activestate.com> p4raw-id: //depot/perl@34950 (cherry picked from commit 1be1b388c18674b89d106c333a2dd62d9b736e29)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure13
1 files changed, 11 insertions, 2 deletions
diff --git a/Configure b/Configure
index e85370c06f..8f0dc2940a 100755
--- a/Configure
+++ b/Configure
@@ -25,7 +25,7 @@
# $Id: Head.U 6 2006-08-25 22:21:46Z rmanfredi $
#
-# Generated on Thu Nov 6 21:06:19 CET 2008 [metaconfig 3.5 PL0]
+# Generated on Fri Nov 28 08:39:51 CET 2008 [metaconfig 3.5 PL0]
# (with additional metaconfig patches by perlbug@perl.org)
cat >c1$$ <<EOF
@@ -209,6 +209,7 @@ to=''
usecrosscompile=''
extern_C=''
mistrustnm=''
+usedevel=''
perllibs=''
dynamic_ext=''
extensions=''
@@ -2142,7 +2143,8 @@ EOF
: See if we are using a devel version and want that
xversion=`awk '/define[ ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
case "$usedevel" in
-$define|true|[yY]*) ;;
+$define|true|[yY]*)
+ usedevel="$define" ;;
*) case "$xversion" in
*[13579])
cat >&4 <<EOH
@@ -2175,6 +2177,7 @@ EOH
esac
;;
esac
+ usedevel="$undef"
;;
esac
case "$usedevel" in
@@ -7021,6 +7024,11 @@ case "$vendorprefix" in
esac
prefixvar=vendorarch
. ./installprefix
+if $test X"$vendorarch" = X"$vendorlib"; then
+ d_vendorarch="$undef"
+else
+ d_vendorarch="$define"
+fi
: Final catch-all directories to search
$cat <<EOM
@@ -23030,6 +23038,7 @@ use5005threads='$use5005threads'
use64bitall='$use64bitall'
use64bitint='$use64bitint'
usecrosscompile='$usecrosscompile'
+usedevel='$usedevel'
usedl='$usedl'
usedtrace='$usedtrace'
usefaststdio='$usefaststdio'