diff options
author | Daniel Heinrich <daniel.heinrich@uibk.ac.at> | 2016-11-11 08:43:27 (GMT) |
---|---|---|
committer | Daniel Heinrich <daniel.heinrich@uibk.ac.at> | 2016-11-11 08:43:27 (GMT) |
commit | 35184c9a74ce66b2c35333f8a59b20110f99d1c5 (patch) | |
tree | 1de1bfc90a775ab75ac7c1c1e368465e8d01c62b /src | |
parent | 87b08fae68f5e45263d1bb71e8061700d86e3c8c (diff) | |
download | mxe-35184c9a74ce66b2c35333f8a59b20110f99d1c5.zip mxe-35184c9a74ce66b2c35333f8a59b20110f99d1c5.tar.gz mxe-35184c9a74ce66b2c35333f8a59b20110f99d1c5.tar.bz2 |
Enable shared builds for gsl
Diffstat (limited to 'src')
-rw-r--r-- | src/gsl.mk | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -18,11 +18,7 @@ endef define $(PKG)_BUILD cd '$(1)' && ./configure \ - --host='$(TARGET)' \ - --build="`config.guess`" \ - --prefix='$(PREFIX)/$(TARGET)' \ - --disable-shared \ - --enable-static + $(MXE_CONFIGURE_OPTS) $(MAKE) -C '$(1)' -j '$(JOBS)' $(MAKE) -C '$(1)' -j 1 install @@ -31,5 +27,3 @@ define $(PKG)_BUILD '$(TEST_FILE)' -o '$(PREFIX)/$(TARGET)/bin/test-gsl.exe' \ -lgsl endef - -$(PKG)_BUILD_SHARED = |