diff options
author | Chip Salzenberg <chip@atlantic.net> | 1996-12-06 18:56:00 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1996-12-06 18:56:00 +1200 |
commit | 72e5b9dbf80f1f145b123baae3bac637c1cfcf55 (patch) | |
tree | 24907f6518a4ebd8576ce6ea53ad37553b8da1b1 /os2 | |
parent | 57560dc7335aaed00185c3cccea22fe709754f18 (diff) | |
download | perl-72e5b9dbf80f1f145b123baae3bac637c1cfcf55.tar.gz |
_10+ under OS/2
(this is the same change as commit ed7f835f9a39da0c76fb197dc1746d7bd89b9537, but as applied)
Diffstat (limited to 'os2')
-rw-r--r-- | os2/diff.configure | 90 |
1 files changed, 0 insertions, 90 deletions
diff --git a/os2/diff.configure b/os2/diff.configure index cf2ec6748b..d19bf4a823 100644 --- a/os2/diff.configure +++ b/os2/diff.configure @@ -51,38 +51,6 @@ case "$libs" in '') ;; *) for thislib in $libs; do -@@ -3401,12 +3409,14 @@ - : - elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then - : -- elif try=`./loc lib$thislib.a X $libpth`; $test -f "$try"; then -+ elif try=`./loc lib$thislib$lib_ext X $libpth`; $test -f "$try"; then - : - elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then - : - elif try=`./loc $thislib X $libpth`; $test -f "$try"; then - : -+ elif try=`./loc $thislib$lib_ext X $libpth`; $test -f "$try"; then -+ : - elif try=`./loc Slib$thislib.a X $xlibpth`; $test -f "$try"; then - : - else -@@ -3457,11 +3467,11 @@ - fi - elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then - echo "Your C library seems to be in $libc, as you said before." --elif $test -r $incpath/usr/lib/libc.a; then -- libc=$incpath/usr/lib/libc.a; -+elif $test -r $incpath/usr/lib/libc$lib_ext; then -+ libc=$incpath/usr/lib/libc$lib_ext; - echo "Your C library seems to be in $libc. That's fine." --elif $test -r /lib/libc.a; then -- libc=/lib/libc.a; -+elif $test -r /lib/libc$lib_ext; then -+ libc=/lib/libc$lib_ext; - echo "Your C library seems to be in $libc. You're normal." - else - if tans=`./loc libc.a blurfl/dyick $libpth`; $test -r "$tans"; then @@ -3583,6 +3593,10 @@ eval $xscan;\ $contains '^fprintf$' libc.list >/dev/null 2>&1; then @@ -171,15 +139,6 @@ echo "Your vsprintf() returns (int)." >&4 val2="$undef" else -@@ -5876,7 +5900,7 @@ - cryptlib=-lcrypt - fi - if $test -z "$cryptlib"; then -- cryptlib=`./loc libcrypt.a "" $libpth` -+ cryptlib=`./loc libcrypt$lib_ext "" $libpth` - else - cryptlib=-lcrypt - fi @@ -6148,7 +6172,7 @@ EOCP : check sys/file.h first to get FREAD on Sun @@ -207,30 +166,6 @@ d_mymalloc="$define" case "$libs" in *-lmalloc*) -@@ -7286,10 +7310,10 @@ - : we will have to assume that it supports the 4.2 BSD interface - d_oldsock="$undef" - else -- echo "You don't have Berkeley networking in libc.a..." >&4 -- if test -f /usr/lib/libnet.a; then -- ( (nm $nm_opt /usr/lib/libnet.a | eval $nm_extract) || \ -- ar t /usr/lib/libnet.a) 2>/dev/null >> libc.list -+ echo "You don't have Berkeley networking in libc$lib_ext..." >&4 -+ if test -f /usr/lib/libnet$lib_ext; then -+ ( (nm $nm_opt /usr/lib/libnet$lib_ext | eval $nm_extract) || \ -+ $ar t /usr/lib/libnet$lib_ext) 2>/dev/null >> libc.list - if $contains socket libc.list >/dev/null 2>&1; then - echo "...but the Wollongong group seems to have hacked it in." >&4 - socketlib="-lnet" -@@ -7302,7 +7326,7 @@ - d_oldsock="$define" - fi - else -- echo "or even in libnet.a, which is peculiar." >&4 -+ echo "or even in libnet$lib_ext, which is peculiar." >&4 - d_socket="$undef" - d_oldsock="$undef" - fi @@ -7867,7 +7891,7 @@ printf("%d\n", (char *)&try.bar - (char *)&try.foo); } @@ -258,31 +193,6 @@ dflt=`try` else dflt='?' -@@ -8364,18 +8388,18 @@ - $cc $ccflags -c bar1.c >/dev/null 2>&1 - $cc $ccflags -c bar2.c >/dev/null 2>&1 - $cc $ccflags -c foo.c >/dev/null 2>&1 --ar rc bar.a bar2.o bar1.o >/dev/null 2>&1 --if $cc $ccflags $ldflags -o foobar foo.o bar.a $libs > /dev/null 2>&1 && -+$ar rc bar$lib_ext bar2$obj_ext bar1$obj_ext >/dev/null 2>&1 -+if $cc $ccflags $ldflags -o foobar foo$obj_ext bar$lib_ext $libs > /dev/null 2>&1 && - ./foobar >/dev/null 2>&1; then -- echo "ar appears to generate random libraries itself." -+ echo "$ar appears to generate random libraries itself." - orderlib=false - ranlib=":" --elif ar ts bar.a >/dev/null 2>&1 && -- $cc $ccflags $ldflags -o foobar foo.o bar.a $libs > /dev/null 2>&1 && -+elif $ar ts bar$lib_ext >/dev/null 2>&1 && -+ $cc $ccflags $ldflags -o foobar foo$obj_ext bar$lib_ext $libs > /dev/null 2>&1 && - ./foobar >/dev/null 2>&1; then - echo "a table of contents needs to be added with 'ar ts'." - orderlib=false -- ranlib="ar ts" -+ ranlib="$ar ts" - else - case "$ranlib" in - :) ranlib='';; @@ -8447,7 +8471,7 @@ '') $echo $n ".$c" if $cc $ccflags \ |