You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by gr...@apache.org on 2001/11/26 23:50:13 UTC

cvs commit: httpd-2.0/modules/experimental config.m4

gregames    01/11/26 14:50:13

  Modified:    modules/experimental config.m4
  Log:
  include mod_charset_lite by default on an ebcdic system
  
  Revision  Changes    Path
  1.16      +8 -1      httpd-2.0/modules/experimental/config.m4
  
  Index: config.m4
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/experimental/config.m4,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- config.m4	2001/11/21 22:26:07	1.15
  +++ config.m4	2001/11/26 22:50:13	1.16
  @@ -1,7 +1,14 @@
   
   APACHE_MODPATH_INIT(experimental)
   
  -APACHE_MODULE(charset_lite, character set translation, , , no)
  +if test "$ac_cv_ebcdic" = "yes"; then
  +# mod_charset_lite can be very useful on an ebcdic system, 
  +#   so include it by default
  +    APACHE_MODULE(charset_lite, character set translation, , , yes)
  +else
  +    APACHE_MODULE(charset_lite, character set translation, , , no)
  +fi
  +
   dnl #  list of object files for mod_cache
   cache_objs="dnl
   mod_cache.lo dnl