# This file is part of Link Monitor Applet.
#
# Copyright (C) 2006 Jean-Yves Lefort.
#
# As a special exception to the Link Monitor Applet licensing terms,
# Jean-Yves Lefort gives unlimited permission to copy, distribute and
# modify this file.
dnl AM_PATH_GEOIP([ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
dnl
AC_DEFUN([AM_PATH_GEOIP],
[GEOIP_CFLAGS=""
GEOIP_LIBS=""
AC_CHECK_LIB(GeoIP, GeoIP_new,
[GEOIP_LIBS="-lGeoIP"; ifelse([$1],, :, [$1])],
[ifelse([$2],, :, [$2])])
AC_SUBST(GEOIP_CFLAGS)
AC_SUBST(GEOIP_LIBS)])
syntax highlighted by Code2HTML, v. 0.9.1