diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-02-26 04:25:40 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-02-26 04:25:40 +0000 |
commit | 924b3ec4f489a98ec4753478b6e6dcb35be8bf12 (patch) | |
tree | c2f9d49ad208c758737d499214ed65cf5d3722fc /win32/config.vc | |
parent | d613ef02e4bf2ccbbac161910d879e49ce35ecd8 (diff) | |
download | perl-924b3ec4f489a98ec4753478b6e6dcb35be8bf12.tar.gz |
[win32] various changes to make win32 build under the new Configure & co.
- added byterun.c to core C build
- makefile.mk now has a regen_config_h target to quickly update config_H.[bgv]c
after adding new variables to config.[bgv]c
- sig_name_init now has only the valid signals
- we now have $Config{usethreads}
- tested under the two commercial compilers w/ and w/o usethreads
p4raw-id: //depot/win32/perl@590
Diffstat (limited to 'win32/config.vc')
-rw-r--r-- | win32/config.vc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/win32/config.vc b/win32/config.vc index a7abb31854..486794d248 100644 --- a/win32/config.vc +++ b/win32/config.vc @@ -23,7 +23,6 @@ prefix='~INST_DRV~' privlibexp='~INST_TOP~\lib' sharpbang='#!' shsharp='true' -sig_name='ZERO HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM USR1 USR2 CHLD PWR WINCH URG IO STOP TSTP CONT TTIN TTOU VTALRM PROF XCPU XFSZ WAITING LWP FREEZE THAW RTMIN NUM37 NUM38 NUM39 NUM40 NUM41 NUM42 RTMAX IOT CLD POLL' so='dll' startsh='#!/bin/sh' static_ext='DynaLoader' @@ -435,6 +434,7 @@ perladmin='' perlpath='~INST_TOP~\bin\perl.exe' pg='' phostname='hostname' +pidtype='int' plibpth='' pmake='' pr='' @@ -457,7 +457,9 @@ shar='' shmattype='void *' shortsize='2' shrpdir='none' -sig_num='0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 6 18 22' +sig_name='ZERO INT ILL FPE SEGV TERM BREAK ABRT' +sig_name_init='"ZERO", "INT", "ILL", "FPE", "SEGV", "TERM", "BREAK", "ABRT", 0' +sig_num='0, 2, 4, 8, 11, 15, 21, 22, 0' signal_t='void' sitearch='~INST_TOP~\lib\site\~archname~' sitearchexp='~INST_TOP~\lib\site\~archname~' @@ -501,6 +503,7 @@ usenm='false' useperlio='undef' useposix='true' usesafe='true' +usethreads='undef' usevfork='false' usrinc='/usr/include' uuname='' |