diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-02-17 22:37:52 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-02-17 22:37:52 +0000 |
commit | acd55becc49fc2fd03818729abce5f8a23b22927 (patch) | |
tree | 0f6ea75a8221d1d63e09e97144aebc8494cbef16 /dosish.h | |
parent | f19921034ec2c2bf8737ef8569a5a6d99670b6e7 (diff) | |
download | perl-acd55becc49fc2fd03818729abce5f8a23b22927.tar.gz |
Integrate:
[ 21989]
From: "Nigel Sandever" <njsandever@hotmail.com>
Subject: [PATCH] 5.8.1 / bcc55 / win32 / Enable PerlIO and/ or USE_LARGE_FILES
Message-ID: <Law9-F94BdsnvUFcxT500000ea5@hotmail.com>
Date: Thu, 25 Sep 2003 21:49:07 +0000
[ 21990]
Fix a little syntax error, reported by Marcus Holland-Moritz
[ 22287]
Subject: Re: [PATCH] Add "Camel" logo icon to perl.exe on Windows
From: Greg Matheson <lang@ms.chinmin.edu.tw>
Date: Mon, 2 Feb 2004 16:52:44 +0800
Message-ID: <20040202165244.A17415@ms.chinmin.edu.tw>
p4raw-link: @22287 on //depot/perl: 986f8adc220317ecfcf2c0eace5110e18382f196
p4raw-link: @21990 on //depot/perl: 05e23382578645af97ac24028ac1e015aa95cf1d
p4raw-link: @21989 on //depot/perl: a810272a6ed1d575996a7f738dfe73d9ccdf15d5
p4raw-id: //depot/maint-5.8/perl@22324
p4raw-integrated: from //depot/perl@22296 'merge in' win32/win32sck.c
(@19537..) dosish.h (@21433..)
p4raw-integrated: from //depot/perl@22287 'merge in' win32/makefile.mk
(@22221..)
p4raw-integrated: from //depot/perl@21989 'edit in' win32/win32.c
(@20572..)
Diffstat (limited to 'dosish.h')
-rw-r--r-- | dosish.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -83,7 +83,12 @@ * information. */ #if defined(WIN64) || defined(USE_LARGE_FILES) +# if defined(__BORLANDC__) /* buk */ +# include <sys\stat.h> +# define Stat_t struct stati64 +# else #define Stat_t struct _stati64 +# endif #else #if defined(UNDER_CE) #define Stat_t struct xcestat |