Commit | Line | Data |
d1fdab89 |
1 | # svr5 hints, System V Release 5.x (UnixWare 7) |
878143fb |
2 | # mods after mail fm Andy Dougherty |
3 | # Reworked by hops@sco.com Sept/Oct 1999 for UW7.1 platform support |
d1fdab89 |
4 | # Boyd Gerber, gerberb@zenez.com 1999/09/21 for threads support. |
5 | # Originally taken from svr4 hints.sh 21-Sep-98 hops@sco.com |
6 | # which was version of 1996/10/25 by Tye McQueen, tye@metronet.com |
0337d152 |
7 | |
d1fdab89 |
8 | # Use Configure -Dusethreads to enable threads. |
0337d152 |
9 | # Use Configure -Dcc=gcc to use gcc. |
10 | case "$cc" in |
d1fdab89 |
11 | *gcc*) |
12 | # "$gccversion" not set yet |
a4349bea |
13 | if [ "X$gccversion" = "X" ]; then |
14 | # Done too late in Configure if hinted |
15 | gccversion=`$cc --version | sed 's/.*(GCC) *//'` |
16 | fi |
17 | case $gccversion in |
d1fdab89 |
18 | *2.95*) |
19 | ccflags='-fno-strict-aliasing' |
20 | # More optimisation provided in gcc-2.95 causes miniperl to segv. |
21 | # -fno-strict-aliasing is supposed to correct this but |
22 | # if it doesn't and you get segv when the build runs miniperl then |
23 | # disable optimisation as below |
24 | # optimize=' ' |
25 | ;; |
0337d152 |
26 | esac |
d1fdab89 |
27 | ;; |
0337d152 |
28 | esac |
29 | |
d1fdab89 |
30 | # Hardwire the processor to 586 for consistancy with autoconf |
31 | # archname='i586-svr5' |
32 | # -- seems this is generally disliked by perl porters so leave it to float |
33 | |
34 | # Our default setup excludes anything from /usr/ucblib (and consequently dbm) |
35 | # as later modules assume symbols found are available in shared libs |
36 | # On svr5 these are static archives which causes problems for |
37 | # dynamic modules loaded later (and ucblib is a bad dream anyway) |
38 | # |
39 | # However there is a dbm library built from the ucb sources outside ucblib |
40 | # at http://www.sco.com/skunkware (installing into /usr/local) so if we |
41 | # detect this we'll use it. You can change the default |
42 | # (to allow ucblib and its dbm or disallowing non ucb dbm) by |
43 | # changing 'want_*' config values below to '' to disable or otherwise to enable |
44 | |
45 | # Leave leading tabs so Configure doesn't propagate variables to config.sh |
46 | |
878143fb |
47 | want_ucb='' # don't use anything from /usr/ucblib - icky |
48 | want_dbm='yes' # use dbm if can find library in /usr/local/lib |
49 | want_gdbm='yes' # use gdbm if can find library in /usr/local/lib |
50 | want_udk70='' # link with old static libc pieces |
51 | # link with udk70 if building on 7.1 abd want resulting binary |
52 | # to run on uw7.0* - it will link in referenced static symbols |
53 | # of libc that are (now) in the shared libc.so on 7.1 but were |
54 | # not there in 7.0. |
d1fdab89 |
55 | # There are still scenarios where this is still insufficient so |
56 | # overall it is preferable to get ptf7051e |
57 | # ftp://ftp.sco.com/SLS/ptf7051e.Z |
878143fb |
58 | # installed on any/all 7.0 systems and leave the above unset. |
0337d152 |
59 | |
60 | if [ "$want_ucb" ] ; then |
d1fdab89 |
61 | ldflags= '-L/usr/ucblib' |
62 | ccflags='-I/usr/ucbinclude' |
63 | # /usr/ccs/include and /usr/ccs/lib are used implicitly by cc as reqd |
0337d152 |
64 | else |
0337d152 |
65 | libswanted=`echo " $libswanted " | sed -e 's/ ucb / /'` |
66 | glibpth=`echo " $glibpth " | sed -e 's/ \/usr\/ucblib / /'` |
67 | |
d1fdab89 |
68 | # If see libdbm in /usr/local and not overidden assume its the |
69 | # non ucblib rebuild from skunkware and use it |
0337d152 |
70 | if [ ! -f /usr/local/lib/libdbm.so -o ! "$want_dbm" ] ; then |
d1fdab89 |
71 | i_dbm='undef' |
0337d152 |
72 | libswanted=`echo " $libswanted " | sed -e 's/ dbm / /'` |
73 | fi |
74 | fi |
75 | |
878143fb |
76 | if [ ! "$want_gdbm" ] ; then |
77 | i_gdbm='undef' |
0337d152 |
78 | libswanted=`echo " $libswanted " | sed -e 's/ gdbm / /'` |
79 | fi |
80 | |
d1fdab89 |
81 | |
0337d152 |
82 | # Don't use problematic libraries: |
83 | # libmalloc.a - Probably using Perl's malloc() anyway. |
d1fdab89 |
84 | # libc: on UW7 don't want -lc explicitly as native cc gives warnings/errors |
0337d152 |
85 | libswanted=`echo " $libswanted " | sed -e 's/ malloc / /' -e 's/ c / /'` |
86 | |
87 | # remove /shlib and /lib from library search path as both symlink to /usr/lib |
88 | # where runtime shared libc is |
0373784c |
89 | glibpth=`echo " $glibpth " | sed -e 's/ \/shlib / /' -e 's/ \/lib / /'` |
0337d152 |
90 | |
d1fdab89 |
91 | # Don't use BSD emulation pieces (/usr/ucblib) regardless |
92 | # these would probably be autonondetected anyway but ... |
aade5aff |
93 | gconvert_preference='gcvt sprintf' # Try gcvt() before gconvert(). |
d1fdab89 |
94 | d_bcopy='undef' d_bcmp='undef' d_bzero='undef' d_safebcpy='undef' |
95 | d_index='undef' d_killpg='undef' d_getprior='undef' d_setprior='undef' |
96 | d_setlinebuf='undef' |
97 | d_setregid='undef' d_setreuid='undef' # -- in /usr/lib/libc.so.1 |
98 | |
99 | |
0337d152 |
100 | # Broken C-Shell tests (Thanks to Tye McQueen): |
101 | # The OS-specific checks may be obsoleted by the this generic test. |
102 | sh_cnt=`sh -c 'echo /*' | wc -c` |
103 | csh_cnt=`csh -f -c 'glob /*' 2>/dev/null | wc -c` |
104 | csh_cnt=`expr 1 + $csh_cnt` |
105 | if [ "$sh_cnt" -ne "$csh_cnt" ]; then |
106 | echo "You're csh has a broken 'glob', disabling..." >&2 |
107 | d_csh='undef' |
108 | fi |
109 | |
d1fdab89 |
110 | # Unixware-specific problems. UW7 give correctname with uname -s |
0337d152 |
111 | # UnixWare has a broken csh. (This might already be detected above). |
112 | # Configure can't detect memcpy or memset on Unixware 2 or 7 |
113 | # |
114 | # Leave leading tabs on the next two lines so Configure doesn't |
115 | # propagate these variables to config.sh |
116 | uw_ver=`uname -v` |
d1fdab89 |
117 | uw_isuw=`uname -s 2>&1` |
0337d152 |
118 | |
d1fdab89 |
119 | if [ "$uw_isuw" = "UnixWare" ]; then |
0337d152 |
120 | case $uw_ver in |
d1fdab89 |
121 | 7.1*) |
122 | d_csh='undef' |
123 | d_memcpy='define' |
124 | d_memset='define' |
125 | stdio_cnt='((fp)->__cnt)' |
126 | d_stdio_cnt_lval='define' |
127 | stdio_ptr='((fp)->__ptr)' |
128 | d_stdio_ptr_lval='define' |
129 | |
130 | d_bcopy='define' # In /usr/lib/libc.so.1 |
131 | d_setregid='define' # " |
132 | d_setreuid='define' # " |
133 | |
134 | if [ -f /usr/ccs/lib/libcudk70.a -a "$want_udk70" ] ; then |
135 | libswanted=" $libswanted cudk70" |
136 | fi |
137 | ;; |
0337d152 |
138 | 7*) |
139 | d_csh='undef' |
140 | d_memcpy='define' |
141 | d_memset='define' |
142 | stdio_cnt='((fp)->__cnt)' |
143 | d_stdio_cnt_lval='define' |
144 | stdio_ptr='((fp)->__ptr)' |
145 | d_stdio_ptr_lval='define' |
146 | ;; |
147 | esac |
148 | fi |
d1fdab89 |
149 | # End of Unixware-specific tests. |
0337d152 |
150 | |
151 | ############################################################### |
878143fb |
152 | # Dynamic loading section: Is default so it should just happen. |
153 | # set below to explicitly force. |
154 | # usedl='define' |
155 | # dlext='so' |
156 | # dlsrc='dl_dlopen.xs' |
0337d152 |
157 | # |
158 | # ccdlflags : must tell the linker to export all global symbols |
159 | # cccdlflags: must tell the compiler to generate relocatable code |
160 | # lddlflags : must tell the linker to output a shared library |
878143fb |
161 | |
0373784c |
162 | # use shared perl lib if the user doesn't choose otherwise |
973abda3 |
163 | if test "x$useshrplib" = "x"; then |
0373784c |
164 | useshrplib='true' |
165 | fi |
0337d152 |
166 | |
167 | case "$cc" in |
168 | *gcc*) |
878143fb |
169 | ccdlflags='-Xlinker -Bexport ' |
0337d152 |
170 | cccdlflags='-fpic' |
878143fb |
171 | lddlflags='-G ' |
0337d152 |
172 | ;; |
d1fdab89 |
173 | |
0337d152 |
174 | *) |
878143fb |
175 | ccdlflags='-Wl,-Bexport' |
d1fdab89 |
176 | cccdlflags='-Kpic' |
878143fb |
177 | lddlflags='-G -Wl,-Bexport' |
0337d152 |
178 | ;; |
179 | esac |
180 | |
d1fdab89 |
181 | ############################################################################ |
182 | # Thread support |
183 | # use Configure -Dusethreads to enable |
0337d152 |
184 | # This script UU/usethreads.cbu will get 'called-back' by Configure |
185 | # after it has prompted the user for whether to use threads. |
186 | cat > UU/usethreads.cbu <<'EOCBU' |
187 | case "$usethreads" in |
188 | $define|true|[yY]*) |
189 | ccflags="$ccflags" |
0337d152 |
190 | shift |
191 | libswanted="$*" |
192 | case "$cc" in |
193 | *gcc*) |
194 | ccflags="-D_REENTRANT $ccflags -fpic -pthread" |
195 | cccdlflags='-fpic' |
878143fb |
196 | lddlflags='-pthread -G ' |
0337d152 |
197 | ;; |
198 | *) |
199 | ccflags="-D_REENTRANT $ccflags -KPIC -Kthread" |
878143fb |
200 | ccdlflags='-Kthread -Wl,-Bexport' |
0337d152 |
201 | cccdlflags='-KPIC -Kthread' |
878143fb |
202 | lddlflags='-G -Kthread -Wl,-Bexport ' |
203 | ldflags='-Kthread' |
0337d152 |
204 | ;; |
205 | esac |
206 | esac |
207 | EOCBU |
208 | |
0337d152 |
209 | |
d1fdab89 |
210 | d_suidsafe='define' # "./Configure -d" can't figure this out easily |
878143fb |
211 | |
212 | ################## final caveat msgs to builder ############### |
213 | cat <<'EOM' >&4 |
214 | |
215 | If you wish to use dynamic linking, you must use |
216 | LD_LIBRARY_PATH=`pwd`; export LD_LIBRARY_PATH |
217 | or |
218 | setenv LD_LIBRARY_PATH `pwd` |
219 | before running make. |
220 | |
221 | If you are using shared libraries from /usr/local/lib |
222 | for libdbm or libgdbm you may need to set |
223 | LD_RUN_PATH=/usr/local/lib; export LD_RUN_PATH |
224 | in order for Configure to compile the simple test program |
225 | |
226 | EOM |