You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by jf...@apache.org on 2004/07/13 12:57:03 UTC

cvs commit: jakarta-tomcat-connectors/jk/native buildconf.sh configure.in

jfclere     2004/07/13 03:57:03

  Modified:    jk/native buildconf.sh configure.in
  Log:
  Add dectection of vsnprintf() and snprintf()
  
  Revision  Changes    Path
  1.9       +2 -0      jakarta-tomcat-connectors/jk/native/buildconf.sh
  
  Index: buildconf.sh
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/buildconf.sh,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- buildconf.sh	25 Feb 2004 15:26:24 -0000	1.8
  +++ buildconf.sh	13 Jul 2004 10:57:02 -0000	1.9
  @@ -6,6 +6,8 @@
   #aclocal --acdir=`aclocal --print-ac-dir`
   #aclocal --acdir=/usr/local/share/aclocal
   aclocal
  +echo "autoheader"
  +autoheader
   echo "automake -a --foreign --copy"
   automake -a --foreign --copy
   echo "autoconf"
  
  
  
  1.31      +7 -1      jakarta-tomcat-connectors/jk/native/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/configure.in,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- configure.in	25 Feb 2004 15:29:54 -0000	1.30
  +++ configure.in	13 Jul 2004 10:57:02 -0000	1.31
  @@ -5,6 +5,7 @@
   
   AC_PREREQ(2.13)
   AC_INIT(common/jk_worker.h)
  +AC_CONFIG_HEADER(common/portable.h)
   AC_CONFIG_AUX_DIR(scripts/build/unix)
   AC_CANONICAL_SYSTEM
   
  @@ -48,6 +49,11 @@
   
   AC_PATH_PROG(LIBTOOL,libtool,$PATH)dnl
   AC_SUBST(LIBTOOL)
  +
  +dnl check for snprintf and vsnprintf.
  +AC_CHECK_FUNC(snprintf, AC_DEFINE(HAVE_SNPRINTF,1,[Have snprintf()]))
  +
  +AC_CHECK_FUNC(vsnprintf, AC_DEFINE(HAVE_VSNPRINTF,1,[Have vsnprintf()]))
   
   APACHE_CONFIG_VARS=`pwd`/scripts/build/config_vars.mk
   WEBSERVER=""
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org