diff options
author | Tony Theodore <tonyt@logyst.com> | 2014-04-27 18:43:53 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2014-04-27 18:43:53 (GMT) |
commit | b591f67a404f29386a29c10e4de6d68924177aa8 (patch) | |
tree | 8346a530178e49207fb8a39244c7da39c47f6a89 /src/libgsasl.mk | |
parent | 825cb79b78c31f73198e822a42e2a989c66c8e94 (diff) | |
download | mxe-b591f67a404f29386a29c10e4de6d68924177aa8.zip mxe-b591f67a404f29386a29c10e4de6d68924177aa8.tar.gz mxe-b591f67a404f29386a29c10e4de6d68924177aa8.tar.bz2 |
package libgsasl: enable shared build
Diffstat (limited to 'src/libgsasl.mk')
-rw-r--r-- | src/libgsasl.mk | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/libgsasl.mk b/src/libgsasl.mk index 96097a8..feef05d 100644 --- a/src/libgsasl.mk +++ b/src/libgsasl.mk @@ -19,15 +19,13 @@ endef define $(PKG)_BUILD cd '$(1)' && touch src/libgsasl-7.def && ./configure \ - --host='$(TARGET)' \ - --build="`config.guess`" \ - --disable-shared \ - --prefix='$(PREFIX)/$(TARGET)' \ + $(MXE_CONFIGURE_OPTS) \ --disable-nls \ --with-libgcrypt \ --with-libiconv-prefix='$(PREFIX)/$(TARGET)' \ --with-libidn-prefix='$(PREFIX)/$(TARGET)' \ - --with-libntlm-prefix='$(PREFIX)/$(TARGET)' + --with-libntlm-prefix='$(PREFIX)/$(TARGET)' \ + LIBS="`$(TARGET)-pkg-config --libs-only-l nettle`" $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= '$(TARGET)-gcc' \ @@ -35,5 +33,3 @@ define $(PKG)_BUILD '$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-libgsasl.exe' \ `'$(TARGET)-pkg-config' libgsasl --cflags --libs` endef - -$(PKG)_BUILD_SHARED = |