You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.8 KiB
56 lines
1.8 KiB
Index: Makefile.in |
|
--- Makefile.in.orig 2019-10-09 02:31:03.000000000 +0200 |
|
+++ Makefile.in 2019-10-09 23:02:31.678193000 +0200 |
|
@@ -325,7 +325,7 @@ |
|
$(AUTORECONF) |
|
-rm -rf autom4te.cache .depend.bak |
|
|
|
-install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files install-sysconf host-key check-config |
|
+install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files install-sysconf host-key |
|
install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files install-sysconf |
|
install-nosysconf: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files |
|
|
|
Index: auth-pam.c |
|
--- auth-pam.c.orig 2019-10-09 02:31:03.000000000 +0200 |
|
+++ auth-pam.c 2019-10-09 23:02:31.678884000 +0200 |
|
@@ -68,7 +68,7 @@ |
|
|
|
#if !defined(SSHD_PAM_SERVICE) |
|
extern char *__progname; |
|
-# define SSHD_PAM_SERVICE __progname |
|
+# define SSHD_PAM_SERVICE "openssh" |
|
#endif |
|
|
|
/* OpenGroup RFC86.0 and XSSO specify no "const" on arguments */ |
|
Index: configure |
|
--- configure.orig 2019-10-09 02:39:30.000000000 +0200 |
|
+++ configure 2019-10-09 23:02:31.682328000 +0200 |
|
@@ -11029,7 +11029,6 @@ |
|
strmode \ |
|
strndup \ |
|
strnlen \ |
|
- strnvis \ |
|
strptime \ |
|
strsignal \ |
|
strtonum \ |
|
Index: openbsd-compat/bsd-openpty.c |
|
--- openbsd-compat/bsd-openpty.c.orig 2019-10-09 02:31:03.000000000 +0200 |
|
+++ openbsd-compat/bsd-openpty.c 2019-10-09 23:02:31.682793000 +0200 |
|
@@ -90,7 +90,7 @@ |
|
} |
|
return (0); |
|
|
|
-#elif defined(HAVE_DEV_PTMX) |
|
+#elif defined(HAVE_DEV_PTMX) && defined(I_PUSH) |
|
/* |
|
* This code is used e.g. on Solaris 2.x. (Note that Solaris 2.3 |
|
* also has bsd-style ptys, but they simply do not work.) |
|
Index: version.h |
|
--- version.h.orig 2019-10-09 02:31:03.000000000 +0200 |
|
+++ version.h 2019-10-09 23:02:31.683243000 +0200 |
|
@@ -3,4 +3,4 @@ |
|
#define SSH_VERSION "OpenSSH_8.1" |
|
|
|
#define SSH_PORTABLE "p1" |
|
-#define SSH_RELEASE SSH_VERSION SSH_PORTABLE |
|
+#define SSH_RELEASE SSH_VERSION SSH_PORTABLE " @l_openpkg_release@"
|
|
|