diff options
author | Damien Miller <djm@mindrot.org> | 2000-11-29 13:28:50 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-11-29 13:28:50 +1100 |
commit | a19cf47b0fa5cd16c1e471792109ce06023c9757 (patch) | |
tree | 6868e889dd93c26706c8fcbea15792c67abc5742 /configure.in | |
parent | dadc05126872b4335d0c71b271c4431340162400 (diff) |
- (djm) Patch from Pekka Savola <Pekka.Savola@netcore.fi> to include a few
more manpage paths in fixpaths calls
- (djm) Also add xauth path at Pekka's suggestion.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 01c541013..50e9d47ec 100644 --- a/configure.in +++ b/configure.in | |||
@@ -936,8 +936,13 @@ AC_ARG_WITH(xauth, | |||
936 | ] | 936 | ] |
937 | ) | 937 | ) |
938 | 938 | ||
939 | if test ! -z "$xauth_path" ; then | 939 | if test -z "$xauth_path" ; then |
940 | XAUTH_PATH="undefined" | ||
941 | AC_SUBST(XAUTH_PATH) | ||
942 | else | ||
940 | AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path") | 943 | AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path") |
944 | XAUTH_PATH=$xauth_path | ||
945 | AC_SUBST(XAUTH_PATH) | ||
941 | fi | 946 | fi |
942 | if test ! -z "$rsh_path" ; then | 947 | if test ! -z "$rsh_path" ; then |
943 | AC_DEFINE_UNQUOTED(RSH_PATH, "$rsh_path") | 948 | AC_DEFINE_UNQUOTED(RSH_PATH, "$rsh_path") |