diff options
author | Ryan Bloom <rbb@apache.org> | 2000-01-19 02:16:31 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-01-19 02:16:31 +0100 |
commit | a8ce196da5b170ba69ebc9c3d5cb44d59f0c72e6 (patch) | |
tree | b15c3ece7785cfcd11f7671015519a0d4b2157f4 /os/unix/os.h | |
parent | This is a huge change to the configure system. Basically, this name space (diff) | |
download | apache2-a8ce196da5b170ba69ebc9c3d5cb44d59f0c72e6.tar.xz apache2-a8ce196da5b170ba69ebc9c3d5cb44d59f0c72e6.zip |
Finish the commits for the change in the header files. Basically, this hides
all of the Apache macros that modules don't need access to. This should
have been committed with the modules, but I wasn't paying attention to the
directory I was in when I ran the commit.
Submitted by: Manoj Kasichainula and Ryan Bloom
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84493 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/unix/os.h')
-rw-r--r-- | os/unix/os.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/os/unix/os.h b/os/unix/os.h index b11394e458..875a669990 100644 --- a/os/unix/os.h +++ b/os/unix/os.h @@ -90,6 +90,9 @@ extern int ap_os_is_path_absolute(const char *file); /* Other ap_os_ routines not used by this platform */ +#define ap_os_canonical_filename(p,f) (f) +#define ap_os_case_canonical_filename(p,f) (f) +#define ap_os_systemcase_filename(p,f) (f) #define ap_os_is_filename_valid(f) (1) #define ap_os_kill(pid, sig) kill(pid, sig) |