summaryrefslogtreecommitdiff
path: root/win32/makefile.mk
Commit message (Collapse)AuthorAgeFilesLines
* Symbian port of PerlJarkko Hietaniemi2005-04-211-3/+4
| | | | | Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D653@esebe105.NOE.Nokia.com> p4raw-id: //depot/perl@24271
* Disable I18N::Langinfo for Win32 since nl_langinfo() isn't availableSteve Hay2005-04-111-2/+1
| | | p4raw-id: //depot/perl@24225
* Make Win32 build (and clean) I18::Langinfo and Math::BigInt::FastCalcRafael Garcia-Suarez2005-04-111-1/+3
| | | p4raw-id: //depot/perl@24222
* Add perl593delta.podRafael Garcia-Suarez2005-04-081-1/+1
| | | p4raw-id: //depot/perl@24198
* Bump version to 5.9.3Rafael Garcia-Suarez2005-04-041-1/+1
| | | | | | 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
* Add support for USE_SITECUSTOMIZE in the Win32 makefilesSteve Hay2005-03-311-0/+14
| | | | | | | | 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-311-0/+10
| | | | | Win32 makefiles p4raw-id: //depot/perl@24113
* A few Win32 makefile tidy-ups (No real changes)Steve Hay2005-03-311-3/+4
| | | p4raw-id: //depot/perl@24111
* 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-071-0/+1
| | | | | | 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-041-2/+1
| | | | | | | | | 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
* Stop mktables from needlessly re-running when using dmake on Win32Steve Hay2005-03-041-6/+1
| | | p4raw-id: //depot/perl@24004
* Patch Win32 makefiles for blead to allow parameters to be passed to harness:Yves Orton2005-02-231-3/+3
| | | | | Message-ID: <9b18b31105021902003d9c2a95@mail.gmail.com> p4raw-id: //depot/perl@23992
* Fix Win32's dmake makefile.mk for new dmakes built with Visual C++Steve Hay2005-02-231-7/+18
| | | p4raw-id: //depot/perl@23991
* Add corelist to the win32 makefilesRafael Garcia-Suarez2005-02-181-1/+2
| | | | | (noticed by demerphq) p4raw-id: //depot/perl@23984
* Fix PERL_MALLOC/DEBUG_MSTATS options in Win32 makefilesSteve Hay2005-02-151-10/+6
| | | | | | | | Currently, if USE_IMP_SYS is defined then PERL_MALLOC gets undefined. We should also undefine DEBUG_MSTATS if PERL_MALLOC is (or has become) undefined, and we should do all this *before* inspecting DEBUG_MSTATS to see if we need to add -DPERL_DEBUGGING_MSTATS to BUILDOPT. p4raw-id: //depot/perl@23970
* Fix definition of DEBUG_MSTATS for Win32 dmake buildsSteve Hay2005-02-151-1/+1
| | | p4raw-id: //depot/perl@23969
* Make Win32's distclean target clean up properlySteve Hay2005-01-101-0/+4
| | | p4raw-id: //depot/perl@23777
* Disable PERL_MALLOC and DEBUG_MSTATS in win32/makefile.mk by defaultSteve Hay2005-01-071-2/+6
| | | | | | | | | | | | and force PERL_MALLOC off if USE_IMP_SYS is on This brings makefile.mk into line with Makefile in this regard (PERL_MALLOC cannot currently be used with USE_IMP_SYS, e.g. see: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2004-07/msg00465.html so it is sensible to enforce this, and to not have the default set to a configuration that isn't allowed) p4raw-id: //depot/perl@23769
* Allow static linking core extensions on Win32 with MinGWYitzchak Scott-Thoennes2005-01-061-5/+8
| | | | | | Subject: [PATCH] Re: lib/Config/Extensions.t fails on Win32 Message-ID: <20050105180141.GA676@efn.org> p4raw-id: //depot/perl@23762
* Put Config.pm on a diet. 3K rather than 32KNicholas Clark2004-11-271-1/+1
| | | | | | | | | configpm now generates 2 files, a small Config.pm containing the commonly used functions and values, which AUTOLOADs a Config_heavy.pl containing anything else needed. The "common" values in the small Config.pm may need some tweaking, based on real world data. p4raw-id: //depot/perl@23554
* RE: [PATCH-for-23358] enable statically linked exte nsions for Win32Vadim Konovalov2004-10-141-6/+25
| | | | | | From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com> Message-ID: <7DD1BE2C50259746ABB8683672D2089E08133C@itotest-1.spb.lucent.com> p4raw-id: //depot/perl@23363
* enable statically linked extensions for Win32Vadim Konovalov2004-10-121-7/+16
| | | | | Message-ID: <80173417046.20041011225700@vkonovalov.ru> p4raw-id: //depot/perl@23360
* Fix [perl #24269] socket() call uses non-IFS providersSteve Hay2004-08-061-3/+3
| | | | | | | | causing subsequent print/read to hang or misbehave Patch supplied by Artiom Morozov <artiom@phreaker.net> in the bug report at http://rt.perl.org/rt3/index.html?q=24269 p4raw-id: //depot/perl@23200
* Have win32/makefile.mk default to gcc, and update docsSteve Hay2004-06-031-9/+3
| | | | | Message-ID: <40BF39B9.3060207@uk.radan.com> p4raw-id: //depot/perl@22901
* Workaround a dmake oddity.Steve Hay2004-06-031-1/+6
| | | | | | Subject: Re: Smoke [5.9.2] 22881 FAIL(M) MSWin32 WinXP/.Net SP1 (x86/1 cpu) Message-ID: <40BF087D.8030005@uk.radan.com> p4raw-id: //depot/perl@22899
* Re: Smoke [5.9.2] 22881 FAIL(M) MSWin32 WinXP/.Net SP1 (x86/1 cpu)Steve Hay2004-06-011-5/+12
| | | | | Message-ID: <40BC930D.90701@uk.radan.com> p4raw-id: //depot/perl@22887
* replace the run time code in lib/utf8_pva.pl with data generatedNicholas Clark2004-05-311-1/+2
| | | | | at build by mktables, stored in lib/unicore/PVA.pl p4raw-id: //depot/perl@22881
* Run mktables as part of the build process.Nicholas Clark2004-05-311-2/+17
| | | | | Don't ship any of the files that it generates in lib/unicore p4raw-id: //depot/perl@22879
* various win32 build fixesSteve Hay2004-03-291-7/+16
| | | | | | | | | | | | | | | | | Subject: Re: [PATCH] Re: MinGW/GCC vs MSVC++ on Win32 Date: Tue, 23 Mar 2004 10:42:12 +0000 Message-ID: <40601484.7040905@uk.radan.com> Subject: [PATCH] distclean on Win32 should delete perl.base From: Steve Hay <steve.hay@uk.radan.com> Date: Tue, 23 Mar 2004 11:35:56 +0000 Message-ID: <4060211C.8020704@uk.radan.com> Subject: Re: [PATCH] Create debug symbols files on Windows even for release From: Steve Hay <steve.hay@uk.radan.com> Date: Fri, 26 Mar 2004 10:46:07 +0000 Message-ID: <406409EF.9020404@uk.radan.com> p4raw-id: //depot/perl@22610
* makefile.95 tweakGreg Matheson2004-03-201-0/+3
| | | | | Message-ID: <20040319181525.A6347@ms.chinmin.edu.tw> p4raw-id: //depot/perl@22541
* [PATCH] Move Win32.pm/Win32.xs from libwin32 module to core PerlNicholas Clark2004-03-191-1/+5
| | | | | | | | | | | | From: Jan Dubois <jand@activestate.com> Message-ID: <lg2k509o51b8openotuetdts6go7pn4udo@4ax.com> Date: Thu, 18 Mar 2004 13:13:49 -0800 Subject: Re: [PATCH] Move Win32.pm/Win32.xs from libwin32 module to core Perl From: Steve Hay <steve.hay@uk.radan.com> Message-ID: <405ACC6D.1040804@uk.radan.com> Date: Fri, 19 Mar 2004 10:33:17 +0000 p4raw-id: //depot/perl@22537
* Add a perl592delta.pod man page.Rafael Garcia-Suarez2004-03-181-2/+3
| | | p4raw-id: //depot/perl@22530
* Bump bleadperl's version number to 5.9.2.Rafael Garcia-Suarez2004-03-181-1/+1
| | | p4raw-id: //depot/perl@22523
* Re: Smoke [5.9.1] 22491 FAIL(M) MSWin32 WinXP/.Net SP1 (x86/1 cpu)Steve Hay2004-03-151-3/+9
| | | | | | | Message-ID: <40558532.30002@uk.radan.com> Plus, restore patch #22489 p4raw-id: //depot/perl@22501
* Revert change #22489, that seems to cause build failures on Windows.Rafael Garcia-Suarez2004-03-131-4/+3
| | | | | p4raw-link: @22489 on //depot/perl: 590d29db556974e9ffeb477a1a1932ff001d099f p4raw-id: //depot/perl@22495
* Fix minitest target in Win32 makefilesSteve Hay2004-03-121-3/+4
| | | | | Message-ID: <4051DCB7.107@uk.radan.com> p4raw-id: //depot/perl@22489
* Re: [PATCH] More "distclean" tidy ups on Win32Steve Hay2004-03-101-3/+10
| | | | | Message-ID: <404EF4C7.9090107@uk.radan.com> p4raw-id: //depot/perl@22481
* More "distclean" tidy ups on Win32Steve Hay2004-03-091-9/+17
| | | | | | Message-ID: <40484ED4.1050001@uk.radan.com> (only the win32 makefiles part) p4raw-id: //depot/perl@22477
* Another makefile portability fix for Win32 by Steve Hay.Rafael Garcia-Suarez2004-03-081-4/+4
| | | p4raw-id: //depot/perl@22467
* Fix PERLEXE_ICO/PERLEXE_RES targets in makefile.mk on Win32Steve Hay2004-03-051-4/+4
| | | | | Message-ID: <40484B88.7070608@uk.radan.com> p4raw-id: //depot/perl@22442
* nmake distclean cleans too much from lib/Digest on Win32Steve Hay2004-03-021-2/+0
| | | | | Message-ID: <403F8182.5090607@uk.radan.com> p4raw-id: //depot/perl@22421
* Bump up perl's version number to 5.9.1.Rafael Garcia-Suarez2004-02-171-1/+1
| | | | | | Add perl591delta in perl.pod. Update the sample config files in Porting/. p4raw-id: //depot/perl@22318
* Re: [PATCH] Add "Camel" logo icon to perl.exe on WindowsGreg Matheson2004-02-101-1/+5
| | | | | Message-ID: <20040210043633.GA33671687@momotaro> p4raw-id: //depot/perl@22298
* Re: [PATCH] Add "Camel" logo icon to perl.exe on WindowsGreg Matheson2004-02-081-4/+4
| | | | | Message-ID: <20040202165244.A17415@ms.chinmin.edu.tw> p4raw-id: //depot/perl@22287
* Merge dynamic perldelta from maint (22081)Nicholas Clark2004-01-261-7/+9
| | | | | | | | | | | | So now perldelta.pod is copied at build time from perl591delta.pod perl590delta.pod is as released to CPAN by Hugo Regen lots of makefiles, pods and the MANIFEST p4raw-id: //depot/perl@22221 p4raw-deleted: from //depot/maint-5.8/perl@22218 'delete in' pod/perldelta.pod (@22072..) p4raw-edited: from //depot/maint-5.8/perl@22081 'edit in' Makefile.SH (@21777..) MANIFEST (@22072..) pod/perltoc.pod (@22073..) vms/descrip_mms.template (@22078..)
* Re: [PATCH] Add "Camel" logo icon to perl.exe on WindowsSteve Hay2004-01-221-1/+7
| | | | | Message-ID: <4010038D.4070104@uk.radan.com> p4raw-id: //depot/perl@22195
* Regenerate win32/Makefile and win32/makefile.mk afterAbe Timmerman2004-01-111-38/+42
| | | | | | | | | | | | | | | | | | | | | Integrate: [ 22081] Move pod/perldelta.pod to pod/perl583delta.pod, and arrange for a copy to be made at build time. [ 22111] Subject: Re: [PATCH win32/makefile.mk] (was Re: 5.8.3 RC1) Message-Id: <200401111813.40829.abe@ztreet.demon.nl> plus revert 22092 and 22080 p4raw-link: @22111 on //depot/maint-5.8/perl: 93ea91c100ee0c42d83aae10630bec5539d0f0d1 p4raw-link: @22081 on //depot/maint-5.8/perl: f6722d80bdc33aac8a78ab0f35acbb2f94ce990c p4raw-id: //depot/perl@22113 p4raw-edited: from //depot/maint-5.8/perl@22112 'edit in' pod.lst (@22069..) win32/Makefile (@22085..) win32/makefile.mk (@22092..) p4raw-integrated: from //depot/maint-5.8/perl@22081 'ignore' pod/buildtoc (@22069..)