View | Details | Raw Unified | Return to bug 44366
Collapse All | Expand All

(-)Configure Mon Oct 21 21:11:16 2002 (-6 / +5 lines)
Lines 18-28 Link Here
18
PATH=".:/bin:/usr/bin:/usr/local/bin:/usr/ucb:/usr/local:/usr/lbin:/etc:/usr/new:/usr/new/bin:/usr/nbin:$PATH"
18
PATH=".:/bin:/usr/bin:/usr/local/bin:/usr/ucb:/usr/local:/usr/lbin:/etc:/usr/new:/usr/new/bin:/usr/nbin:$PATH"
19
export PATH || (echo "OOPS, this isn't sh.  Desperation time.  I will feed myself to sh."; sh $0; kill $$)
19
export PATH || (echo "OOPS, this isn't sh.  Desperation time.  I will feed myself to sh."; sh $0; kill $$)
20
20
21
if test ! -t 0; then
22
    echo "Say 'sh Configure', not 'sh <Configure'"
23
    exit 1
24
fi
25
26
(alias) >/dev/null 2>&1 && \
21
(alias) >/dev/null 2>&1 && \
27
    echo "(I see you are using the Korn shell.  Some ksh's blow up on Configure," && \
22
    echo "(I see you are using the Korn shell.  Some ksh's blow up on Configure," && \
28
    echo "especially on exotic machines.  If yours does, try the Bourne shell instead.)"
23
    echo "especially on exotic machines.  If yours does, try the Bourne shell instead.)"
Lines 2055-2060 Link Here
2055
    libc=/usr/lib/libc.a
2050
    libc=/usr/lib/libc.a
2056
else
2051
else
2057
set /usr/ccs/lib/libc.so
2052
set /usr/ccs/lib/libc.so
2053
test -f $1 || set /usr/lib/libc.a
2058
test -f $1 || set /usr/lib/libc.so
2054
test -f $1 || set /usr/lib/libc.so
2059
test -f $1 || set /usr/lib/libc.so.[0-9]*
2055
test -f $1 || set /usr/lib/libc.so.[0-9]*
2060
test -f $1 || set /lib/libsys_s.a
2056
test -f $1 || set /lib/libsys_s.a
Lines 2496-2502 Link Here
2496
#
2492
#
2497
: see if crypt exists
2493
: see if crypt exists
2498
echo " "
2494
echo " "
2499
if $contains '^crypt$' libc.list >/dev/null 2>&1; then
2495
if $test "$cryptlib" = -lcrypt; then
2496
    echo 'crypt() found.'
2497
    d_crypt="$define"
2498
elif $contains '^crypt$' libc.list >/dev/null 2>&1; then
2500
    echo 'crypt() found.'
2499
    echo 'crypt() found.'
2501
    d_crypt="$define"
2500
    d_crypt="$define"
2502
    cryptlib=''
2501
    cryptlib=''

Return to bug 44366