summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2018-02-27 01:35:37 (GMT)
committerTony Theodore <tonyt@logyst.com>2018-02-27 01:35:37 (GMT)
commitb75b3ffad38e8c3085edcb8e802cf98919dd6e8a (patch)
tree330f4aa88109bdd7bf9ebc8a2a8a529306b065f1 /plugins
parent55c488bb2947ee61e0e7d0c5900d4471f1c59ded (diff)
downloadmxe-b75b3ffad38e8c3085edcb8e802cf98919dd6e8a.zip
mxe-b75b3ffad38e8c3085edcb8e802cf98919dd6e8a.tar.gz
mxe-b75b3ffad38e8c3085edcb8e802cf98919dd6e8a.tar.bz2
libffi: always build native (since glib is always built on linux)
Diffstat (limited to 'plugins')
l---------plugins/native/darwin/libffi.mk1
-rw-r--r--plugins/native/darwin/overrides.mk1
-rw-r--r--plugins/native/libffi.mk13
3 files changed, 0 insertions, 15 deletions
diff --git a/plugins/native/darwin/libffi.mk b/plugins/native/darwin/libffi.mk
deleted file mode 120000
index b328098..0000000
--- a/plugins/native/darwin/libffi.mk
+++ /dev/null
@@ -1 +0,0 @@
-../libffi.mk \ No newline at end of file
diff --git a/plugins/native/darwin/overrides.mk b/plugins/native/darwin/overrides.mk
index f5b45a7..9b645db 100644
--- a/plugins/native/darwin/overrides.mk
+++ b/plugins/native/darwin/overrides.mk
@@ -1,6 +1,5 @@
# This file is part of MXE. See LICENSE.md for licensing information.
# additional modifications to control native builds
-glib_DEPS_$(BUILD) := libffi zlib
gettext_BUILD_$(BUILD) :=
libiconv_BUILD_$(BUILD) :=
diff --git a/plugins/native/libffi.mk b/plugins/native/libffi.mk
deleted file mode 100644
index 0c9b2fe..0000000
--- a/plugins/native/libffi.mk
+++ /dev/null
@@ -1,13 +0,0 @@
-# This file is part of MXE. See LICENSE.md for licensing information.
-
-PKG := libffi
-$(PKG)_TARGETS := $(BUILD) $(MXE_TARGETS)
-$(PKG)_DEPS_$(BUILD) :=
-
-define $(PKG)_BUILD_$(BUILD)
- # build and install the library
- cd '$(BUILD_DIR)' && $(SOURCE_DIR)/configure \
- $(MXE_CONFIGURE_OPTS)
- $(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)'
- $(MAKE) -C '$(BUILD_DIR)' -j 1 install
-endef