diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2013-06-27 14:28:00 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2013-07-02 01:21:16 +0200 |
commit | ddd7e04fd6442ae0edba6fd64dbe416be5bca86b (patch) | |
tree | e21839c70dc83a7bc759b7d18d7816a01fc297a6 /src | |
parent | 624be53e02832dbdf486d478c2c22b465af675f1 (diff) | |
download | libuv-ddd7e04fd6442ae0edba6fd64dbe416be5bca86b.tar.gz libuv-ddd7e04fd6442ae0edba6fd64dbe416be5bca86b.zip |
build: switch to autotools
Switch to the build tool everyone loves to hate. The Makefile has
served us well over the years but it's been acquiring more and more
features that autotools gives us for free, like easy static+shared
library building, sane install targets, and so on.
This commit drops MinGW support. If there is demand for it, we'll
re-add it.
Diffstat (limited to 'src')
-rw-r--r-- | src/inet.c | 2 | ||||
-rw-r--r-- | src/uv-common.h | 2 | ||||
-rw-r--r-- | src/win/tty.c | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -19,7 +19,7 @@ #include <string.h> #if defined(_MSC_VER) && _MSC_VER < 1600 -# include "uv-private/stdint-msvc2008.h" +# include "stdint-msvc2008.h" #else # include <stdint.h> #endif diff --git a/src/uv-common.h b/src/uv-common.h index bbd3e17b..1402356e 100644 --- a/src/uv-common.h +++ b/src/uv-common.h @@ -31,7 +31,7 @@ #include <stddef.h> #if defined(_MSC_VER) && _MSC_VER < 1600 -# include "uv-private/stdint-msvc2008.h" +# include "stdint-msvc2008.h" #else # include <stdint.h> #endif diff --git a/src/win/tty.c b/src/win/tty.c index 64934ffa..f17e9577 100644 --- a/src/win/tty.c +++ b/src/win/tty.c @@ -24,7 +24,7 @@ #include <string.h> #if defined(_MSC_VER) && _MSC_VER < 1600 -# include "uv-private/stdint-msvc2008.h" +# include "stdint-msvc2008.h" #else # include <stdint.h> #endif |