bjh         2002/06/11 03:35:20

  Modified:    file_io/os2 dir.c
  Log:
  OS/2: Fix build breakage due to missing apr_dir_make_recursive().
  
  Revision  Changes    Path
  1.31      +8 -0      apr/file_io/os2/dir.c
  
  Index: dir.c
  ===================================================================
  RCS file: /home/cvs/apr/file_io/os2/dir.c,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- dir.c     20 Mar 2002 08:54:42 -0000      1.30
  +++ dir.c     11 Jun 2002 10:35:20 -0000      1.31
  @@ -175,6 +175,14 @@
   
   
   
  +apr_status_t apr_dir_make_recursive(const char *path, apr_fileperms_t perm,
  +                                    apr_pool_t *pool) 
  +{
  +    return APR_ENOTIMPL;
  +}
  +
  +
  +
   APR_DECLARE(apr_status_t) apr_dir_remove(const char *path, apr_pool_t *pool)
   {
       return APR_OS2_STATUS(DosDeleteDir(path));
  
  
  

Reply via email to