2 # This file is part of the aMule project.
3 # This file is part of the libupnp library project.
5 # Copyright (c) 2003-2008 aMule Team ( admin@amule.org / http://www.amule.org )
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 dnl --------------------------------------------------------------------------
23 dnl LIBUPNP_CHECK([VERSION = 1.6.6], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
25 dnl Check for the libupnp library
26 dnl --------------------------------------------------------------------------
28 dnl This macro sets these variables:
30 dnl Something like "1.6.7"
31 dnl - LIBUPNP_CPPFLAGS
32 dnl Flags to be added to CPPFLAGS
34 dnl Flags to be added to CFLAGS
36 dnl Flags to be added to LDFLAGS
38 dnl Library to be added to LIBS
40 dnl The LIBUPNP_CPPFLAGS, LIBUPNP_CFLAGS, LIBUPNP_LDFLAGS and LIBUPNP_LIBS variables are also substituted.
42 AC_DEFUN([LIBUPNP_CHECK],
43 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
44 m4_define([MIN_LIBUPNP_VERSION], [m4_ifval([$1], [$1], [1.6.6])])dnl
46 dnl Test for --with-libupnp-prefix
50 [--with-libupnp-prefix=PREFIX],
51 [UPnP library location])],
52 [export PKG_CONFIG_PATH=$withval/lib/pkgconfig])
54 dnl Check for libupnp >= MIN_LIBUPNP_VERSION
55 AS_IF([test $cross_compiling = no], [
56 AC_MSG_CHECKING([for libupnp version >= MIN_LIBUPNP_VERSION])
57 AS_IF([test -n "$PKG_CONFIG"], [
58 AS_IF([$PKG_CONFIG libupnp --exists], [
59 LIBUPNP_VERSION=`$PKG_CONFIG libupnp --modversion`
60 AS_IF([$PKG_CONFIG libupnp --atleast-version=MIN_LIBUPNP_VERSION], [
62 resultstr=" (version $LIBUPNP_VERSION)"
63 LIBUPNP_CPPFLAGS=`$PKG_CONFIG libupnp --cflags-only-I`
64 LIBUPNP_CFLAGS=`$PKG_CONFIG libupnp --cflags-only-other`
65 LIBUPNP_LDFLAGS=`$PKG_CONFIG libupnp --libs-only-L`
66 LIBUPNP_LIBS=`$PKG_CONFIG libupnp --libs-only-other`
67 LIBUPNP_LIBS="$LIBUPNP_LIBS `$PKG_CONFIG libupnp --libs-only-l`"
70 resultstr=" (version $LIBUPNP_VERSION is not new enough)"
74 resultstr=" (try to use --with-libupnp-prefix=PREFIX)"
78 resultstr=" (pkg-config not found)"
80 AC_MSG_RESULT([$result$resultstr])
81 libupnp_error="libupnp >= MIN_LIBUPNP_VERSION not found$resultstr"
83 dnl Currently cross-compilation with libupnp is not supported.
85 libupnp_error="cross compiling"
88 dnl Execute the right action.
89 AS_IF([test ${result:-no} = yes], [$2], [$3])
92 AC_SUBST([LIBUPNP_CPPFLAGS])dnl
93 AC_SUBST([LIBUPNP_CFLAGS])dnl
94 AC_SUBST([LIBUPNP_LDFLAGS])dnl
95 AC_SUBST([LIBUPNP_LIBS])dnl
96 m4_undefine([MIN_LIBUPNP_VERSION])dnl