mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
Merge pull request #5014 from marcin1j/pr/20171025-nbd-fix-gnutls-dependecy
nbd: fix gnutls dependency
This commit is contained in:
+2
-1
@@ -51,7 +51,8 @@ define Package/nbd-server/description
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
CONFIGURE_ARGS += \
|
CONFIGURE_ARGS += \
|
||||||
--disable-glibtest
|
--disable-glibtest \
|
||||||
|
--without-gnutls
|
||||||
|
|
||||||
TARGET_CFLAGS += --std=gnu99 -DNODAEMON
|
TARGET_CFLAGS += --std=gnu99 -DNODAEMON
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -210,7 +210,11 @@ dnl ;;
|
||||||
|
dnl esac
|
||||||
|
dnl fi
|
||||||
|
|
||||||
|
-PKG_CHECK_MODULES(GnuTLS, [gnutls >= 2.12.0],[HAVE_GNUTLS=1],[HAVE_GNUTLS=0])
|
||||||
|
+AC_ARG_WITH([gnutls], AS_HELP_STRING([--with-gnutls], [Build with GnuTLS]))
|
||||||
|
+AS_IF([test "x$with_gnutls" = "xyes"], [
|
||||||
|
+ PKG_CHECK_MODULES(GnuTLS, [gnutls >= 2.12.0],[HAVE_GNUTLS=1],[HAVE_GNUTLS=0])
|
||||||
|
+])
|
||||||
|
+
|
||||||
|
if test x$HAVE_GNUTLS = x1; then
|
||||||
|
AC_DEFINE(HAVE_GNUTLS, 1, [Define to 1 if you have a GnuTLS version of 2.12 or above])
|
||||||
|
else
|
||||||
Reference in New Issue
Block a user