diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-01-09 16:17:13 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-01-09 16:17:13 +0000 |
commit | b691c02f8c79b7bac4a606da95849c0c7bcae239 (patch) | |
tree | 58e1c96422c191363218ef456d5221d698bafbdf /hints/linux.sh | |
parent | 11b8faa4b88ddb655238bb84b542f78345a7d7bb (diff) | |
download | perl-b691c02f8c79b7bac4a606da95849c0c7bcae239.tar.gz |
Move usethreads and use64bits logic from hints to Configure.
p4raw-id: //depot/cfgperl@2592
Diffstat (limited to 'hints/linux.sh')
-rw-r--r-- | hints/linux.sh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/hints/linux.sh b/hints/linux.sh index b34967b856..9b69e9b4ac 100644 --- a/hints/linux.sh +++ b/hints/linux.sh @@ -216,21 +216,3 @@ fi # it should be: # ccdlflags='-Wl,-E' -# XXX EXPERIMENTAL A.D. 2/27/1998 -# XXX This script UU/usethreads.cbu will get 'called-back' by Configure -# XXX after it has prompted the user for whether to use threads. -cat > UU/usethreads.cbu <<'EOSH' -case "$usethreads" in -$define|true|[yY]*) - ccflags="-D_REENTRANT $ccflags" - # -lpthread needs to come before -lc but after other libraries such - # as -lgdbm and such like. We assume here that -lc is present in - # libswanted. If that fails to be true in future, then this can be - # changed to add pthread to the very end of libswanted. - set `echo X "$libswanted "| sed -e 's/ c / pthread c /'` - shift - libswanted="$*" - ;; -esac -EOSH -# XXX EXPERIMENTAL --end of call-back |