diff options
author | Damien Miller <djm@mindrot.org> | 1999-12-29 10:03:37 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-12-29 10:03:37 +1100 |
commit | e79334a2b06d4c897c4b764e5e94af72320e3ea9 (patch) | |
tree | ab7a0c37678f1967601f3884997996fedefdb480 | |
parent | 9550a76c3716acc1a591dd9604cbc958a92ad891 (diff) |
- Autodetect perl, patch from David Rankin
<drankin@bohemians.lexington.ky.us>
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Makefile.in | 3 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 6 insertions, 1 deletions
@@ -2,6 +2,8 @@ | |||
2 | - Applied another NetBSD portability patch from David Rankin | 2 | - Applied another NetBSD portability patch from David Rankin |
3 | <drankin@bohemians.lexington.ky.us> | 3 | <drankin@bohemians.lexington.ky.us> |
4 | - Fix --with-default-path option. | 4 | - Fix --with-default-path option. |
5 | - Autodetect perl, patch from David Rankin | ||
6 | <drankin@bohemians.lexington.ky.us> | ||
5 | 7 | ||
6 | 19991228 | 8 | 19991228 |
7 | - Replacement for getpagesize() for systems which lack it | 9 | - Replacement for getpagesize() for systems which lack it |
diff --git a/Makefile.in b/Makefile.in index 2f2e31e81..72ac0a81e 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -25,6 +25,7 @@ LIBWRAP=@LIBWRAP@ | |||
25 | AR=@AR@ | 25 | AR=@AR@ |
26 | RANLIB=@RANLIB@ | 26 | RANLIB=@RANLIB@ |
27 | INSTALL=@INSTALL@ | 27 | INSTALL=@INSTALL@ |
28 | PERL=@PERL@ | ||
28 | LDFLAGS=-L. @LDFLAGS@ | 29 | LDFLAGS=-L. @LDFLAGS@ |
29 | 30 | ||
30 | GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui` | 31 | GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui` |
@@ -89,7 +90,7 @@ clean: | |||
89 | *.1 *.8 sshd_config ssh_config | 90 | *.1 *.8 sshd_config ssh_config |
90 | 91 | ||
91 | manpages: | 92 | manpages: |
92 | $(FIXPATHS) -Dsysconfdir=${sysconfdir} $(srcdir)/*.1.in $(srcdir)/*.8.in \ | 93 | $(PERL) $(FIXPATHS) -Dsysconfdir=${sysconfdir} $(srcdir)/*.1.in $(srcdir)/*.8.in \ |
93 | $(srcdir)/ssh_config.in $(srcdir)/sshd_config.in | 94 | $(srcdir)/ssh_config.in $(srcdir)/sshd_config.in |
94 | 95 | ||
95 | install: all | 96 | install: all |
diff --git a/configure.in b/configure.in index 6d03beca7..ae8afdf4d 100644 --- a/configure.in +++ b/configure.in | |||
@@ -9,6 +9,8 @@ AC_PROG_CPP | |||
9 | AC_PROG_RANLIB | 9 | AC_PROG_RANLIB |
10 | AC_PROG_INSTALL | 10 | AC_PROG_INSTALL |
11 | AC_CHECK_PROG(AR, ar, ar) | 11 | AC_CHECK_PROG(AR, ar, ar) |
12 | AC_PATH_PROG(PERL, perl) | ||
13 | AC_SUBST(PERL) | ||
12 | AC_PATH_PROG(xauth_path, xauth) | 14 | AC_PATH_PROG(xauth_path, xauth) |
13 | 15 | ||
14 | dnl Use ip address instead of hostname in $DISPLAY | 16 | dnl Use ip address instead of hostname in $DISPLAY |