diff options
author | Tony Theodore <tonyt@logyst.com> | 2017-07-25 10:41:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-25 10:41:27 (GMT) |
commit | b6b659bb0442bbf848597446190edd4c795a0b98 (patch) | |
tree | d9208463d381e5e9829068f2255d48fc9ff72e28 /src | |
parent | eb34b4ea4250c36d951b14d7efce56de948be41f (diff) | |
parent | d5acb5a3ec0252900847e5d2f5444d4ba51e2f24 (diff) | |
download | mxe-b6b659bb0442bbf848597446190edd4c795a0b98.zip mxe-b6b659bb0442bbf848597446190edd4c795a0b98.tar.gz mxe-b6b659bb0442bbf848597446190edd4c795a0b98.tar.bz2 |
Merge pull request #1853 from tonytheodore/native-libtool
add libtool dep for native packages using autotools
Diffstat (limited to 'src')
-rw-r--r-- | src/libtool.mk | 2 | ||||
-rw-r--r-- | src/pkgconf.mk | 1 | ||||
-rw-r--r-- | src/protobuf.mk | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/src/libtool.mk b/src/libtool.mk index 34c3642..1ac02d8 100644 --- a/src/libtool.mk +++ b/src/libtool.mk @@ -1,5 +1,6 @@ # This file is part of MXE. See LICENSE.md for licensing information. +# this pkg is the base for both src/libltdl and plugins/native/libtool PKG := libtool $(PKG)_WEBSITE := https://www.gnu.org/software/libtool/ $(PKG)_DESCR := GNU Libtool @@ -10,6 +11,7 @@ $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz $(PKG)_URL := https://ftp.gnu.org/gnu/$(PKG)/$($(PKG)_FILE) $(PKG)_DEPS := +$(PKG)_TARGETS := $(BUILD) define $(PKG)_UPDATE $(WGET) -q -O- 'https://ftp.gnu.org/gnu/libtool/?C=M;O=D' | \ diff --git a/src/pkgconf.mk b/src/pkgconf.mk index 5b46267..409e020 100644 --- a/src/pkgconf.mk +++ b/src/pkgconf.mk @@ -10,6 +10,7 @@ $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz $(PKG)_URL := https://github.com/$(PKG)/$(PKG)/tarball/$($(PKG)_VERSION)/$($(PKG)_FILE) $(PKG)_TARGETS := $(BUILD) $(MXE_TARGETS) $(PKG)_DEPS := +$(PKG)_DEPS_$(BUILD) := libtool $(PKG)_UPDATE = $(call MXE_GET_GITHUB_SHA, pkgconf/pkgconf, master) diff --git a/src/protobuf.mk b/src/protobuf.mk index 30bfd97..116289d 100644 --- a/src/protobuf.mk +++ b/src/protobuf.mk @@ -10,7 +10,7 @@ $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz $(PKG)_URL := https://github.com/google/$(PKG)/archive/v$($(PKG)_VERSION).tar.gz $(PKG)_DEPS := gcc googlemock googletest zlib $(PKG)_TARGETS := $(BUILD) $(MXE_TARGETS) -$(PKG)_DEPS_$(BUILD) := googlemock googletest +$(PKG)_DEPS_$(BUILD) := googlemock googletest libtool define $(PKG)_UPDATE $(call MXE_GET_GITHUB_TAGS, google/protobuf, v) |