* Fix static libs on platforms using .a for shared libs
* Fix utmp handling for non-hpux platforms with ut_exit different from utmpx.
* Include librarymacros in ss configure.in
* Remove declarations of h_errno
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10632
dc483132-0cff-0310-8789-
dd5450dbe970
* Makefile.in: Update commands to build the Macintosh MPW Makefile
+1998-07-05 <hartmans@fundsxpress.com>
+
+ * aclocal.m4 (enable_shared): If we aren't building shared, then
+ make sure that SHLIBEXT and friends are not set so that we don't
+ break on AIX and anything else where STLIBEXT == SHLIBEXT
+
1998-05-27 Theodore Ts'o <tytso@rsts-11.mit.edu>
* Makefile.in: Don't depend on $(RM) macro being defined when
else
RUN_ENV=
CC_LINK="$CC_LINK_STATIC"
+ SHLIBEXT=.so-nobuild
+ SHLIBVEXT=.so.v-nobuild
+ SHLIBSEXT=.so.s-nobuild
fi],
RUN_ENV=
CC_LINK="$CC_LINK_STATIC"
+1998-07-11 <hartmans@fundsxpress.com>
+
+ * ftpd.c (data;): do not declare h_errno; breaks on AIX and
+ possibly with other multithreaded systems.
+
1998-05-26 Theodore Ts'o <tytso@rsts-11.mit.edu>
* logwtmp.c: Include paths.h if present, and use _PATH_WTMP to
return 0;
}
if (!(hp = gethostbyname(localname))) {
- extern int h_errno;
reply(501, "couldn't canonicalize local hostname (%d)\n", h_errno);
syslog(LOG_ERR, "Couldn't canonicalize local hostname (%d)", h_errno);
return 0;
+1998-07-05 <hartmans@fundsxpress.com>
+
+ * client.c (main): do not declare h_errno
+
Wed Feb 18 15:39:14 1998 Tom Yu <tlyu@mit.edu>
* Makefile.in: Remove trailing slash from thisconfigdir. Fix up
if ((host = gethostbyname (argv[1])) == NULL)
{
- extern int h_errno;
+
if (h_errno == HOST_NOT_FOUND)
fprintf (stderr, "uu-client: unknown host \"%s\".\n", argv[1]);
AC_CHECK_HEADERS(unistd.h stdlib.h krb_db.h kdc.h alloca.h sys/time.h sys/select.h)
AC_CHECK_FUNCS(ftime timezone getcwd strstr waitpid vsprintf)
AC_REPLACE_FUNCS([memmove strftime])
+AC_HEADER_TIME
CHECK_SIGNALS
CHECK_WAIT_TYPE
CHECK_SETJMP
* protocol as implemented in lib/krb5/os/adm_conn.c. Any changes
* in one module must be reflected in the other.
*/
-#include <signal.h>
#define NEED_SOCKETS
#include "k5-int.h"
+#include <signal.h>
#include "com_err.h"
#include "kadm5_defs.h"
#include "adm.h"
+1998-07-05 <hartmans@fundsxpress.com>
+
+ * update_utmp.c (pty_update_utmp): If the ut_exit differs test
+ indicates the structures differ, and we don't have a special case,
+ do nothing rather than trying to copy the field. It's not worth
+ breaking the build over.
+
Mon Apr 6 19:35:33 1998 Tom Yu <tlyu@voltage-multiplier.mit.edu>
* update_utmp.c (pty_update_utmp): Don't record LOGIN_PROCESS
utx.ut_exit.__e_termination = ent.ut_exit.e_termination;
utx.ut_exit.__e_exit = ent.ut_exit.e_exit;
#else
- utx.ut_exit = ent.ut_exit;
+ /*xxx do nothing for now; we don't even know the structure member exists*/
#endif
#endif
utx.ut_tv.tv_sec = ent.ut_time;
AC_INIT(ct.y)
CONFIG_RULES
+AC_PROG_INSTALL
AC_PROG_LEX
AC_PROG_YACC
AC_PROG_AWK