summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2005-09-02 15:02:38 +0000
committerColin Watson <cjwatson@debian.org>2005-09-02 15:02:38 +0000
commit4fc5869681545ce78e366e5de8226d693912dbb2 (patch)
tree355317455ec5f4d11d502976d1c81bf287093fab
parent2f4556971b3547fa4f8a78bd5d53ac222e22d65b (diff)
* Add GNU/kFreeBSD support (thanks, Aurelien Jarno; closes: #318113).
-rwxr-xr-xconfigure25
-rw-r--r--configure.ac8
-rw-r--r--debian/changelog1
3 files changed, 34 insertions, 0 deletions
diff --git a/configure b/configure
index 217c5a65d..76819694c 100755
--- a/configure
+++ b/configure
@@ -5562,6 +5562,31 @@ _ACEOF
5562_ACEOF 5562_ACEOF
5563 5563
5564 ;; 5564 ;;
5565*-*-k*bsd*-gnu)
5566 check_for_libcrypt_later=1
5567 cat >>confdefs.h <<\_ACEOF
5568#define PAM_TTY_KLUDGE 1
5569_ACEOF
5570
5571 cat >>confdefs.h <<\_ACEOF
5572#define LOCKED_PASSWD_PREFIX "!"
5573_ACEOF
5574
5575 cat >>confdefs.h <<\_ACEOF
5576#define SPT_TYPE SPT_REUSEARGV
5577_ACEOF
5578
5579
5580cat >>confdefs.h <<\_ACEOF
5581#define _PATH_BTMP "/var/log/btmp"
5582_ACEOF
5583
5584
5585cat >>confdefs.h <<\_ACEOF
5586#define USE_BTMP 1
5587_ACEOF
5588
5589 ;;
5565*-*-linux*) 5590*-*-linux*)
5566 no_dev_ptmx=1 5591 no_dev_ptmx=1
5567 check_for_libcrypt_later=1 5592 check_for_libcrypt_later=1
diff --git a/configure.ac b/configure.ac
index b938228c5..c94df6d6f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -250,6 +250,14 @@ main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
250 AC_DEFINE(WITH_ABBREV_NO_TTY) 250 AC_DEFINE(WITH_ABBREV_NO_TTY)
251 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*") 251 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
252 ;; 252 ;;
253*-*-k*bsd*-gnu)
254 check_for_libcrypt_later=1
255 AC_DEFINE(PAM_TTY_KLUDGE)
256 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!")
257 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
258 AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
259 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
260 ;;
253*-*-linux*) 261*-*-linux*)
254 no_dev_ptmx=1 262 no_dev_ptmx=1
255 check_for_libcrypt_later=1 263 check_for_libcrypt_later=1
diff --git a/debian/changelog b/debian/changelog
index 35406d56f..39199b96d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ openssh (1:4.1p1-7) UNRELEASED; urgency=low
4 /etc/ssh/ssh_host_key itself (closes: #312312). 4 /etc/ssh/ssh_host_key itself (closes: #312312).
5 * Work around the ssh-askpass alternative somehow ending up in manual mode 5 * Work around the ssh-askpass alternative somehow ending up in manual mode
6 pointing to the obsolete /usr/lib/ssh/gnome-ssh-askpass. 6 pointing to the obsolete /usr/lib/ssh/gnome-ssh-askpass.
7 * Add GNU/kFreeBSD support (thanks, Aurelien Jarno; closes: #318113).
7 8
8 -- Colin Watson <cjwatson@debian.org> Sat, 9 Jul 2005 23:59:38 +0100 9 -- Colin Watson <cjwatson@debian.org> Sat, 9 Jul 2005 23:59:38 +0100
9 10