From: Jarkko Hietaniemi Date: Tue, 18 Jan 2000 10:35:30 +0000 (+0000) Subject: More compile-time options shown with -V. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ac5e8965d00ff99270620198e6784a35953060df;p=p5sagit%2Fp5-mst-13.2.git More compile-time options shown with -V. p4raw-id: //depot/cfgperl@4811 --- diff --git a/perl.c b/perl.c index d7239e8..b23a688 100644 --- a/perl.c +++ b/perl.c @@ -899,6 +899,18 @@ S_parse_body(pTHX_ va_list args) # ifdef USE_THREADS sv_catpv(PL_Sv," USE_THREADS"); # endif +# ifdef USE_ITHREADS + sv_catpv(PL_Sv," USE_ITHREADS"); +# endif +# ifdef USE_64_BITS + sv_catpv(PL_Sv," USE_64_BITS"); +# endif +# ifdef USE_LONG_DOUBLE + sv_catpv(PL_Sv," USE_LONG_DOUBLE"); +# endif +# ifdef USE_SOCKS + sv_catpv(PL_Sv," USE_SOCKS"); +# endif # ifdef PERL_OBJECT sv_catpv(PL_Sv," PERL_OBJECT"); # endif