summaryrefslogtreecommitdiff
path: root/win32/config.vc
Commit message (Collapse)AuthorAgeFilesLines
* [perl #122110] [PATCH] Remove left-over mad cruftDagfinn Ilmari Mannsåker2014-06-161-3/+0
| | | | | | | | | | | The great MADectomy left some cruft behind: - no_index in META.{yml,json} - $Config{mad} checks in tests - Porting/perlhist_calculate.pl - symbian/config.pl - PERL_XMLDUMP error in perldiag - madly{h,obj,src} in win32/config.{gc,vc}
* Protect against ptrdiff_t not being available.Brian Fraser2014-06-131-0/+1
| | | | | This is primarily for pedantic builds; ptrdiff_t is now standard, and had already been in use in the core without guards.
* Fix cbacktraceH.Merijn Brand2014-06-111-0/+1
|
* Add C backtrace API.Jarkko Hietaniemi2014-06-071-0/+4
| | | | | | | | Useful for at least debugging. Supported in Linux and OS X (possibly to some extent in *BSD). See perlhacktips for details.
* Enable new wcs variables for Win32H.Merijn Brand2014-06-051-2/+2
|
* undoubled bad quotingH.Merijn Brand2014-06-051-2/+2
|
* Probe for working wcscmp and wcsxfrmH.Merijn Brand2014-06-051-0/+2
|
* Added targetsh to all the canned config filesBrian Fraser2014-01-231-0/+1
|
* Purge sfio support from configure.com, Configure and related files.Nicholas Clark2013-12-271-3/+0
| | | | | | | Most of these are actually generated, so the maintenance complexity reduction is not as impressive as the diffstat suggests. (Incorporating a fix from Merijn)
* enable LTO/LTCG/WPO for most Visual CsDaniel Dragan2013-10-291-1/+1
| | | | | All Win32 Visual C compilers except for VC 6/_MSC_VER == 1200 support LTCG. LTCG generates slightly smaller and slightly faster binaries.
* Regenerate Configure and chainsaw voidflagsH.Merijn Brand2013-09-161-2/+0
|
* [perl #115928] Configure now selects our internal drand48()Tony Cook2013-09-131-5/+5
|
* Remove references to GNU DLD from Configure and config.sh scripts.Nicholas Clark2013-09-051-3/+2
| | | | | Specifically eliminated i_dld, a variable indicating that <dld.h> should be included, and remove dld from the list of wanted libraries.
* On Win32, i_rpcsvcdbm should be 'undef' as there is no <rpcsvc/dbm.h>Nicholas Clark2013-06-101-1/+1
| | | | | | | | | | | | | | | | | | 3 canned Win32 config files had i_rpcsvcdbm as 'define', and consequently their generated headers had I_RPCSVC_DBM defined. This symbol means that a header file <rpcsvc/dbm.h> exists and should be included. However, it's only used by ODBM_File, which is not built on Win32, so nothing ever noticed the error. The errors in the header files seem to date from commit 0a753a764065f226 ("[inseparable changes from patch from perl5.003_23 to perl5.003_24]" in Jan 1997), which added the Win32 port. The config file, win32/config.w32, has i_rpcsvcdbm as 'undef' but the header file win32/config.h is inconsistent, with I_RPCSVC_DBM defined. The errors in the canned configs seem to date from commit 68dc074516a6859e ("[inseparable changes from match from perl-5.003_93 to perl-5.003_94]" in March 1997), where the value of i_rpcsvcdbm was changed in win32/config.w32
* Add bootstrap_charset/BOOTSTRAP_CHARSET for non-ASCII architecturesH.Merijn Brand2013-03-091-0/+1
|
* Add Configure probe for ip_mreq_sourceH.Merijn Brand2012-08-261-0/+2
| | | | Needed to upgrade Socket from CPAN
* Add IP probe for ip_mreqH.Merijn Brand2012-07-111-0/+1
| | | | Backport 2f1eb816b5cba6977b1a8159
* Trailing whitespace removalSteve Hay2012-06-111-1/+1
|
* Set version directly in Windows config.xxx filesSteve Hay2012-06-071-1/+1
| | | | | There is no need for doing it via a ~VERSION~ substitution string since that is not used anywhere else.
* Update how subversion is set in win32 config.xxx filesSteve Hay2012-06-071-1/+1
| | | | | | SUBVERSION was the old name from patchlevel.h but we should prefer to use PERL_SUBVERSION now, just like patchlevel is already set from PERL_VERSION rather than the old PATCHLEVEL.
* Add new probes for IPv6 (LeoNerd)H.Merijn Brand2012-02-161-0/+2
|
* Revert "Add strptime probe"Ævar Arnfjörð Bjarmason2012-02-151-1/+0
| | | | This reverts commit 8852e312c3c616ab731ccbe7da54fb04eb8c3d30.
* Add strptime probeH.Merijn Brand2012-02-121-0/+1
|
* Add probe for isblank() (requested by khw)H.Merijn Brand2012-01-091-0/+1
|
* Where available, use _NSGetExecutablePath() to make $^X absolute.Nicholas Clark2011-09-271-0/+1
| | | | | | | | | In Configure, check whether _NSGetExecutablePath() can be used to find the absolute pathname of the executable. If so, set usensgetexecutablepath in config.sh and USE_NSGETEXECUTABLEPATH in config.h. If this is set, then use this approach in S_set_caret_X() to canonicalise $^X as an absolute path. This approach works on OS X, and possible on other platforms that use dyld.
* Where available, use sysctl() with KERN_PROC_PATHNAME to make $^X absolute.Nicholas Clark2011-09-271-0/+1
| | | | | | | | | | In Configure, check whether sysctl() and KERN_PROC_PATHNAME can be used to find the absolute pathname of the executable. If so, set usekernprocpathname in config.sh and USE_KERN_PROC_PATHNAME in config.h. If this is set, then use this approach in S_set_caret_X() to canonicalise $^X as an absolute path. This approach works on (at least) FreeBSD, and doesn't rely on the /proc filesystem existing, or /proc/curproc/file being present.
* Add a --regen option to checkcfgvar.pl to regenerate config files.Nicholas Clark2011-09-211-10/+10
| | | | | | | | | | Verify that the section of config file containing probed files is sorted lexically. If --regen is used, updated the file on disk with a correctly sorted version. (Except for configure.com, which has a different structure not amenable to automatic analysis and update, hence still has to be updated manually.) Ensure all config files are correctly sorted.
* Probe for <stdbool.h>, and if found use it in handy.hNicholas Clark2011-09-161-0/+1
| | | | | | | | | This means that the core uses the compiler's bool type if one exists. This avoids potential problems of clashes between perl's own implementation of bool and the compiler's bool type, which otherwise occur when one attempts to include headers which in turn include <stdbool.h>. Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
* 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.
* Set d_static_inline for win32/config.vc, since VC supports static __inline.Andy Dougherty2010-09-231-1/+1
|
* Configure inline support for 32-bit VC++Tony Cook2010-09-231-1/+1
| | | | VC supports static inline via "static __inline".
* 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
* sizeof(long double) is 8 bytes for all Microsoft compilersGisle Aas2008-11-121-1/+1
| | | | | from Jan Dubois p4raw-id: //depot/perl@34823
* 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
* Add probes for *time64 () functionsH.Merijn Brand2008-10-031-21/+27
| | | | | Add missing config vars p4raw-id: //depot/perl@34456
* Add probes for LOCALTIME_max and LOCALTIME_min (y2038 project)H.Merijn Brand2008-09-151-0/+2
| | | p4raw-id: //depot/perl@34363