mirror of
https://github.com/novatiq/packages.git
synced 2026-04-29 06:58:39 +01:00
ibrdtn: Updated to 1.0.0
Signed-off-by: Johannes Morgenroth <jm@m-network.de>
This commit is contained in:
@@ -8,17 +8,17 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=ibrdtn
|
||||
PKG_VERSION:=0.12.1
|
||||
PKG_VERSION:=1.0.0
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=http://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases
|
||||
PKG_MD5SUM:=96428dd4af541ea0c52db80776976a65
|
||||
PKG_MAINTAINER:=Johannes Morgenroth <morgenroth@ibr.cs.tu-bs.de>
|
||||
PKG_MD5SUM:=c30f6164b717132b2c302d965d03c968
|
||||
PKG_MAINTAINER:=Johannes Morgenroth <jm@m-network.de>
|
||||
PKG_LICENSE:=Apache-2.0
|
||||
|
||||
PKG_INSTALL:=1
|
||||
PKG_FIXUP:=libtool autoreconf
|
||||
PKG_FIXUP:=libtool
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
|
||||
@@ -1,33 +0,0 @@
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -159,12 +159,21 @@ AS_IF([test "x$enable_android" = "xyes"], [
|
||||
dnl -----------------------------------------------
|
||||
dnl check for glib support
|
||||
dnl -----------------------------------------------
|
||||
- PKG_CHECK_MODULES([GLIB], [glib-2.0], [
|
||||
- AC_SUBST(GLIB_CFLAGS)
|
||||
- AC_SUBST(GLIB_LIBS)
|
||||
- AC_DEFINE(HAVE_GLIB, [1], ["glib library is available"])
|
||||
- REQUIRES_LIBS="$REQUIRES_LIBS glib-2.0"
|
||||
- ], [
|
||||
+ AC_ARG_WITH([glib], [AS_HELP_STRING([--without-glib], [Disable linking to glib-2.0 library])], [with_glib=no], [with_glib=yes])
|
||||
+ AS_IF([test "x$with_glib" != xno],
|
||||
+ [
|
||||
+ PKG_CHECK_MODULES([GLIB], [glib-2.0], [
|
||||
+ AC_SUBST(GLIB_CFLAGS)
|
||||
+ AC_SUBST(GLIB_LIBS)
|
||||
+ AC_DEFINE(HAVE_GLIB, [1], ["glib library is available"])
|
||||
+ REQUIRES_LIBS="$REQUIRES_LIBS glib-2.0"
|
||||
+ ], [
|
||||
+ with_glib=no
|
||||
+ ])
|
||||
+ ], [])
|
||||
+
|
||||
+ AS_IF([test "x$with_glib" = xno],
|
||||
+ [
|
||||
AS_IF([test "x$has_endian_h" = "xyes"],[
|
||||
AC_MSG_NOTICE([use endian.h for endianess conversion])
|
||||
],[
|
||||
--
|
||||
1.9.1
|
||||
|
||||
Reference in New Issue
Block a user