summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-08-17 20:06:36 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2014-08-17 20:06:36 (GMT)
commit67741dd24e11da2da114becd71073d2a39ab9658 (patch)
tree9f48447cdc1ad0fd06e9caa0351dd68167832d07 /src
parent1727ac7090be865f281230d14cc11eb13b6c6bf7 (diff)
downloadmxe-67741dd24e11da2da114becd71073d2a39ab9658.zip
mxe-67741dd24e11da2da114becd71073d2a39ab9658.tar.gz
mxe-67741dd24e11da2da114becd71073d2a39ab9658.tar.bz2
hunspell: enable shared builds
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/hunspell.mk9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/hunspell.mk b/src/hunspell.mk
index d73a42c..062b185 100644
--- a/src/hunspell.mk
+++ b/src/hunspell.mk
@@ -19,13 +19,10 @@ endef
define $(PKG)_BUILD
# Note: the configure file doesn't pick up pdcurses, so "ui" is disabled
cd '$(1)' && ./configure \
- --host='$(TARGET)' \
- --enable-static \
- --disable-shared \
+ $(MXE_CONFIGURE_OPTS) \
--with-warnings \
--without-ui \
- --with-readline \
- --prefix='$(PREFIX)/$(TARGET)'
+ --with-readline
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
# Test
@@ -34,5 +31,3 @@ define $(PKG)_BUILD
'$(2).cpp' -o '$(PREFIX)/$(TARGET)/bin/test-hunspell.exe' \
`'$(TARGET)-pkg-config' hunspell --cflags --libs`
endef
-
-$(PKG)_BUILD_SHARED =