diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-02-25 20:41:07 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-02-25 20:41:07 +0000 |
commit | ca8cfa5475011a74e81458daa0cc5b23c374bc3a (patch) | |
tree | 4e29472ea85d843c4006913c8405e5ec79265407 /Configure | |
parent | 2bb14304c505556bf183ed7772a95e259fa0724d (diff) | |
download | perl-ca8cfa5475011a74e81458daa0cc5b23c374bc3a.tar.gz |
Temporary workaround for the config_h.SH versus
crosscompile and multiarch plus introduce 'rt'
to $libswanted: in UNIX98 sched_yield() lives there.
p4raw-id: //depot/cfgperl@3025
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 35 |
1 files changed, 20 insertions, 15 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Mon Feb 22 11:28:58 EET 1999 [metaconfig 3.0 PL70] +# Generated on Thu Feb 25 22:44:22 EET 1999 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.com) cat >/tmp/c1$$ <<EOF @@ -932,7 +932,8 @@ useopcode=true : List of libraries we want. : If anyone needs -lnet, put it in a hint file. libswanted='sfio socket inet nsl nm ndbm gdbm dbm db malloc dl' -libswanted="$libswanted dld ld sun m c cposix posix ndir dir crypt" +libswanted="$libswanted dld ld sun m rt c cposix posix" +libswanted="$libswanted ndir dir crypt" libswanted="$libswanted ucb bsd BSD PW x" : We probably want to search /usr/shlib before most other libraries. : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist. @@ -4541,10 +4542,6 @@ else installbin="$binexp" fi -case "$crosscompile" in -''|[nN]*) crosscompile="$undef" ;; -esac - : determine whether to install perl also as /usr/bin/perl echo " " @@ -5725,13 +5722,6 @@ case "$man3dir" in ;; esac -case "$osname" in -next) multiarch="$define" ;; -esac -case "$multiarch" in -''|[nN]*) multiarch="$undef" ;; -esac - : see if we have to deal with yellow pages, now NIS. if $test -d /usr/etc/yp || $test -d /etc/yp; then if $test -f /usr/etc/nibindd; then @@ -10294,11 +10284,24 @@ Log='$Log' RCSfile='$RCSfile' Revision='$Revision' +case "$crosscompile" in +''|[nN]*) crosscompile="$undef" ;; +esac + +case "$osname" in +next) multiarch="$define" ;; +esac +case "$multiarch" in +''|[nN]*) multiarch="$undef" ;; +esac + : check for alignment requirements echo " " case "$crosscompile$multiarch" in *$define*) -You seem to be cross-compiling, skipping the memory alignment check. + $cat <<EOM +You seem to be either cross-compiling or doing a multiarchitecture build, +skipping the memory alignment check. EOM case "$alignbytes" in @@ -10342,9 +10345,11 @@ echo " " case "$crosscompile$multiarch" in *$define*) $cat <<EOM -You seem to be cross-compiling, I'm skipping the byteorder check. +You seem to be either cross-compiling or doing a multiarchitecture build, +skipping the byteorder check. EOM + byteorder='' ;; *) case "$byteorder" in |