summaryrefslogtreecommitdiff
path: root/win32/config.bc
Commit message (Collapse)AuthorAgeFilesLines
* The Borland Chainsaw MassacreSteve Hay2011-09-101-1086/+0
| | | | | Remove support for the Borland C++ compiler on Win32, as agreed here: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2011-09/msg00034.html
* Add st_ino size/sign probesH.Merijn Brand2011-07-311-0/+2
| | | | Work initiated by Tony Cook
* sin6_scope_id is supported by Winsock2.Jan Dubois2010-12-211-1/+1
| | | | | The field is missing in the headers included with VC6, but commit 1ab9ebc11 adds it in our win32/include/sys/socket.h.
* Add sin6_scope_id probe (LeoNerd)H.Merijn Brand2010-12-201-0/+1
|
* Add probe for sa_len availability in sockaddr structH.Merijn Brand2010-12-101-0/+1
| | | | Sorry for the huge config_h.SH re-order. Don't know (yet) what caused that
* Always build with crypt() support on WindowsJan Dubois2010-12-071-1/+1
| | | | | | | | The sources did support to drop win32/fcrypt.c from a Perl distribution and build without a crypt() implementation to account for the paranoia around distribution of encryption technology. However sources and binaries have been released for at least 10 years with all the code in place, so there is not much point in making it configurable.
* Add default setting of perl_static_inline='static' to all win32 configs.Andy Dougherty2010-09-231-1/+1
| | | | | Win32 users who know better are invited to change the definitions as appropriate, but this should at least allow it to build.
* Account for GNU "i" extension when checking 'nm' output.H.Merijn Brand2010-08-121-0/+2
| | | | | Add the new static_inline stuff to the "other" config files too Add the missing Glossary parts
* Add d_prctl* for all other OS'sH.Merijn Brand2010-04-131-0/+2
| | | | This was missing from c796e3db23c597b99f07485542338844e61a6a69
* vaproto for the other OS'sH.Merijn Brand2010-01-061-0/+1
| | | | Follow-up to d03b3b00ac22f32af87a752669a46d9d06ae1561
* Detection (and warning) of char size in bitsH.Merijn Brand2009-11-061-0/+1
|
* Convert xsutils.c and lib/attributes.pm to a regular XS extension.Nicholas Clark2009-04-121-1/+1
|
* Remove attrs, which has been deprecated since 1999/10/02.Nicholas Clark2009-04-121-1/+1
|
* IPv6 config variables for the other OS'sH.Merijn Brand2009-03-251-0/+4
| | | | Needs checking
* Update Win32 canned configsSteve Hay2008-12-121-16/+18
| | | | | | | | | Updates the config.* and config_H.* files w.r.t. 34456, 34756/34777, 34950 and 34994. Also adds missing variables (d_ndbm, extern_C and rm_try) and removes a redundant variable (Mcc) to/from the config.* files for completeness. p4raw-id: //depot/perl@35075
* Configure detection of __attribute__((deprecated))Rafael Garcia-Suarez2008-12-031-0/+1
| | | | | | From: "Rafael Garcia-Suarez" <rgarciasuarez@gmail.com> Message-ID: <b77c1dce0812030351j33d7b75ci3e2640b33f36acd9@mail.gmail.com> p4raw-id: //depot/perl@34994
* could we add usedevel to config.h?H.Merijn Brand2008-11-281-0/+1
| | | | | | | | | | | | From: Nicholas Clark <nick@ccl4.org> Date: Thu, 27 Nov 2008 20:28:08 +0000 Message-ID: <20081127202807.GG49335@plum.flirble.org> Subject: Avoid duplicate vendorlib [PATCH] From: Gisle Aas <gisle@activestate.com> Date: Wed, 12 Nov 2008 13:50:34 +0100 Message-Id: <71B06786-4C55-4A76-BE24-C01F89015D45@activestate.com> p4raw-id: //depot/perl@34950
* Re: [PATCH: Configure/NDBM_File] Add prototype detection for NDBM header filesMarcus Holland-Moritz2008-11-081-0/+3
| | | | | Message-ID: <20081108094522.5174608b@r2d2> p4raw-id: //depot/perl@34777
* Define HAS_QUAD on Win32 and introduce new value for QUADKINDSteve Hay2008-10-071-1/+1
| | | | | | | | | where appropriate. This doesn't make much difference on Win32 because IVSIZE is still 4, but access to the appropriate "quad" type is still useful, e.g. for Y2038 support. p4raw-id: //depot/perl@34470
* Refine Win32's s{GM|LOCAL}TIME_{min|max} values based on the output ofSteve Hay2008-10-071-1/+1
| | | | | | | | | Schwern's latest check_max.c program. See: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2008-10/msg00049.html http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2008-10/msg00137.html p4raw-id: //depot/perl@34469
* Add probes for *time64 () functionsH.Merijn Brand2008-10-031-21/+27
| | | | | Add missing config vars p4raw-id: //depot/perl@34456
* Correct the sLOCALTIME_{min|max} values added by #34363 for BCC and VC9Steve Hay2008-09-301-1/+1
| | | | | | (Manually checking with the Configure test programs shows that the values differ fromt he sGMTIME_{min|max} values for these compilers) p4raw-id: //depot/perl@34449
* Add probes for LOCALTIME_max and LOCALTIME_min (y2038 project)H.Merijn Brand2008-09-151-0/+2
| | | p4raw-id: //depot/perl@34363
* Update Win32 canned configsJan Dubois2008-07-091-0/+3
| | | | | | | | | | | | | | | | | | Adds new values introduced by #34105/34107, incorporating this patch: Subject: RE: New probes From: "Jan Dubois" <jand@activestate.com> Message-ID: <072601c8e085$04694860$0d3bd920$@com> The appropriate values for the other compilers were determined by running the probe functions added to Configure by #34105/34112/34114. (Note that VC8 requires an invalid parameter handler to run those functions without crashing, and both VC8 and VC9 need %I64d rather than %ld to output the appropriate values.) Also applies the changes to the config_H.* files, together with changes for #33597/33598/33949 which never got added to them. p4raw-id: //depot/perl@34115
* Propagate new i_gdbm*ndbm variablesAndy Dougherty2008-05-291-0/+2
| | | | | Message-ID: <Pine.LNX.4.64.0805291241070.365@fractal.phys.lafayette.edu> p4raw-id: //depot/perl@33949
* Re: Smoke [5.11.0] 33456 PASS darwin 9.2.0 (macppcG5/1 cpu)Dominic Dunlop2008-03-291-0/+1
| | | | | | | | Message-Id: <3B7752C8-D5A2-452C-B3E0-C453FFCBCAFA@mac.com> [but rename ******* to i_mallocmalloc.U, and then fix up all the files that Porting/checkcfgvar.pl says need i_mallocmalloc declared] p4raw-id: //depot/perl@33598
* Add i_syspoll to all the pre-canned configs.Nicholas Clark2008-03-291-0/+1
| | | p4raw-id: //depot/perl@33597
* Sync win32/config.* with Porting/config.shSteve Hay2008-02-221-1/+1
| | | p4raw-id: //depot/perl@33345
* Fix the misplaced warnings and failing tests caused by the precisionNicholas Clark2008-01-231-0/+1
| | | | | | | | loss warning on ++ and -- by moving the check to Configure time, creating a new config.sh variable nv_overflows_integers_at which contains an constant expression for the value of the NV which can't be incremented by 1.0 p4raw-id: //depot/perl@33049
* Add dtrace supportAndy Armstrong2008-01-111-0/+2
| | | | | | | | | Message-Id: <F4AC553F-7C7F-49C3-98C2-E04681E1004F@hexten.net> with fixups as discussed on list, plus adding usedtrace to Glossary, plus propagating all the new config variables everywhere. (Was there an automatic way to do that? I did it with emacs macros) p4raw-id: //depot/perl@32953
* Add a Configure probe for <assert.h>Nicholas Clark2007-12-221-0/+1
| | | p4raw-id: //depot/perl@32705
* bye bye charsizeH.Merijn Brand2007-08-211-1/+0
| | | | | it is^Wwas always 1 p4raw-id: //depot/perl@31745
* Some Win32 Config fixes for patchlevel and perl_patchlevel:Steve Hay2007-07-091-3/+3
| | | | | | | | | | - Set $Config{patchlevel} to PERL_VERSION (it was previously blank because it was wrongly being set from PATCHLEVEL, which was blank) - Set $Config{perl_patchlevel} and $Config{PERL_PATCHLEVEL} to the value in the top-level ".patch" file if it exists (the former was previously not set, while the latter was previously wrongly set to PERL_VERSION) p4raw-id: //depot/perl@31569
* $Config{useshrplib} should be 'true' rather than 'yes' when usingSteve Hay2007-07-031-1/+1
| | | | | a shared perl library p4raw-id: //depot/perl@31523
* Remove ext/ThreadJerry D. Hedden2007-05-021-1/+1
| | | | | | From: "Jerry D. Hedden" <jdhedden@cpan.org> Message-ID: <1ff86f510704301406t6373912ame78fea5c7a148cf4@mail.gmail.com> p4raw-id: //depot/perl@31114
* microperl plus missing config varsJarkko Hietaniemi2007-04-011-0/+1
| | | | | Message-ID: <460ED79A.5030809@iki.fi> p4raw-id: //depot/perl@30823
* Implement killpg() for MSWin32Jan Dubois2006-12-211-1/+1
| | | | | Message-ID: <m8hjo2pasv3hdbhd1sj9sasen7tm38hrhp@4ax.com> p4raw-id: //depot/perl@29605
* Extend d_pseudofork to Win32-land and set it when appropriateSteve Hay2006-12-051-0/+1
| | | | | (namely, when we have USE_ITHREADS and PERL_IMPLICIT_SYSTEM) p4raw-id: //depot/perl@29469
* Add missing d_printf_format_null/PRINTF_FORMAT_NULL_OK to Win32 cannedSteve Hay2006-11-271-0/+1
| | | | | | | | configs See: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-11/msg00923.html p4raw-id: //depot/perl@29397
* Add missing d_ctermid/HAS_CTERMID to Win32 canned configsSteve Hay2006-11-171-0/+1
| | | p4raw-id: //depot/perl@29298
* Configure patch to add detection for DIR.dd_fd member variableSteve Peters2006-11-081-0/+1
| | | | | | From: "Steve Peters" <steve.peters@gmail.com> Message-ID: <fd7a59d30611042340p5543442ctad306aeb748b6bfe@mail.gmail.com> p4raw-id: //depot/perl@29238
* The non-unix parts for localtime_r_needs_tzsetH.Merijn Brand2006-11-061-0/+1
| | | | | Plus forced Glossary entry. That is a TODO for automation p4raw-id: //depot/perl@29213
* Resync win32/config_H.* and win32/config.* with config_h.SHSteve Hay2006-08-111-1/+5
| | | | | | | | | | and Porting/config.sh respectively No real changes except for the addition of the missing HAS_C99_VARIADIC_MACROS to win32/config_H.* and initialinstalllocation, madlyh, madlyobj and madlysrc to win32/config.* p4raw-id: //depot/perl@28697
* g++ stage 1 reachedJarkko Hietaniemi2006-08-081-0/+1
| | | | | Message-ID: <44D7AA6B.4040802@iki.fi> p4raw-id: //depot/perl@28674
* A Configure probe for C99 variadic macros, based on code from Jarkko.Nicholas Clark2006-05-131-0/+1
| | | p4raw-id: //depot/perl@28189
* Populate pre-canned config.sh files withGisle Aas2006-03-301-0/+2
| | | | | | d_archlib and d_inc_version_list. Ref change 27632. p4raw-id: //depot/perl@27634
* Add a Configure question for mad (Misc Attribute Decoration - Larry'sNicholas Clark2006-03-071-0/+1
| | | | | perl5 to perl[56] convertor), which if set defines PERL_MAD in config.h p4raw-id: //depot/perl@27407
* Make Win32 configuration changes for HAS_BUILTIN_CHOOSE_EXPR andSteve Peters2006-03-031-0/+2
| | | | | HAS_BUILTIN_EXPECT. p4raw-id: //depot/perl@27372
* Remove d_nanosleep from win32 configsSteve Hay2006-01-241-1/+0
| | | | | Change 19899 removed them before, but they have accidentally crept back. p4raw-id: //depot/perl@26936
* Reorder changes made in change 26630Steve Hay2006-01-051-1/+1
| | | | | | (Keep the order in win32/config.* and win32/config_H.* the same as in Configure and config_H.SH for easier diffing) p4raw-id: //depot/perl@26655