summaryrefslogtreecommitdiffstats
path: root/src/freetds.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2011-03-25 18:33:10 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2011-03-25 18:33:10 (GMT)
commit76431cf6279dea6a86a7f82d49f626a15b9a1672 (patch)
treeb4860938f6fd7f29b8c068be97f360e74cd288c7 /src/freetds.mk
parentb8b317f4135bb516237cff04131c4ae936d004d1 (diff)
downloadmxe-76431cf6279dea6a86a7f82d49f626a15b9a1672.zip
mxe-76431cf6279dea6a86a7f82d49f626a15b9a1672.tar.gz
mxe-76431cf6279dea6a86a7f82d49f626a15b9a1672.tar.bz2
fix broken gnutls detection in package freetds
Diffstat (limited to 'src/freetds.mk')
-rw-r--r--src/freetds.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/freetds.mk b/src/freetds.mk
index 4b4cf5d..77af37f 100644
--- a/src/freetds.mk
+++ b/src/freetds.mk
@@ -27,7 +27,6 @@ define $(PKG)_BUILD
# wine confuses the cross-compiling detection, so set it explicitly
$(SED) -i 's,cross_compiling=no,cross_compiling=yes,' '$(1)/configure'
- # beware --with-gnutls broken detection
cd '$(1)' && ./configure \
--prefix='$(PREFIX)/$(TARGET)' \
--host='$(TARGET)' \
@@ -40,6 +39,7 @@ define $(PKG)_BUILD
--enable-sspi \
--disable-threadsafe \
--with-tdsver=7.2 \
- --with-gnutls
+ --with-gnutls \
+ PKG_CONFIG='$(TARGET)-pkg-config'
$(MAKE) -C '$(1)' -j '$(JOBS)' install man_MANS=
endef