mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Fix for building on Interix, from Jay Krell.
This commit is contained in:
parent
222a835bfb
commit
789f7e1353
@ -1,3 +1,7 @@
|
||||
2009-06-20 Micah Cowan <micah@cowan.name>
|
||||
|
||||
* wget.texi (Contributors): Added Jay Krell.
|
||||
|
||||
2009-06-14 Micah Cowan <micah@cowan.name>
|
||||
|
||||
* Makefile.am (wget.pod): $(srcdir)/version.texi -> version.texi
|
||||
|
@ -3935,6 +3935,7 @@ Fila Kolodny,
|
||||
Alexander Kourakos,
|
||||
Martin Kraemer,
|
||||
Sami Krank,
|
||||
Jay Krell,
|
||||
@tex
|
||||
$\Sigma\acute{\iota}\mu o\varsigma\;
|
||||
\Xi\varepsilon\nu\iota\tau\acute{\epsilon}\lambda\lambda\eta\varsigma$
|
||||
|
@ -1,3 +1,9 @@
|
||||
2009-06-20 Jay Krell <jay.krell@cornell.edu>
|
||||
|
||||
* sysdep.h (_ALL_SOURCE): (small change) Define the _ALL_SOURCE
|
||||
macro on INTERIX systems. (I switched the location from ftp.c to
|
||||
sysdep.h --mjc)
|
||||
|
||||
2009-06-15 Micah Cowan <micah@cowan.name>
|
||||
|
||||
* ftp.c (getftp): If we can't accept the connection, return
|
||||
|
@ -41,6 +41,10 @@ as that of the covered work. */
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#if defined(__INTERIX) && !defined(_ALL_SOURCE)
|
||||
# define _ALL_SOURCE
|
||||
#endif
|
||||
|
||||
/* The "namespace tweaks" below attempt to set a friendly "compilation
|
||||
environment" under popular operating systems. Default compilation
|
||||
environment often means that some functions that are "extensions"
|
||||
|
Loading…
Reference in New Issue
Block a user