From 22c3c9ab89a4f4051d147fe1cf355c767cd967ba Mon Sep 17 00:00:00 2001 From: Tracy Wadleigh Date: Tue, 2 Dec 2014 12:09:55 -0500 Subject: [PATCH 1/2] Added uv.h and dependencies to distribution. --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index 03d203c8987e7..72de1c22a7c02 100644 --- a/Makefile +++ b/Makefile @@ -261,6 +261,15 @@ endif done endif +ifeq ($(USE_SYSTEM_LIBUV),0) +ifeq ($(OS),WINNT) + $(INSTALL_M) $(build_libdir)/libuv.a $(DESTDIR)$(private_libdir) + $(INSTALL_F) $(build_includedir)/tree.h $(DESTDIR)$(includedir)/julia +else + $(INSTALL_M) $(build_libdir)/libuv.a $(DESTDIR)$(private_libdir) +endif + $(INSTALL_F) $(build_includedir)/uv* $(DESTDIR)$(includedir)/julia +endif $(INSTALL_F) src/julia.h src/options.h src/support/*.h $(DESTDIR)$(includedir)/julia # Copy system image $(INSTALL_F) $(build_private_libdir)/sys.ji $(DESTDIR)$(private_libdir) From bd9a1bc2ac7e157668459714fc0a0ed1a5dd168a Mon Sep 17 00:00:00 2001 From: Tracy Wadleigh Date: Thu, 11 Dec 2014 17:30:59 -0500 Subject: [PATCH 2/2] Remove references to installing libuv.a --- Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile b/Makefile index 72de1c22a7c02..851b05349b40b 100644 --- a/Makefile +++ b/Makefile @@ -263,10 +263,7 @@ endif ifeq ($(USE_SYSTEM_LIBUV),0) ifeq ($(OS),WINNT) - $(INSTALL_M) $(build_libdir)/libuv.a $(DESTDIR)$(private_libdir) $(INSTALL_F) $(build_includedir)/tree.h $(DESTDIR)$(includedir)/julia -else - $(INSTALL_M) $(build_libdir)/libuv.a $(DESTDIR)$(private_libdir) endif $(INSTALL_F) $(build_includedir)/uv* $(DESTDIR)$(includedir)/julia endif