1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
Author: Kamal Mostafa <kamal@whence.com>
Description: Disable AM_GNU_RADIUS check from configure.ac
As Radius is not packaged in Debian, we need to comment this
check until radius.am is distributed in Mailutils (or we give
up and add it via patches).
Origin: Ubuntu
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=568484
Forwarded: not-needed
--- a/configure.ac 2010-02-28 19:02:51.000000000 +0000
+++ b/configure.ac 2010-02-28 19:02:56.000000000 +0000
@@ -814,12 +814,14 @@
MU_ENABLE_SUPPORT(prog)
-# FIXME: Should be --with-radius
-MU_ENABLE_SUPPORT(radius,
- [AM_GNU_RADIUS(1.6,
- [MU_AUTHLIBS="$MU_AUTHLIBS -lgnuradius"
- mu_cv_enable_radius=yes],
- [mu_cv_enable_radius=no])])
+## Disabled to avoid FTBFS in Ubuntu Lucid (LP: #nnnnnn):
+##
+## # FIXME: Should be --with-radius
+## MU_ENABLE_SUPPORT(radius,
+## [AM_GNU_RADIUS(1.6,
+## [MU_AUTHLIBS="$MU_AUTHLIBS -lgnuradius"
+## mu_cv_enable_radius=yes],
+## [mu_cv_enable_radius=no])])
if test x"$testpam" = x"yes"; then
AC_CHECK_HEADERS(security/pam_appl.h)
|