mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
ibrdtnd: Updated to 1.0.0
Signed-off-by: Johannes Morgenroth <jm@m-network.de>
This commit is contained in:
@@ -1,75 +0,0 @@
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -333,30 +333,46 @@ AS_IF([test "x$enable_android" = "xyes"], [
|
||||
dnl optional parameter: Wifi-P2P support
|
||||
dnl -----------------------------------------------
|
||||
|
||||
- PKG_CHECK_MODULES([WIFIP2P], wifip2p >= 0.1 , [
|
||||
- with_wifi_p2p="yes"
|
||||
- AC_SUBST(WIFIP2P_CFLAGS)
|
||||
- AC_SUBST(WIFIP2P_LIBS)
|
||||
- AC_DEFINE(WITH_WIFIP2P, [1], ["wifi-p2p support enabled"])
|
||||
- ], [
|
||||
- with_wifi_p2p="no"
|
||||
- AC_MSG_WARN([wifi-p2p library not found. wifi-p2p support is disabled.])
|
||||
- ])
|
||||
+ AC_ARG_WITH([wifip2p],
|
||||
+ AS_HELP_STRING([--without-wifip2p], [Build without wifip2p support]),
|
||||
+ [
|
||||
+ with_wifi_p2p="no"
|
||||
+ AC_MSG_NOTICE([WIFIP2P support disabled])
|
||||
+ ], [
|
||||
+ PKG_CHECK_MODULES([WIFIP2P], wifip2p >= 0.1 , [
|
||||
+ with_wifi_p2p="yes"
|
||||
+ AC_SUBST(WIFIP2P_CFLAGS)
|
||||
+ AC_SUBST(WIFIP2P_LIBS)
|
||||
+ AC_DEFINE(WITH_WIFIP2P, [1], ["wifi-p2p support enabled"])
|
||||
+ ], [
|
||||
+ with_wifi_p2p="no"
|
||||
+ AC_MSG_WARN([wifi-p2p library not found. wifi-p2p support is disabled.])
|
||||
+ ])
|
||||
+ ]
|
||||
+ )
|
||||
|
||||
- dnl -----------------------------------------------
|
||||
- dnl optional parameter: VMime support
|
||||
- dnl -----------------------------------------------
|
||||
-
|
||||
- PKG_CHECK_MODULES([VMIME], vmime >= 0.9.1 , [
|
||||
- with_vmime="yes"
|
||||
- AC_SUBST(VMIME_CFLAGS)
|
||||
- AC_SUBST(VMIME_LIBS)
|
||||
- AC_DEFINE(HAVE_VMIME, [1], ["Email Convergence Layer is available"])
|
||||
- AC_CHECK_HEADERS([vmime/utility/smartPtrInt.hpp])
|
||||
- ], [
|
||||
- with_vmime="no"
|
||||
- AC_MSG_WARN([VMime library not found. Email Convergence Layer is disabled.])
|
||||
- ])
|
||||
+ dnl -----------------------------------------------
|
||||
+ dnl optional parameter: VMime support
|
||||
+ dnl -----------------------------------------------
|
||||
+
|
||||
+ AC_ARG_WITH([vmime],
|
||||
+ AS_HELP_STRING([--without-vmime], [Build without vmime support]),
|
||||
+ [
|
||||
+ with_vmime="no"
|
||||
+ AC_MSG_NOTICE([VMIME support disabled])
|
||||
+ ], [
|
||||
+ PKG_CHECK_MODULES([VMIME], vmime >= 0.9.1 , [
|
||||
+ with_vmime="yes"
|
||||
+ AC_SUBST(VMIME_CFLAGS)
|
||||
+ AC_SUBST(VMIME_LIBS)
|
||||
+ AC_DEFINE(HAVE_VMIME, [1], ["Email Convergence Layer is available"])
|
||||
+ AC_CHECK_HEADERS([vmime/utility/smartPtrInt.hpp])
|
||||
+ ], [
|
||||
+ with_vmime="no"
|
||||
+ AC_MSG_WARN([VMime library not found. Email Convergence Layer is disabled.])
|
||||
+ ])
|
||||
+ ]
|
||||
+ )
|
||||
|
||||
dnl -----------------------------------------------
|
||||
dnl check for regex capabilities
|
||||
--
|
||||
1.9.1
|
||||
|
||||
@@ -1,26 +0,0 @@
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -138,11 +138,17 @@ AS_IF([test "x$enable_android" = "xyes"], [
|
||||
# Checks for library functions.
|
||||
AC_CHECK_FUNCS([gethostname socket])
|
||||
|
||||
- # Check for presence of pdfLaTeX
|
||||
- AC_CHECK_PROG(PDFLATEX, pdflatex, pdflatex)
|
||||
- if test -z "$PDFLATEX"; then
|
||||
- AC_MSG_WARN([Unable to create PDF version of the documentation.])
|
||||
- fi
|
||||
+ AC_ARG_ENABLE([docs],
|
||||
+ AS_HELP_STRING([--enable-docs], [Build documentation using PDFLaTeX]),
|
||||
+ [
|
||||
+ # Check for presence of pdfLaTeX
|
||||
+ AC_CHECK_PROG(PDFLATEX, pdflatex, pdflatex)
|
||||
+ if test -z "$PDFLATEX"; then
|
||||
+ AC_MSG_WARN([Unable to create PDF version of the documentation.])
|
||||
+ fi
|
||||
+ ], [
|
||||
+ PDFLATEX="no"
|
||||
+ ])
|
||||
|
||||
AC_ARG_ENABLE([libdaemon],
|
||||
AS_HELP_STRING([--disable-libdaemon], [Build without libdaemon support]),
|
||||
--
|
||||
Reference in New Issue
Block a user