Skip to content
  1. Mar 26, 1998
  2. Mar 25, 1998
  3. Mar 24, 1998
  4. Mar 23, 1998
    • Ralf S. Engelschall's avatar
      if apache+HIDE && module+!HIDE then · 161c4091
      Ralf S. Engelschall authored
          no chance at all, because dlopen() cannot implicitly
          resolve apache's XXX symbols for module because they
          are named AP_XXX
      else if apache+!HIDE && module+HIDE then
          no chance at all, because dlopen() cannot implicitly
          resolve apache's AP_XXX symbols for module because they
          are named XXX
      else if apache+HIDE && module+HIDE then
          we have to prefix the resolved module symbol with AP_
          (THIS PATCH!)
      else if apache+!HIDE && module+!HIDE then
          we have to just resolve the symbol as is
          (AS ALREADY DONE IN THE PAST)
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80638 13f79535-47bb-0310-9956-ffa450edef68
      161c4091