Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 167829 | Differences between
and this patch

Collapse All | Expand All

(-)configure.in (+9 lines)
Lines 157-162 Link Here
157
    AC_CHECK_HEADER(dlfcn.h,[LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -ldl" ; AC_DEFINE(HAVE_NCORE,1,Support for NodalCore acceleration)], AC_MSG_WARN([****** NodalCore support disabled (no support for dlopen)]))
157
    AC_CHECK_HEADER(dlfcn.h,[LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -ldl" ; AC_DEFINE(HAVE_NCORE,1,Support for NodalCore acceleration)], AC_MSG_WARN([****** NodalCore support disabled (no support for dlopen)]))
158
fi
158
fi
159
159
160
AC_ARG_ENABLE(nls,
161
    AC_HELP_STRING([--disable-nls], [disable nls support]),
162
    [want_nls=$enableval], [want_nls=yes]
163
)
164
165
if test $want_nls = yes; then
166
   CPPFLAGS="$CPPFLAGS -DENABLE_NLS"
167
fi
168
160
AC_ARG_ENABLE(dns,
169
AC_ARG_ENABLE(dns,
161
    AC_HELP_STRING([--disable-dns], [disable support for database verification through DNS]),
170
    AC_HELP_STRING([--disable-dns], [disable support for database verification through DNS]),
162
    [want_dns=$enableval], [want_dns=yes]
171
    [want_dns=$enableval], [want_dns=yes]
(-)shared/output.c (-1 / +1 lines)
Lines 53-59 Link Here
53
pthread_mutex_t logg_mutex = PTHREAD_MUTEX_INITIALIZER;
53
pthread_mutex_t logg_mutex = PTHREAD_MUTEX_INITIALIZER;
54
#endif
54
#endif
55
55
56
#ifdef  C_LINUX
56
#if defined(C_LINUX) && defined(ENABLE_NLS)
57
#include <libintl.h>
57
#include <libintl.h>
58
#include <locale.h>
58
#include <locale.h>
59
59

Return to bug 167829