1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| | With lstat and _lstat are added to MinGW we need to #define lstat along with
stat because #define'ing stat impacts struct stat, which would otherwise break
lstat's signature.
Jan Nieuwenhuizen
Upstream status: not yet presented upstream.
--- libtool-2.4.6/build-aux/ltmain.in~ 2015-02-06 13:57:56.000000000 +0100
+++ libtool-2.4.6/build-aux/ltmain.in 2016-05-06 07:46:29.425142546 +0200
@@ -3658,6 +3658,7 @@
# define S_IXUSR _S_IEXEC
#elif defined __MINGW32__
# define setmode _setmode
+# define lstat _lstat
# define stat _stat
# define chmod _chmod
# define getcwd _getcwd
--- libtool-2.4.6/build-aux/ltmain.sh~ 2015-02-15 17:15:12.000000000 +0100
+++ libtool-2.4.6/build-aux/ltmain.sh 2016-05-06 08:31:53.854857844 +0200
@@ -5576,6 +5577,7 @@
# define S_IXUSR _S_IEXEC
#elif defined __MINGW32__
# define setmode _setmode
+# define lstat _lstat
# define stat _stat
# define chmod _chmod
# define getcwd _getcwd
|