diff options
-rw-r--r-- | docs/build-matrix.html | 14 | ||||
-rw-r--r-- | docs/packages.json | 1 | ||||
-rw-r--r-- | src/autotools.mk | 8 | ||||
-rw-r--r-- | src/glib.mk | 2 |
4 files changed, 22 insertions, 3 deletions
diff --git a/docs/build-matrix.html b/docs/build-matrix.html index ad112de..611b430 100644 --- a/docs/build-matrix.html +++ b/docs/build-matrix.html @@ -148,6 +148,16 @@ feel free to submit a pull request. </tr> <tr> + <th class="row">autotools</th> + <td>1</td> + <td class="unsupported">✗</td> + <td class="unsupported">✗</td> + <td class="unsupported">✗</td> + <td class="unsupported">✗</td> + <td class="unsupported">✗</td> + </tr> + +<tr> <th class="row">bfd</th> <td>2.28</td> <td class="supported">✓</td> @@ -4590,14 +4600,14 @@ feel free to submit a pull request. <tr> <th class="row" colspan="2"> Total: 443 -<br>(+7 virtual +<br>(+8 virtual +5 native-only) </th> <th>437</th> <th>354</th> <th>423</th> <th>354</th> -<th>25</th> +<th>26</th> </tr> </tbody> </table> diff --git a/docs/packages.json b/docs/packages.json index 3b10f0b..fc1261a 100644 --- a/docs/packages.json +++ b/docs/packages.json @@ -10,6 +10,7 @@ "atk": {"version": "2.16.0", "website": "https://gtk.org/", "description": "ATK"}, "atkmm": {"version": "2.22.7", "website": "https://www.gtkmm.org/", "description": "ATKmm"}, "aubio": {"version": "0.4.2", "website": "https://www.aubio.org/", "description": ""}, + "autotools": {"version": "1", "website": "https://en.wikipedia.org/wiki/GNU_Build_System", "description": "Dependency package to ensure the autotools work"}, "bfd": {"version": "2.28", "website": "https://www.gnu.org/software/binutils/", "description": "Binary File Descriptor library"}, "binutils": {"version": "2.28", "website": "https://www.gnu.org/software/binutils/", "description": "GNU Binutils"}, "blas": {"version": "3.5.0", "website": "http://www.netlib.org/blas/", "description": ""}, 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' | \ |