summaryrefslogtreecommitdiff
path: root/win32
Commit message (Collapse)AuthorAgeFilesLines
* Silence some cast warnings from bcc32 on Win32Steve Hay2005-07-011-0/+12
| | | | | | See the thread starting here for arguments: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-06/msg00994.html p4raw-id: //depot/perl@25033
* Avoid redefinition warning for MinGWMattia Barbon2005-06-271-0/+3
| | | | | Message-ID: <Mahogany-0.66.0-1232-20050627-220727.00@rbnet.it> p4raw-id: //depot/perl@24999
* Fix typo in win32.cSteve Hay2005-06-241-1/+1
| | | | | Doesn't fix bcc32 + USE_LARGE_FILES, though :-( p4raw-id: //depot/perl@24977
* Stop '"__attribute__format__" redefined' warnings from gcc on Win32Steve Hay2005-06-241-0/+5
| | | p4raw-id: //depot/perl@24975
* Make opendir() filename const in Win32-land & friendsSteve Hay2005-06-244-4/+4
| | | | | | | | That fact that it wasn't const already was highlighted by a warning from pp_open_dir() generated by change 24743. Rather than undo the const change in pp_open_dir(), this seems to make more sense. Hope I haven't broken Netware or WinCE. p4raw-id: //depot/perl@24974
* Silence bcc32 compiler warnings from win32/fcrypt.c (almost)Steve Hay2005-06-231-36/+37
| | | | | | | | It still whines about 'in' and 'b' being assigned values that are never used on lines 348 and 505 respectively (as side effects of the calls to c2l and l2c respectively), but I'm not sure how to shut them up. p4raw-id: //depot/perl@24947
* More bcc32 compiler warnings to silenceSteve Hay2005-06-231-2/+2
| | | | | ("Suspicious pointer conversion") p4raw-id: //depot/perl@24946
* Silence some bcc32 compiler warningsSteve Hay2005-06-221-2/+2
| | | | | ("Superfluous & with function") p4raw-id: //depot/perl@24937
* Add the ptar(1) utility from Archive::TarRafael Garcia-Suarez2005-06-212-2/+4
| | | p4raw-id: //depot/perl@24926
* Support NV_ZERO_IS_ALLBITS_ZERO on Win32 (re: change 24898)Steve Hay2005-06-208-0/+24
| | | | | | The try.c test program added to Configure by change 24898 outputs "Yes" using each of VC++, GCC and BCC32, so here goes... p4raw-id: //depot/perl@24905
* Silence STDERR grumblings from Borland's math library.Steve Hay2005-06-171-0/+10
| | | | | | This fixes failures in ext/B/t/deparse.t and lib/warnings.t (and renders change 24870 obsolete, hence it is reverted here). p4raw-id: //depot/perl@24883
* Strip \\?\ prefix from Perl path in win32/win32.c:set_w32_module_name()Jan Dubois2005-06-171-0/+4
| | | | | | From: "Jan Dubois" <jand@ActiveState.com> Message-Id: <200506161843.j5GIhKhL024472@smtp3.ActiveState.com> p4raw-id: //depot/perl@24880
* Fix changes 24862 and 24863 for Sarathy's old dmakeSteve Hay2005-06-161-3/+3
| | | p4raw-id: //depot/perl@24866
* Simplify win32/makefile.mk for static extensions with GCCSteve Hay2005-06-161-2/+2
| | | p4raw-id: //depot/perl@24863
* Enable static extensions with Borland compiler on Win32Steve Hay2005-06-162-2/+2
| | | p4raw-id: //depot/perl@24862
* Fix $Config{ccversion} for Borland C++ 5.5.1Steve Hay2005-06-151-2/+1
| | | | | | | | | | | | This pattern match seems a little saner, and stops " for Win32" getting picked up from the following output: Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland Maybe it breaks older versions, but at least the latest now works correctly. If anyone knows what older versions' messages look like then speak up! p4raw-id: //depot/perl@24855
* Fix win32/makefile.mk for building with bcc32 5.5.1 and dmake 4.4Steve Hay2005-06-151-10/+21
| | | p4raw-id: //depot/perl@24852
* Don't delete IO/Zlib during distclean on Win32Steve Hay2005-06-142-4/+4
| | | | | (IO/Socket still needs to go, though) p4raw-id: //depot/perl@24837
* Add BUILDOPTEXTRA to Win32 makefilesSteve Hay2005-06-142-0/+2
| | | | | | | | | This allows extra build options, e.g. -DNO_HASH_SEED, to be specified on the command line, which is otherwise not possible under nmake using the existing BUILDOPT macro Suggested by Jan Dubois <jand@ActiveState.com> p4raw-id: //depot/perl@24830
* Re: Change 24806: improve static build for win32/MakefileVadim Konovalov2005-06-132-7/+10
| | | | | Message-Id: <1118691701.6333.32.camel@mdk10> p4raw-id: //depot/perl@24825
* improve static build for win32/MakefileVadim Konovalov2005-06-121-4/+14
| | | | | Message-Id: <1118599750.2732.2.camel@mdk10> p4raw-id: //depot/perl@24806
* Update Windows makefilesRafael Garcia-Suarez2005-06-102-1/+5
| | | p4raw-id: //depot/perl@24792
* Integrate perl587delta.pod, the changes in perlhist.pod, and updateNicholas Clark2005-06-021-0/+4
| | | | | | | | | | | | | | the relevant makefiles and tables-of-contents to reflect this. p4raw-id: //depot/perl@24680 p4raw-branched: from //depot/maint-5.8/perl@24679 'branch in' pod/perl587delta.pod p4raw-integrated: from //depot/maint-5.8/perl@24679 'copy in' pod/perlhist.pod (@24141..) 'merge in' win32/pod.mak (@23153..) p4raw-integrated: from //depot/maint-5.8/perl@23573 'edit in' pod.lst (@23153..) Makefile.SH (@23406..) pod/perl.pod (@23476..) 'ignore' pod/perltoc.pod (@23408..) win32/Makefile win32/makefile.mk (@23480..) vms/descrip_mms.template (@23560..) 'merge in' MANIFEST (@23461..)
* DynaLoader dl_unload_file for win32 ( dl_win32.xs )DH2005-06-021-0/+12
| | | | | | | Message-ID: <20050531153327.85145.qmail@unknown-209-73-178-237.yahoo.com> (with a couple of minor tweaks) p4raw-id: //depot/perl@24679
* Teach buildtoc about README.openbsd, and regenerate various makefiles.Nicholas Clark2005-05-292-8/+10
| | | p4raw-id: //depot/perl@24615
* Fill in HASATTRIBUTE stuff in win32/config_H.* (see change #24508)Steve Hay2005-05-234-44/+136
| | | | | | (None are actually defined, but it's nice to have them there anyway) p4raw-link: @24508 on //depot/perl: 0dbb1585a715e56312e579a5f0e7f82241b38352 p4raw-id: //depot/perl@24545
* Attribute configurationAndy Lester2005-05-204-4/+28
| | | | | Message-ID: <20050519173256.GA29039@petdance.com> p4raw-id: //depot/perl@24508
* Bump the version number on Win32::Win32Nicholas Clark2005-05-161-1/+1
| | | p4raw-id: //depot/perl@24482
* Remove a couple of unreferenced local variablesSteve Hay2005-05-121-2/+0
| | | p4raw-id: //depot/perl@24454
* Add Win32::GetFileVersion() functionJan Dubois2005-05-122-7/+79
| | | | | | From: "Jan Dubois" <jand@ActiveState.com> Message-Id: <200505120530.j4C5UhpX031152@smtp3.ActiveState.com> p4raw-id: //depot/perl@24453
* Bump versions of non dual-life modulesNicholas Clark2005-05-051-1/+1
| | | p4raw-id: //depot/perl@24399
* Remove temporary clean-up from Win32 makefilesSteve Hay2005-04-282-14/+4
| | | | | | | | | | | | Change 22501 temporarily added some clean-up to the Win32 makefiles which was only meant to stay until cpan rt #5616 was fixed. It is now fixed (in EU-MM 6.22, which in turn has been in blead for a while now), so these hacks are no longer required. This change is also good for maint, which currently contains EU-MM 6.17, which didn't create the blibdirs.exists files in question anyway. p4raw-id: //depot/perl@24347
* Provide $Config{libswanted_uselargefiles} on Win32Steve Hay2005-04-254-0/+4
| | | | | This fixes some test failures introduced by change 24271. p4raw-id: //depot/perl@24319
* Symbian port of PerlJarkko Hietaniemi2005-04-213-7/+9
| | | | | Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D653@esebe105.NOE.Nokia.com> p4raw-id: //depot/perl@24271
* Fix bug #33664: allow for transport providers with protocol == 0Steve Hay2005-04-181-1/+2
| | | | | | (This indicates that any protocol may be used, so don't bother checking that the requested protocol matches in this case.) p4raw-id: //depot/perl@24242
* Support d_libm_lib_version for Win32 (see change 24217)Steve Hay2005-04-118-0/+28
| | | p4raw-id: //depot/perl@24227
* Disable I18N::Langinfo for Win32 since nl_langinfo() isn't availableSteve Hay2005-04-112-7/+1
| | | p4raw-id: //depot/perl@24225
* Make Win32 build (and clean) I18::Langinfo and Math::BigInt::FastCalcRafael Garcia-Suarez2005-04-112-1/+13
| | | p4raw-id: //depot/perl@24222
* Add perl593delta.podRafael Garcia-Suarez2005-04-083-2/+6
| | | p4raw-id: //depot/perl@24198
* Bump version to 5.9.3Rafael Garcia-Suarez2005-04-045-26/+26
| | | | | | Restore "DEVEL" tag in patchlevel.h Regenerate Porting/config* p4raw-id: //depot/perl@24149
* Remove dependency on tr(1) for MinGW builds on Win32Steve Hay2005-04-011-2/+2
| | | | | | | | | This leaves things slightly (more) broken for MinGW builds on Cygwin, but that doesn't currently quite work in other respects and isn't documented anyway. See: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-03/msg00751.html p4raw-id: //depot/perl@24131
* Fix USE_SITECUSTOMIZE on Win32Steve Hay2005-03-311-1/+2
| | | | | | | This fixes the problem described in: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-03/msg00740.html p4raw-id: //depot/perl@24122
* Add support for USE_SITECUSTOMIZE in the Win32 makefilesSteve Hay2005-03-316-0/+36
| | | | | | | | Note that this feature doesn't actually work correctly on Win32 until the problem described here is solved: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-03/msg00740.html p4raw-id: //depot/perl@24120
* Add support for PERL_HASH_SEED_EXPLICIT and NO_HASH_SEED in theSteve Hay2005-03-312-0/+19
| | | | | Win32 makefiles p4raw-id: //depot/perl@24113
* A few Win32 makefile tidy-ups (No real changes)Steve Hay2005-03-312-10/+12
| | | p4raw-id: //depot/perl@24111
* A couple more Win32 compilation clean-upsSteve Hay2005-03-301-3/+3
| | | p4raw-id: //depot/perl@24099
* More Win32 dmake fixesSteve Hay2005-03-101-12/+12
| | | | | | | | | Use $B macro as per change 23991 in more places, and fix some syntax errors in the subst's (missing trailing ",") Tested with GCC and MSVC. I don't have BCC available, so those parts are untested. p4raw-id: //depot/perl@24014
* Include regcomp.h in Win32 makefilesYves Orton2005-03-072-0/+2
| | | | | | Subject: Re: Stop mktables from needlessly re-running when using dmake on Win32 Message-ID: <9b18b311050306001624012bd@mail.gmail.com> p4raw-id: //depot/perl@24007
* A better fix than change 24005 was ;)Steve Hay2005-03-042-3/+2
| | | | | | | | | Actually, "@echo." still emits a blank line. Use "@rem" instead as the no-op. This was being used in the Win95 case, but works fine on WinNT too, and is actually what ExtUtils-MakeMaker uses. Also change the nmake Makefile. p4raw-id: //depot/perl@24006
* Suppress "ECHO is on." messages when using dmake on Win32Steve Hay2005-03-041-1/+1
| | | | | | (The shell's "echo" command displays the current echo setting when called with no arguments. Use "echo." to display nothing.) p4raw-id: //depot/perl@24005