You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bj...@locus.apache.org on 2000/07/30 14:01:54 UTC

cvs commit: apache-2.0/src/lib/apr/include apr.h.in

bjh         00/07/30 05:01:53

  Modified:    src/lib/apr configure.in
               src/lib/apr/include apr.h.in
  Log:
  Use the correct CR/LF line terminators on OS/2.
  
  Revision  Changes    Path
  1.142     +5 -0      apache-2.0/src/lib/apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/configure.in,v
  retrieving revision 1.141
  retrieving revision 1.142
  diff -u -r1.141 -r1.142
  --- configure.in	2000/07/26 15:31:28	1.141
  +++ configure.in	2000/07/30 12:01:53	1.142
  @@ -93,6 +93,7 @@
          OSDIR="os2"
          LIBPREFIX=""
          enable_apr_threads="system_threads"
  +       eolstr="\\r\\n"
          ;;
      *beos*)
          OSDIR="beos"
  @@ -102,13 +103,17 @@
          native_mmap_emul="1"
          USE_MM=yes
          AC_CHECK_DEFINE(BONE_VERSION, sys/socket.h)
  +       eolstr="\\n"
          ;;
      *)
          OSDIR="unix"
          config_subdirs="shmem/unix/mm"
          USE_MM=yes
  +       eolstr="\\n"
          ;;
   esac
  +
  +AC_SUBST(eolstr)
   
   if test "$enable_apr_threads" = "system_threads"; then
      ac_cv_enable_threads="yes"
  
  
  
  1.37      +1 -1      apache-2.0/src/lib/apr/include/apr.h.in
  
  Index: apr.h.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr.h.in,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- apr.h.in	2000/07/26 15:31:29	1.36
  +++ apr.h.in	2000/07/30 12:01:53	1.37
  @@ -134,7 +134,7 @@
   @off_t_fmt@
   
   /* Local machine definition for console and log output. */
  -#define APR_EOL_STR              "\n"
  +#define APR_EOL_STR              "@eolstr@"
   
   /* Define ap_signal and related necessary definitions.
    */