This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Backport Nicholas' changes to Configure for xs_extensions
[metaconfig.git] / U / perl / Extensions.U
CommitLineData
959f3c4c
JH
1?RCS: $Id: Extensions.U,v$
2?RCS:
3?RCS: Copyright (c) 1996-1998, Andy Dougherty
4?RCS:
5?RCS: You may distribute under the terms of either the GNU General Public
6?RCS: License or the Artistic License, as specified in the README file.
7?RCS:
8?RCS: $Log: Extensions.U,v $
9?RCS:
10?MAKE:known_extensions extensions dynamic_ext static_ext nonxs_ext \
11 useposix useopcode : \
3c64a580 12 Myread hint usedl d_sem d_socket i_db i_dbm i_rpcsvcdbm i_gdbm \
4b46a0b2 13 d_ndbm usethreads use5005threads package test cat rsrc \
d0abe53c 14 d_msg d_shm osname use64bitint i_langinfo d_nl_langinfo \
aa1bc9e8 15 libs d_cplusplus sed ls rm contains trnl sort
959f3c4c
JH
16?MAKE: -pick add $@ %<
17?Y:BOTTOM
18?S:known_extensions:
75b514d0
MBT
19?S: This variable holds a list of all extensions (both XS and non-xs)
20?S: included in the package source distribution. This information is
21?S: only really of use during the Perl build, as the list makes no
22?S: distinction between extensions which were build and installed, and
23?S: those which where not. See "extensions" for the list of extensions
24?S: actually built and available.
959f3c4c
JH
25?S:.
26?S:dynamic_ext:
27?S: This variable holds a list of XS extension files we want to
28?S: link dynamically into the package. It is used by Makefile.
29?S:.
30?S:static_ext:
31?S: This variable holds a list of XS extension files we want to
32?S: link statically into the package. It is used by Makefile.
33?S:.
34?S:nonxs_ext:
75b514d0
MBT
35?S: This variable holds a list of all non-xs extensions built and
36?S: installed by the package. By default, all non-xs extensions
37?S: distributed will be built, with the exception of platform-specific
38?S: extensions (currently only one VMS specific extension).
959f3c4c
JH
39?S:.
40?S:extensions:
41?S: This variable holds a list of all extension files (both XS and
75b514d0 42?S: non-xs) installed with the package. It is propagated to Config.pm
4dd7201d 43?S: and is typically used to test whether a particular extension
959f3c4c
JH
44?S: is available.
45?S:.
46?S:useposix:
47?S: This variable holds either 'true' or 'false' to indicate
48?S: whether the POSIX extension should be used. The sole
49?S: use for this currently is to allow an easy mechanism
50?S: for hints files to indicate that POSIX will not compile
51?S: on a particular system.
52?S:.
53?S:useopcode:
54?S: This variable holds either 'true' or 'false' to indicate
55?S: whether the Opcode extension should be used. The sole
56?S: use for this currently is to allow an easy mechanism
57?S: for users to skip the Opcode extension from the Configure
58?S: command line.
59?S:.
75b514d0 60?T:xxx avail_ext this_ext tdir xs_extensions nonxs_extensions find_extensions
959f3c4c
JH
61?INIT:: set useposix=false in your hint file to disable the POSIX extension.
62?INIT:useposix=true
63?INIT:: set useopcode=false in your hint file to disable the Opcode extension.
64?INIT:useopcode=true
3ae30915
JH
65?LINT:extern noextensions
66?LINT:extern onlyextensions
946dea48 67?T:keepextensions i
d7a2632b 68: Check extensions
959f3c4c
JH
69echo " "
70echo "Looking for extensions..." >&4
75b514d0
MBT
71: If we are using the old config.sh, nonxs_extensions and xs_extensions may
72: contain old or inaccurate or duplicate values.
959f3c4c 73nonxs_extensions=''
75b514d0 74xs_extensions=''
959f3c4c
JH
75: We do not use find because it might not be available.
76: We do not just use MANIFEST because the user may have dropped
77: some additional extensions into the source tree and expect them
78: to be built.
79
80: Function to recursively find available extensions, ignoring DynaLoader
81: NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
8747f5ce 82: In 5.10.1 and later, extensions are stored in directories
407204de 83: like File-Glob instead of the older File/Glob/.
959f3c4c
JH
84find_extensions='
85 for xxx in *; do
ba5f32a3
MB
86 case "$xxx" in
87 DynaLoader|dynaload) ;;
88 *)
cac33f20 89 this_ext=`echo $xxx | $sed -e s/-/\\\//g`;
75b514d0
MBT
90 echo " $xs_extensions $nonxs_extensions" > $$.tmp;
91 if $contains " $this_ext " $$.tmp; then
92 echo >&4;
93 echo "Duplicate directories detected for extension $xxx" >&4;
94 echo "Configure cannot correctly recover from this - shall I abort?" >&4;
95 case "$knowitall" in
96 "") dflt=y;;
97 *) dflt=n;;
98 esac;
99 . ../UU/myread;
100 case "$ans" in
101 n*|N*) ;;
102 *) echo >&4;
103 echo "Ok. Stopping Configure." >&4;
104 echo "Please remove the duplicate directory (e.g. using git clean) and then re-run Configure" >&4;
105 exit 1;;
106 esac;
107 echo "Ok. You will need to correct config.sh before running make." >&4;
108 fi;
109 $ls -1 $xxx > $$.tmp;
110 if $contains "\.xs$" $$.tmp > /dev/null 2>&1; then
111 xs_extensions="$xs_extensions $this_ext";
112 elif $contains "\.c$" $$.tmp > /dev/null 2>&1; then
113 xs_extensions="$xs_extensions $this_ext";
114 elif $test -d $xxx; then
115 nonxs_extensions="$nonxs_extensions $this_ext";
116 fi;
117 $rm -f $$.tmp;
ba5f32a3
MB
118 ;;
119 esac;
959f3c4c
JH
120 done'
121tdir=`pwd`
473e3a1b
MB
122cd "$rsrc/cpan"
123set X
124shift
125eval $find_extensions
2e336f39
MB
126cd "$rsrc/dist"
127set X
128shift
129eval $find_extensions
3720fc47 130cd "$rsrc/ext"
86a2f2c4 131set X
959f3c4c
JH
132shift
133eval $find_extensions
75b514d0 134set X $xs_extensions
959f3c4c 135shift
75b514d0 136xs_extensions=`echo "$*" | tr ' ' $trnl | $sort | tr $trnl ' '`
4823dbc4
MB
137set X $nonxs_extensions
138shift
aa1bc9e8 139nonxs_extensions=`echo "$*" | tr ' ' $trnl | $sort | tr $trnl ' '`
3720fc47 140cd "$tdir"
75b514d0 141known_extensions=`echo $nonxs_extensions $xs_extensions | tr ' ' $trnl | $sort | tr $trnl ' '`
959f3c4c
JH
142
143: Now see which are supported on this system.
144?X: avail_ext lists available XS extensions.
145avail_ext=''
75b514d0 146for xxx in $xs_extensions ; do
959f3c4c
JH
147 case "$xxx" in
148?X: Handle possible DOS 8.3 filename and case alterations
149 DB_File|db_file)
150 case "$i_db" in
151 $define) avail_ext="$avail_ext $xxx" ;;
152 esac
153 ;;
154 GDBM_File|gdbm_fil)
3c64a580 155 case "$i_gdbm" in
959f3c4c
JH
156 $define) avail_ext="$avail_ext $xxx" ;;
157 esac
158 ;;
dfd712ee 159 I18N/Langinfo|i18n_lan)
3c64a580 160 case "$i_langinfo$d_nl_langinfo" in
0e5a028f
JH
161 $define$define) avail_ext="$avail_ext $xxx" ;;
162 esac
163 ;;
a0e4e5e9
JH
164 IPC/SysV|ipc/sysv)
165 : XXX Do we need a useipcsysv variable here
166 case "${d_msg}${d_sem}${d_shm}" in
167 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
168 esac
169 ;;
959f3c4c 170 NDBM_File|ndbm_fil)
4b46a0b2 171 case "$d_ndbm" in
4ee071c7 172 $define)
33b2427b 173 case "$osname-$use64bitint" in
2862815c 174 hpux-define)
4ee071c7
JH
175 case "$libs" in
176 *-lndbm*) avail_ext="$avail_ext $xxx" ;;
177 esac
178 ;;
179 *) avail_ext="$avail_ext $xxx" ;;
180 esac
181 ;;
959f3c4c
JH
182 esac
183 ;;
3c64a580 184 ODBM_File|odbm_fil)
959f3c4c 185 case "${i_dbm}${i_rpcsvcdbm}" in
4ee071c7 186 *"${define}"*)
a0e4e5e9
JH
187 case "$d_cplusplus" in
188 define) ;; # delete as a function name will not work
189 *) case "$osname-$use64bitint" in
190 hpux-define)
191 case "$libs" in
192 *-ldbm*) avail_ext="$avail_ext $xxx" ;;
193 esac
194 ;;
195 *) avail_ext="$avail_ext $xxx" ;;
4ee071c7
JH
196 esac
197 ;;
4ee071c7
JH
198 esac
199 ;;
959f3c4c
JH
200 esac
201 ;;
a0e4e5e9
JH
202 Opcode|opcode)
203 case "$useopcode" in
959f3c4c
JH
204 true|define|y) avail_ext="$avail_ext $xxx" ;;
205 esac
206 ;;
a0e4e5e9
JH
207 POSIX|posix)
208 case "$useposix" in
959f3c4c
JH
209 true|define|y) avail_ext="$avail_ext $xxx" ;;
210 esac
211 ;;
212 Socket|socket)
3c64a580 213 case "$d_socket" in
a3c22f16 214 true|$define|y) avail_ext="$avail_ext $xxx" ;;
959f3c4c
JH
215 esac
216 ;;
fa92de3e
YST
217 Sys/Syslog|sys/syslog)
218 : XXX syslog requires socket
3c64a580 219 case "$d_socket" in
fa92de3e
YST
220 true|$define|y) avail_ext="$avail_ext $xxx" ;;
221 esac
222 ;;
959f3c4c 223 Thread|thread)
4a2f2b60
JH
224 case "$usethreads" in
225 true|$define|y)
50dd2a3c
MB
226 case "$use5005threads" in
227 $define|true|[yY]*) avail_ext="$avail_ext $xxx" ;;
4a2f2b60 228 esac
80f8756f
JH
229 esac
230 ;;
a0e4e5e9
JH
231 threads|threads/shared)
232 # threads and threads::shared are special cases.
233 # To stop people from asking "Perl 5.8.0 was supposed
234 # to have this new fancy threads implementation but my
235 # perl doesn't have it" and from people trying to
236 # (re)install the threads module using CPAN.pm and
237 # CPAN.pm then offering to reinstall Perl 5.8.0,
238 # the threads.pm and threads/shared.pm will always be
239 # there, croaking informatively ("you need to rebuild
240 # all of Perl with threads, sorry") when threads haven't
241 # been compiled in.
242 # --jhi
243 avail_ext="$avail_ext $xxx"
244 ;;
cac33f20
MB
245 VMS*)
246 ;;
1d5a8f63 247 Win32*)
2ed3374f
JD
248 case "$osname" in
249 cygwin) avail_ext="$avail_ext $xxx" ;;
250 esac
251 ;;
6e939e10
AD
252 XS/APItest|xs/apitest)
253 # This is just for testing. Skip it unless we have dynamic loading.
254
255 case "$usedl" in
256 $define) avail_ext="$avail_ext $xxx" ;;
257 esac
258 ;;
259 XS/Typemap|xs/typemap)
260 # This is just for testing. Skip it unless we have dynamic loading.
261 case "$usedl" in
262 $define) avail_ext="$avail_ext $xxx" ;;
263 esac
264 ;;
959f3c4c
JH
265 *) avail_ext="$avail_ext $xxx"
266 ;;
267 esac
268done
269
270set X $avail_ext
271shift
272avail_ext="$*"
273
3eb2ab03
JH
274case "$onlyextensions" in
275'') ;;
276*) keepextensions=''
04c34a22 277 echo "You have requested that only certain extensions be included..." >&4
3eb2ab03
JH
278 for i in $onlyextensions; do
279 case " $avail_ext " in
280 *" $i "*)
281 echo "Keeping extension $i."
282 keepextensions="$keepextensions $i"
283 ;;
284 *) echo "Ignoring extension $i." ;;
285 esac
286 done
287 avail_ext="$keepextensions"
288 ;;
289esac
290
291case "$noextensions" in
292'') ;;
293*) keepextensions=''
294 echo "You have requested that certain extensions be ignored..." >&4
295 for i in $avail_ext; do
0ec877d1
JH
296 case " $noextensions " in
297 *" $i "*) echo "Ignoring extension $i." ;;
3eb2ab03
JH
298 *) echo "Keeping extension $i.";
299 keepextensions="$keepextensions $i"
300 ;;
301 esac
302 done
303 avail_ext="$keepextensions"
304 ;;
305esac
306
959f3c4c
JH
307: Now see which nonxs extensions are supported on this system.
308: For now assume all are.
309nonxs_ext=''
310for xxx in $nonxs_extensions ; do
311 case "$xxx" in
75b514d0
MBT
312 VMS*)
313 ;;
959f3c4c
JH
314 *) nonxs_ext="$nonxs_ext $xxx"
315 ;;
316 esac
317done
318
319set X $nonxs_ext
320shift
321nonxs_ext="$*"
322
323case $usedl in
324$define)
325 $cat <<EOM
326A number of extensions are supplied with $package. You may choose to
327compile these extensions for dynamic loading (the default), compile
328them into the $package executable (static loading), or not include
329them at all. Answer "none" to include no extensions.
330Note that DynaLoader is always built and need not be mentioned here.
331
332EOM
333 case "$dynamic_ext" in
a7eb1db8
MB
334 '')
335 : Exclude those listed in static_ext
336 dflt=''
337 for xxx in $avail_ext; do
338 case " $static_ext " in
339 *" $xxx "*) ;;
340 *) dflt="$dflt $xxx" ;;
341 esac
342 done
343 set X $dflt
344 shift
345 dflt="$*"
346 ;;
959f3c4c
JH
347 *) dflt="$dynamic_ext"
348 # Perhaps we are reusing an old out-of-date config.sh.
349 case "$hint" in
350 previous)
351 if test X"$dynamic_ext" != X"$avail_ext"; then
352 $cat <<EOM
3c64a580
RGS
353NOTICE: Your previous config.sh list may be incorrect.
354The extensions now available to you are
959f3c4c
JH
355 ${avail_ext}
356but the default list from your previous config.sh is
3c64a580 357 ${dynamic_ext}
959f3c4c
JH
358
359EOM
360 fi
361 ;;
362 esac
363 ;;
364 esac
365 case "$dflt" in
366 '') dflt=none;;
367 esac
368 rp="What extensions do you wish to load dynamically?"
369 . ./myread
370 case "$ans" in
371?X: Use ' ' so a subsequent Configure will preserve that value.
372 none) dynamic_ext=' ' ;;
373 *) dynamic_ext="$ans" ;;
374 esac
375
376 case "$static_ext" in
377 '')
378 : Exclude those already listed in dynamic linking
379 dflt=''
380 for xxx in $avail_ext; do
381 case " $dynamic_ext " in
382 *" $xxx "*) ;;
383 *) dflt="$dflt $xxx" ;;
384 esac
385 done
386 set X $dflt
387 shift
388 dflt="$*"
389 ;;
3c64a580 390 *) dflt="$static_ext"
959f3c4c
JH
391 ;;
392 esac
393
394 case "$dflt" in
395 '') dflt=none;;
396 esac
397 rp="What extensions do you wish to load statically?"
398 . ./myread
399 case "$ans" in
400?X: Use ' ' so a subsequent Configure will preserve that value.
401 none) static_ext=' ' ;;
402 *) static_ext="$ans" ;;
403 esac
404 ;;
405*)
406 $cat <<EOM
3c64a580
RGS
407A number of extensions are supplied with $package. Answer "none"
408to include no extensions.
959f3c4c
JH
409Note that DynaLoader is always built and need not be mentioned here.
410
411EOM
412 case "$static_ext" in
413 '') dflt="$avail_ext" ;;
414 *) dflt="$static_ext"
415 # Perhaps we are reusing an old out-of-date config.sh.
416 case "$hint" in
417 previous)
418 if test X"$static_ext" != X"$avail_ext"; then
419 $cat <<EOM
3c64a580
RGS
420NOTICE: Your previous config.sh list may be incorrect.
421The extensions now available to you are
959f3c4c
JH
422 ${avail_ext}
423but the default list from your previous config.sh is
3c64a580 424 ${static_ext}
959f3c4c
JH
425
426EOM
427 fi
428 ;;
429 esac
430 ;;
431 esac
432 : Exclude those that are not xs extensions
433 case "$dflt" in
434 '') dflt=none;;
435 esac
436 rp="What extensions do you wish to include?"
437 . ./myread
438 case "$ans" in
439?X: Use ' ' so a subsequent Configure will preserve that value.
440 none) static_ext=' ' ;;
441 *) static_ext="$ans" ;;
442 esac
443 ;;
444esac
3c64a580 445#
75423307
JH
446# Encode is a special case. If we are building Encode as a static
447# extension, we need to explicitly list its subextensions as well.
448# For other nested extensions, this is handled automatically by
449# the appropriate Makefile.PL.
450case " $static_ext " in
451 *" Encode "*) # Add the subextensions of Encode
d23c2a3f 452 cd "$rsrc/cpan"
75423307
JH
453 for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
454 static_ext="$static_ext Encode/$xxx"
75b514d0 455 known_extensions="$known_extensions Encode/$xxx"
75423307
JH
456 done
457 cd "$tdir"
458 ;;
459esac
959f3c4c
JH
460
461set X $dynamic_ext $static_ext $nonxs_ext
462shift
463extensions="$*"
464
9d9aa0de
JH
465# Sanity check: We require an extension suitable for use with
466# AnyDBM_File, as well as Fcntl and IO. (Failure to have these
467# should show up as failures in the test suite, but it's helpful to
468# catch them now.) The 'extensions' list is normally sorted
469# alphabetically, so we need to accept either
470# DB_File ... Fcntl ... IO ....
471# or something like
472# Fcntl ... NDBM_File ... IO ....
1af58dcc
JH
473case " $extensions" in
474*"_File "*" Fcntl "*" IO "*) ;; # DB_File
475*" Fcntl "*"_File "*" IO "*) ;; # GDBM_File
476*" Fcntl "*" IO "*"_File "*) ;; # NDBM_File
3ae30915
JH
477*) echo "WARNING: Extensions DB_File or *DBM_File, Fcntl, and IO not configured." >&4
478 echo "WARNING: The Perl you are building will be quite crippled." >& 4
479 ;;
480esac
481