0e062f811d4c8d67798f789aec0b8932a2c95a91
[p5sagit/p5-mst-13.2.git] / os2 / diff.configure
1 --- Configure.dist      Tue Feb 11 09:45:57 1997
2 +++ Configure   Tue Feb 11 09:46:04 1997
3 @@ -1467,7 +1467,7 @@
4         *)
5                 echo "I don't know where '$file' is, and my life depends on it." >&4
6                 echo "Go find a public domain implementation or fix your PATH setting!" >&4
7 -               exit 1
8 +               #exit 1
9                 ;;
10         esac
11  done
12 @@ -1476,7 +1476,9 @@
13  say=offhand
14  for file in $trylist; do
15         xxx=`./loc $file $file $pth`
16 -       eval $file=$xxx
17 +       if test "X$file" != "X$xxx" ; then
18 +               eval $file=$xxx
19 +       fi
20         eval _$file=$xxx
21         case "$xxx" in
22         /*)
23 @@ -3164,7 +3166,7 @@
24         exit(0);
25  }
26  EOM
27 -if $cc -o gccvers gccvers.c >/dev/null 2>&1; then
28 +if $cc -o gccvers gccvers.c $ldflags  >/dev/null 2>&1; then
29         gccversion=`./gccvers`
30         case "$gccversion" in
31         '') echo "You are not using GNU cc." ;;
32 @@ -3367,6 +3369,12 @@
33                 *"-l$thislib "*);;
34                 *) dflt="$dflt -l$thislib";;
35                 esac
36 +       elif xxx=`./loc $thislib.lib X $libpth`; $test -f "$xxx"; then
37 +               echo "Found -l$thislib."
38 +               case " $dflt " in
39 +               *"-l$thislib "*);;
40 +               *) dflt="$dflt -l$thislib";;
41 +               esac
42         else
43                 echo "No -l$thislib."
44         fi
45 @@ -3914,7 +3922,7 @@
46         esac
47         ;;
48  esac
49 -libnames='';
50 +#libnames='';
51  case "$libs" in
52  '') ;;
53  *)  for thislib in $libs; do
54 @@ -4116,6 +4124,10 @@
55         eval $xscan;\
56         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
57                 eval $xrun
58 +elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
59 +       eval $xscan;\
60 +       $contains '^fprintf$' libc.list >/dev/null 2>&1; then
61 +               eval $xrun
62  else
63         nm -p $* 2>/dev/null >libc.tmp
64         $grep fprintf libc.tmp > libc.ptf
65 @@ -4126,23 +4138,33 @@
66                 eval $xrun
67         else
68                 echo " "
69 -               echo "nm didn't seem to work right. Trying ar instead..." >&4
70 +               echo "nm didn't seem to work right. Trying $ar instead..." >&4
71                 com=''
72 -               if ar t $libc > libc.tmp; then
73 -                       for thisname in $libnames; do
74 -                               ar t $thisname >>libc.tmp
75 +               if test "X$osname" = "Xos2"; then ar_opt=tv ; else ar_opt=t ;fi
76 +               if $ar $ar_opt $libc > libc.tmp; then
77 +                       echo \; > libc.tmp
78 +                       for thisname in $libnames $libc; do
79 +                               $ar $ar_opt $thisname >>libc.tmp
80 +                               if test "X$osname" = "Xos2"; then
81 +                                   # Revision 50 of EMX has bug in $ar:
82 +                                   emximp -o tmp.imp $thisname \
83 +                                       2>/dev/null && \
84 +                                       $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
85 +                                       < tmp.imp >>libc.tmp
86 +                                   $rm tmp.imp
87 +                               fi
88                         done
89 -                       $sed -e 's/\.o$//' < libc.tmp > libc.list
90 +                       $sed -e 's/\.o$//' -e 's/^ \+//' < libc.tmp | grep -v "^IMPORT#" > libc.list
91                         echo "Ok." >&4
92                 else
93 -                       echo "ar didn't seem to work right." >&4
94 +                       echo "$ar didn't seem to work right." >&4
95                         echo "Maybe this is a Cray...trying bld instead..." >&4
96                         if bld t $libc | $sed -e 's/.*\///' -e 's/\.o:.*$//' > libc.list
97                         then
98                                 for thisname in $libnames; do
99                                         bld t $libnames | \
100                                         $sed -e 's/.*\///' -e 's/\.o:.*$//' >>libc.list
101 -                                       ar t $thisname >>libc.tmp
102 +                                       $ar t $thisname >>libc.tmp
103                                 done
104                                 echo "Ok." >&4
105                         else
106 @@ -5845,7 +5867,7 @@
107         exit(result);
108  }
109  EOCP
110 -if $cc -o try $ccflags try.c >/dev/null 2>&1; then
111 +if $cc -o try $ccflags try.c $ldflags >/dev/null 2>&1; then
112         ./try
113         yyy=$?
114  else
115 @@ -5926,7 +5948,7 @@
116  
117  }
118  EOCP
119 -if $cc -o try $ccflags try.c >/dev/null 2>&1; then
120 +if $cc -o try $ccflags try.c $ldflags >/dev/null 2>&1; then
121         ./try
122         castflags=$?
123  else
124 @@ -5965,7 +5987,7 @@
125         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
126  }
127  EOF
128 -       if $cc $ccflags vprintf.c -o vprintf >/dev/null 2>&1 && ./vprintf; then
129 +       if $cc $ccflags vprintf.c $ldflags -o vprintf >/dev/null 2>&1 && ./vprintf; then
130                 echo "Your vsprintf() returns (int)." >&4
131                 val2="$undef"
132         else
133 @@ -6310,7 +6332,7 @@
134  EOCP
135  : check sys/file.h first to get FREAD on Sun
136  if $test `./findhdr sys/file.h` && \
137 -               $cc $cppflags "-DI_SYS_FILE" open3.c -o open3 >/dev/null 2>&1 ; then
138 +               $cc $cppflags $ldflags "-DI_SYS_FILE" open3.c -o open3 >/dev/null 2>&1 ; then
139         h_sysfile=true;
140         echo "<sys/file.h> defines the O_* constants..." >&4
141         if ./open3; then
142 @@ -6321,7 +6343,7 @@
143                 val="$undef"
144         fi
145  elif $test `./findhdr fcntl.h` && \
146 -               $cc "-DI_FCNTL" open3.c -o open3 >/dev/null 2>&1 ; then
147 +               $cc "-DI_FCNTL" $ldflags open3.c -o open3 >/dev/null 2>&1 ; then
148         h_fcntl=true;
149         echo "<fcntl.h> defines the O_* constants..." >&4
150         if ./open3; then
151 @@ -6827,7 +6849,7 @@
152  y*|true)
153         usemymalloc='y'
154         mallocsrc='malloc.c'
155 -       mallocobj='malloc.o'
156 +       mallocobj="malloc$obj_ext"
157         d_mymalloc="$define"
158         case "$libs" in
159         *-lmalloc*)
160 @@ -8080,7 +8102,7 @@
161         printf("%d\n", (char *)&try.bar - (char *)&try.foo);
162  }
163  EOCP
164 -       if $cc $ccflags try.c -o try >/dev/null 2>&1; then
165 +       if $cc $ccflags $ldflags try.c -o try >/dev/null 2>&1; then
166                 dflt=`./try`
167         else
168                 dflt='8'
169 @@ -8128,7 +8150,7 @@
170  }
171  EOCP
172         xxx_prompt=y
173 -       if $cc $ccflags try.c -o try >/dev/null 2>&1 && ./try > /dev/null; then
174 +       if $cc $ccflags $ldflags try.c -o try >/dev/null 2>&1 && ./try > /dev/null; then
175                 dflt=`./try`
176                 case "$dflt" in
177                 [1-4][1-4][1-4][1-4]|12345678|87654321)
178 @@ -8550,7 +8572,7 @@
179         printf("%d\n",i);
180  }
181  EOCP
182 -       if $cc try.c -o try >/dev/null 2>&1 ; then
183 +       if $cc $ldflags try.c -o try >/dev/null 2>&1 ; then
184                 dflt=`try`
185         else
186                 dflt='?'
187 @@ -8660,7 +8682,7 @@
188         '') $echo $n ".$c"
189                 if $cc $ccflags \
190                 $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone \
191 -               try.c -o try >/dev/null 2>&1 ; then
192 +               try.c -o try $ldflags >/dev/null 2>&1 ; then
193                         set X $i_time $i_systime $i_systimek $sysselect $s_timeval
194                         shift
195                         flags="$*"
196 @@ -8729,7 +8751,7 @@
197  #endif
198  }
199  EOCP
200 -if $cc $ccflags -DTRYBITS fd_set.c -o fd_set >fd_set.out 2>&1 ; then
201 +if $cc $ccflags $ldflags -DTRYBITS fd_set.c -o fd_set >fd_set.out 2>&1 ; then
202         d_fds_bits="$define"
203         d_fd_set="$define"
204         echo "Well, your system knows about the normal fd_set typedef..." >&4
205 @@ -8746,7 +8768,7 @@
206         $cat <<'EOM'
207  Hmm, your compiler has some difficulty with fd_set.  Checking further...
208  EOM
209 -       if $cc $ccflags fd_set.c -o fd_set >fd_set.out 2>&1 ; then
210 +       if $cc $ccflags $ldflags fd_set.c -o fd_set >fd_set.out 2>&1 ; then
211                 d_fds_bits="$undef"
212                 d_fd_set="$define"
213                 echo "Well, your system has some sort of fd_set available..." >&4
214 @@ -9493,7 +9515,7 @@
215  else
216         echo "false"
217  fi
218 -$rm -f varargs.o
219 +$rm -f varargs$obj_ext
220  EOP
221  chmod +x varargs
222  
223 @@ -9820,7 +9842,7 @@
224         echo " "
225         echo "Stripping down executable paths..." >&4
226         for file in $loclist $trylist; do
227 -               eval $file="\$file"
228 +               if test X$file != Xln -o X$osname != Xos2; then eval $file="\$file"; fi
229         done
230         ;;
231  esac