diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-02-02 13:29:02 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-02-02 13:29:02 +0000 |
commit | 76f47787f7c83dea9178a25fbeb7daf146898ee4 (patch) | |
tree | 39cc591e8f3f07c6194eed97781106b290c07911 /Configure | |
parent | 7aae9294ce1130ca3d4d220d2871f86359f3f256 (diff) | |
download | perl-76f47787f7c83dea9178a25fbeb7daf146898ee4.tar.gz |
Plan 9: doesn't really do Configure (undo #18585/#18586)
p4raw-id: //depot/perl@18624
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 47 |
1 files changed, 21 insertions, 26 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Tue Jan 21 18:59:19 MET 2003 [metaconfig 3.0 PL70] +# Generated on Sun Feb 2 16:33:35 EET 2003 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -1190,17 +1190,6 @@ elif test -d c:/. ; then fi i_whoami='' -ccname='' -ccversion='' -perllibs='' -: set useposix=false in your hint file to disable the POSIX extension. -useposix=true -: set useopcode=false in your hint file to disable the Opcode extension. -useopcode=true -: Trailing extension. Override this in a hint file, if needed. -: Extra object files, if any, needed on this platform. -archobjs='' -archname='' : Possible local include directories to search. : Set locincpth to "" in a hint file to defeat local include searches. locincpth="/usr/local/include /opt/local/include /usr/gnu/include" @@ -1209,6 +1198,12 @@ locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include" : no include file wanted by default inclwanted='' +siteman1='' +siteman3='' +sitescript='' +: Trailing extension. Override this in a hint file, if needed. +: Extra object files, if any, needed on this platform. +archobjs='' groupstype='' libnames='' : change the next line if compiling for Xenix/286 on Xenix/386 @@ -1232,20 +1227,25 @@ plibpth='' libswanted='' : some systems want to use only the non-versioned libso:s ignore_versioned_solibs='' -siteman1='' -siteman3='' -sitescript='' +: full support for void wanted by default +defvoidused=15 + +ccname='' +ccversion='' +perllibs='' +: set useposix=false in your hint file to disable the POSIX extension. +useposix=true +: set useopcode=false in your hint file to disable the Opcode extension. +useopcode=true archname64='' ccflags_uselargefiles='' ldflags_uselargefiles='' libswanted_uselargefiles='' : set usemultiplicity on the Configure command line to enable multiplicity. : set usesocks on the Configure command line to enable socks. +archname='' : set usethreads on the Configure command line to enable threads. usereentrant='undef' -: full support for void wanted by default -defvoidused=15 - : List of libraries we want. : If anyone needs -lnet, put it in a hint file. libswanted='sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl' @@ -5470,11 +5470,6 @@ case "$usenm" in echo "'nm' won't be sufficient on this sytem." >&4 dflt=n fi - if $test "$osname" = plan9; then - echo " " - echo "Whoops! Nm won't work on Plan 9!" >&4 - dflt=n - fi ;; esac case "$dflt" in @@ -10344,7 +10339,7 @@ echo " " echo 'Checking to see if your C compiler knows about "const"...' >&4 $cat >const.c <<'EOCP' typedef struct spug { int drokk; } spug; -main() +int main() { const char *foo; const spug y; @@ -13814,7 +13809,7 @@ $rm -f try.c try echo " " echo 'Checking to see if your C compiler knows about "volatile"...' >&4 $cat >try.c <<'EOCP' -main() +int main() { typedef struct _goo_struct goo_struct; goo_struct * volatile goo = ((goo_struct *)0); @@ -16029,7 +16024,7 @@ eval $inlibc echo " " echo "Checking to see if your C compiler can copy structs..." >&4 $cat >try.c <<'EOCP' -main() +int main() { struct blurfl { int dyick; |