Displaying 8 results from an estimated 8 matches for "aix4".
Did you mean:
aix
2000 May 15
1
AIX authenticate patches
...ot;
tbert at abac.com -- Arthur C. Clarke
-------------- next part --------------
--- acconfig.h.orig Tue May 9 09:50:13 2000
+++ acconfig.h Tue May 9 09:50:19 2000
@@ -9,7 +9,7 @@
/* Define if you want to disable PAM support */
#undef DISABLE_PAM
-/* Define if you want to disable AIX4's authenticate function */
+/* Define if you want to enable AIX4's authenticate function */
#undef WITH_AIXAUTHENTICATE
/* Define if you want to disable lastlog support */
--- auth.c.orig Wed May 10 16:00:39 2000
+++ auth.c Thu May 11 13:11:23 2000
@@ -19,6 +19,9 @@
#include "comp...
2009 Aug 03
1
use gnulib, and begin to pass its "make syntax-check" tests
...currently assume that we are using
- # Microsoft Visual C++.
- if test "$GCC" != yes; then
- with_gnu_ld=no
- fi
- ;;
- openbsd*)
- with_gnu_ld=no
- ;;
-esac
-
-ld_shlibs=yes
-if test "$with_gnu_ld" = yes; then
- case "$host_os" in
- aix3* | aix4* | aix5*)
- # On AIX/PPC, the GNU linker is very broken
- if test "$host_cpu" != ia64; then
- ld_shlibs=no
- fi
- ;;
- amigaos*)
- hardcode_libdir_flag_spec='-L$libdir'
- hardcode_minus_L=yes
- # Samuel A. Falvo II <kc5tja at dolphin...
2000 Jun 21
0
IRIX patches
...FINE(WITH_IRIX_PROJECT)
+ AC_DEFINE(WITH_IRIX_AUDIT)
no_libsocket=1
no_libnsl=1
;;
*** openssh-2.1.1p1.orig/config.h.in Fri Jun 09 06:56:25 EDT 2000
--- openssh-2.1.1p1/config.h.in Wed Jun 21 14:17:02 EDT 2000
***************
*** 15,20 ****
--- 15,29 ----
/* Define if you want to enable AIX4's authenticate function */
#undef WITH_AIXAUTHENTICATE
+ /* Define if you have/want arrays (cluster-wide session managment, not C arrays) */
+ #undef WITH_ARRAY
+
+ /* Define if you want IRIX project management */
+ #undef WITH_IRIX_PROJECT
+
+ /* Define if you want IRIX audit trails */...
2003 May 01
1
ldAIX4 does not generate Rlapack.exp (PR#2893)
Full_Name: Richard L. Grubb
Version: 1.7.0
OS: AIX 4.3.3
Submission from: (NULL) (130.76.96.17)
src/modules/lapack/Makefile executes the tools/ldAIX4 script and supplies,
as arguments to ldAIX4, several object file names with filename extensions of
.lo.
The ldAIX4 script did not generate the file etc/Rlapack.exp until I changed
ldAIX4
as follows:
Original context:
# Check for object or archive files
ofiles=""
for arg; do
case $arg...
2003 Jul 03
0
AIX cleanups: includes and arguments
...=================================
RCS file: /usr/local/src/security/openssh/cvs/openssh_cvs/acconfig.h,v
retrieving revision 1.157
diff -u -r1.157 acconfig.h
--- acconfig.h 11 Jun 2003 12:51:32 -0000 1.157
+++ acconfig.h 1 Jul 2003 12:22:40 -0000
@@ -110,6 +110,9 @@
/* Define if you want to enable AIX4's authenticate function */
#undef WITH_AIXAUTHENTICATE
+/* Define if your AIX loginfailed() function takes 4 arguments */
+#undef AIX_LOGINFAILED_4ARG
+
/* Define if you have/want arrays (cluster-wide session managment, not C arrays) */
#undef WITH_IRIX_ARRAY
Index: auth-passwd.c
=======...
2000 Jan 19
3
AIX openssh patches
I have a few patches for AIX. The patchfile is attached below. The patch
has been tested on AIX4.2 and AIX4.3. The patch is on openssh-1.2.1pre25,
with openssl-0.94, using RSAref.
1) authenticate support - this function allows the system to determine
authentification. Whatever the system allows for login, authenticate
will too. It doesn't matter whether it is AFS, DFS, SecureID, lo...
2010 Jun 03
10
[Bug 1774] New: wtmp and lastlog on AIX
https://bugzilla.mindrot.org/show_bug.cgi?id=1774
Summary: wtmp and lastlog on AIX
Product: Portable OpenSSH
Version: 5.5p1
Platform: All
OS/Version: AIX
Status: NEW
Severity: normal
Priority: P2
Component: Build system
AssignedTo: unassigned-bugs at mindrot.org
ReportedBy: defrayable at
2000 Aug 27
0
patch for TIS (skey/opie) *and* passwd auth via PAM
...1.1p4/acconfig.h Sat Jul 15 06:59:14 2000
+++ openssh-2.1.1p4-hein/acconfig.h Sun Aug 27 12:13:36 2000
@@ -30,6 +30,9 @@
/* Define if you want to disable PAM support */
#undef DISABLE_PAM
+/* Define if you want TIS authentication through PAM */
+#undef PAM_TIS
+
/* Define if you want to enable AIX4's authenticate function */
#undef WITH_AIXAUTHENTICATE
diff -urN -x *~ openssh-2.1.1p4/auth-pam.c openssh-2.1.1p4-hein/auth-pam.c
--- openssh-2.1.1p4/auth-pam.c Sun Jul 9 14:42:33 2000
+++ openssh-2.1.1p4-hein/auth-pam.c Sun Aug 27 18:05:44 2000
@@ -33,12 +33,15 @@
#include "ssh.h&quo...