diff options
author | Tony Theodore <tonyt@logyst.com> | 2017-11-09 10:35:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-09 10:35:04 (GMT) |
commit | 52c6c8673634cbad7c88c9a411d4b2c078cb786e (patch) | |
tree | b5508ab9fb5655a438725b505bd3e4680950a055 /src | |
parent | a1523ae12eaec1a128620fbab6bb01a5bed0038b (diff) | |
parent | 13ee2287ef94b642b2dc836c40767e6074467b86 (diff) | |
download | mxe-52c6c8673634cbad7c88c9a411d4b2c078cb786e.zip mxe-52c6c8673634cbad7c88c9a411d4b2c078cb786e.tar.gz mxe-52c6c8673634cbad7c88c9a411d4b2c078cb786e.tar.bz2 |
Merge pull request #1971 from tonytheodore/autotools
add dependency package autotools
Diffstat (limited to 'src')
-rw-r--r-- | src/autotools.mk | 8 | ||||
-rw-r--r-- | src/glib.mk | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/autotools.mk b/src/autotools.mk new file mode 100644 index 0000000..7f200a3 --- /dev/null +++ b/src/autotools.mk @@ -0,0 +1,8 @@ +# This file is part of MXE. See LICENSE.md for licensing information. + +PKG := autotools +$(PKG)_WEBSITE := https://en.wikipedia.org/wiki/GNU_Build_System +$(PKG)_DESCR := Dependency package to ensure the autotools work +$(PKG)_VERSION := 1 +$(PKG)_DEPS := libtool pkgconf +$(PKG)_TARGETS := $(BUILD) diff --git a/src/glib.mk b/src/glib.mk index 731a98d..e1d6a2d 100644 --- a/src/glib.mk +++ b/src/glib.mk @@ -12,7 +12,7 @@ $(PKG)_URL := https://download.gnome.org/sources/glib/$(call SHORT_PKG_VERS $(PKG)_DEPS := gcc dbus gettext libffi libiconv pcre zlib $(PKG)_TARGETS := $(BUILD) $(MXE_TARGETS) -$(PKG)_DEPS_$(BUILD) := gettext libiconv zlib +$(PKG)_DEPS_$(BUILD) := autotools gettext libiconv zlib define $(PKG)_UPDATE $(WGET) -q -O- 'https://git.gnome.org/browse/glib/refs/tags' | \ |