Changes to compile under AIX--made a while back but never committed
authorSam Hartman <hartmans@mit.edu>
Fri, 8 Sep 1995 20:01:16 +0000 (20:01 +0000)
committerSam Hartman <hartmans@mit.edu>
Fri, 8 Sep 1995 20:01:16 +0000 (20:01 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6742 dc483132-0cff-0310-8789-dd5450dbe970

src/krb524/ChangeLog
src/krb524/configure.in
src/krb524/krb524d.c

index fb4e4953d8012f178db31d70753c918055563057..e5c3a90fd1384227f00069dddfe92aa16eed681a 100644 (file)
@@ -1,5 +1,9 @@
+
+
+
 Wed Sep 06 14:20:57 1995   Chris Provenzano (proven@mit.edu)
 
+
         * cnv_tkt_skey.c, conv_creds.c, get_cred.c k524init.c krb524d.c,
        * test.c : s/keytype/enctype/g, s/KEYTYPE/ENCTYPE/g
 
@@ -21,10 +25,12 @@ Thu Aug 24 18:40:22 1995  Theodore Y. Ts'o  <tytso@dcl>
 
        * .Sanitize: Update file list
 
+
 Mon Aug 07 11:25:53 1995  Chris Provenzano  (proven@mitedu)
 
        * krb524d.c: Hacks to get it to compile with new kdb format.
 
+
 Thu Jul 27 15:14:15 EDT 1995   Paul Park       (pjpark@mit.edu)
        * krb524d.c - Use the etype which is supplied in the krb5_keytype_array
                specified by the master key type.
@@ -34,10 +40,16 @@ Mon Jul 17 15:15:01 EDT 1995        Paul Park       (pjpark@mit.edu)
        * krb524d.c - Add NULL stash file argument to krb5_db_fetch_mkey().
 
 
+
 Fri Jul 7 16:07:21 EDT 1995    Paul Park       (pjpark@mit.edu)
        * Makefile.in - Remove all explicit library handling and LDFLAGS.
        * configure.in - Add USE_<mumble> and KRB5_LIBRARIES.
 
+Thu Jul 13 17:22:17 1995  Sam Hartman  <hartmans@tertius.mit.edu>
+
+       * configure.in :  Include sys/select.h if present.
+
+
 
 Fri Jun 30 14:38:56 EDT 1995   Paul Park       (pjpark@mit.edu)
        * configure.in - Add --with-dbm to select between Berkeley and DBM
index 916e09560832c5ce734e559e535ae85ee7d2fff9..95b73ed2b80e871cbbffcc155d979a9806cdf70d 100644 (file)
@@ -24,4 +24,5 @@ USE_KDB5_LIBRARY
 USE_KRB4_LIBRARY
 KRB5_LIBRARIES
 V5_USE_SHARED_LIB
+AC_CHECK_HEADERS(sys/select.h) dnl
 V5_AC_OUTPUT_MAKEFILE
index bf15d988628ebb404dec11e4332ceb31f6a7335c..86265cd09ce52af7114fa4c4b04b13ca22d7cafb 100644 (file)
@@ -24,6 +24,9 @@
 #include "com_err.h"
 
 #include <stdio.h>
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif
 #include <string.h>
 #include <signal.h>
 #include <sys/types.h>