1. 05 Dec, 2001 1 commit
  2. 03 Dec, 2001 2 commits
    • William A. Rowe Jr's avatar
      · 130c56a2
      William A. Rowe Jr authored
        Resolved segfault in mod_isapi when configuring with ISAPICacheFile.
      
      PR: 8563, 8919
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92301 13f79535-47bb-0310-9956-ffa450edef68
      130c56a2
    • Greg Ames's avatar
      get binbuild working when apr, apr-util, and expat are built shared in · f14311db
      Greg Ames authored
      directories that are not well known to the loader.
      
      How it works:
      * libtool figures out the name of this system's library path environment
        variable (i.e. LD_LIBRARY_PATH, LIBPATH, DYLD_LIBRARY_PATH) at apr
        configure time (existing code)
      * save this variable name in SHLIBPATH_VAR in APRVARS
      * substitute this name when apachectl is created
      * uncomment the lines containing this variable during binbuild
      * install_bindist.sh updates the path to lib/ when the binary is
        installed (existing code)
      
      not done yet, but a good idea:
      * create a file or directory containing all environment variable settings
        for apachectl.  Others env vars need to be tweaked, at least on AIX and
        OS/390, so keeping them separate should reduce headaches long term.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92299 13f79535-47bb-0310-9956-ffa450edef68
      f14311db
  3. 01 Dec, 2001 2 commits
  4. 29 Nov, 2001 2 commits
  5. 28 Nov, 2001 1 commit
  6. 27 Nov, 2001 3 commits
  7. 24 Nov, 2001 3 commits
  8. 23 Nov, 2001 1 commit
  9. 22 Nov, 2001 2 commits
  10. 21 Nov, 2001 3 commits
  11. 20 Nov, 2001 3 commits
  12. 19 Nov, 2001 3 commits
  13. 18 Nov, 2001 1 commit
  14. 17 Nov, 2001 1 commit
  15. 15 Nov, 2001 1 commit
  16. 13 Nov, 2001 5 commits
  17. 12 Nov, 2001 5 commits
  18. 11 Nov, 2001 1 commit
    • Justin Erenkrantz's avatar
      apr_file_gets returns an apr_status_t not a char* and it returns · 54e14c11
      Justin Erenkrantz authored
      APR_SUCCESS when it reads something (which is 0).
      
      Two of the cases were doing while apr_file_gets > 0 which would cause
      it to loop when it returned APR_EOF.  So, the valid check here is to
      loop while we are receiving APR_SUCCESS.
      
      Fix all of the other apr_file_gets to check APR_SUCCESS explicitly so
      that it is obvious that we are checking an apr_status_t.  Yes,
      0 == APR_SUCCESS, but it obviously wasn't clear to someone what it
      was returning.
      
      Submitted by:	Dale Ghent <daleg@elemental.org>,
                      Brian Pane <bpane@pacbell.net>
      Reviewed by:	Justin Erenkrantz
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91852 13f79535-47bb-0310-9956-ffa450edef68
      54e14c11