diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-10-01 05:22:29 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-10-01 05:22:29 +0000 |
commit | 02100ea739faf98920419a953e49add7cbfc9b5c (patch) | |
tree | bf0e3022e31fffb1109c1ce643b8796fe609b25a | |
parent | 76e08312061610c18501e3685b1483010daba620 (diff) | |
download | ATCD-02100ea739faf98920419a953e49add7cbfc9b5c.tar.gz |
ChangeLogTag:Thu Sep 30 22:20:10 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | m4/tls.m4 | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 7cdc0f653d7..1a382b95c29 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Thu Sep 30 22:20:10 2004 Ossama Othman <ossama@dre.vanderbilt.edu> + + * m4/tls.m4 (ACE_CHECK_TLS): + + Fixed problem where leading forward slash was not included in + the Kerberos include directory pathname. Thanks to Steve Huston + for reporting the problem. + Thu Sep 30 19:30:23 2004 J.T. Conklin <jtc@acorntoolworks.com> * ace/Makefile.am: diff --git a/m4/tls.m4 b/m4/tls.m4 index a9d45f7a2cb..ebbf9d97613 100644 --- a/m4/tls.m4 +++ b/m4/tls.m4 @@ -81,9 +81,9 @@ SSL_shutdown (ssl); ], [ ace_kerberos_dir="" - for ace_kerberos in usr usr/local; do + for ace_kerberos in /usr /usr/local; do ace_kerberos_dir="${ace_kerberos}/kerberos/include" - ace_TLS_CPPFLAGS="-I/${ace_kerberos_dir}" + ace_TLS_CPPFLAGS="-I${ace_kerberos_dir}" CPPFLAGS="$ace_TLS_CPPFLAGS $ace_save_CPPFLAGS" |