[srvx-commits] CVS: services configure.in,1.61,1.62
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2002-08-27 01:57:00
|
Update of /cvsroot/srvx/services
In directory usw-pr-cvs1:/tmp/cvs-serv4314
Modified Files:
configure.in
Log Message:
make --disable-tokens (and --enable-tokens) work properly
Index: configure.in
===================================================================
RCS file: /cvsroot/srvx/services/configure.in,v
retrieving revision 1.61
retrieving revision 1.62
diff -C2 -r1.61 -r1.62
*** configure.in 24 Aug 2002 19:08:01 -0000 1.61
--- configure.in 27 Aug 2002 01:56:56 -0000 1.62
***************
*** 249,259 ****
[ --disable-tokens Disables tokenization of P10 protocol output
(tokens required if linking to ircu 2.10.11)],
! [
AC_MSG_RESULT(no)
! ],
! [
AC_DEFINE(ENABLE_TOKENS, 1, [Define if tokenized P10 desired])
AC_MSG_RESULT(yes)
! ])
AC_MSG_CHECKING(whether to enable debug behaviors)
--- 249,259 ----
[ --disable-tokens Disables tokenization of P10 protocol output
(tokens required if linking to ircu 2.10.11)],
! [],[enableval=yes])
! if test "z$enableval" = zno ; then
AC_MSG_RESULT(no)
! else
AC_DEFINE(ENABLE_TOKENS, 1, [Define if tokenized P10 desired])
AC_MSG_RESULT(yes)
! fi
AC_MSG_CHECKING(whether to enable debug behaviors)
|