dnl $Id: config.m4,v 1.4 2003/07/17 13:54:39 mbretter Exp $
dnl config.m4 for extension radius

PHP_ARG_ENABLE(radius, whether to enable radius support,
dnl Make sure that the comment is aligned:
[  --enable-radius           Enable radius support])

if test "$PHP_RADIUS" != "no"; then

  AC_TRY_COMPILE([
#include <sys/types.h>
  ], [
u_int32_t ulongint;
ulongint = 1;
  ], [
    AC_DEFINE(HAVE_U_INT32_T, 1, [ ])
  ])

 PHP_NEW_EXTENSION(radius, radius.c radlib.c, $ext_shared)
fi


syntax highlighted by Code2HTML, v. 0.9.1