1998-12-01 Theodore Ts'o <tytso@rsts-11.mit.edu>
- * error_message.c: Use "#if defined(MSDOS) || ..." instead of
- "#if !defined(unix)", since not all Unix compilers define
+ * com_err.h, error_table.h, error_message.c: Use "#if
+ defined(MSDOS) || ..." instead of "#if
+ !defined(unix)", since not all Unix compilers define
"unix".
1998-07-02 Theodore Ts'o <tytso@rsts-11.mit.edu>
thisconfigdir=.
+myfulldir=util/et
+mydir=.
BUILDTOP=$(REL)$(U)$(S)$(U)
RELDIR=../util/et
CFLAGS = $(CCOPTS) $(DEFS) $(LOCALINCLUDE)
#ifndef __COM_ERR_H
-/* This should be part of k5-config.h but many application
- * programs are not including that file. We probably want to
- * come up with a better way of handling this problem.
- */
-#if defined(_AIX) && !defined(unix)
-#define unix
-#endif
-
#if defined(_MSDOS) || defined(_WIN32) || defined(macintosh)
#include <win-mac.h>
#if defined(macintosh) && defined(__CFM68K__) && !defined(__USING_STATIC_LIBS__)
KRB5_DLLIMP extern errcode_t KRB5_CALLCONV remove_error_table
ET_P((const struct error_table FAR *));
-#ifdef unix
+#if !defined(_MSDOS) && !defined(_WIN32) && !defined(macintosh)
/*
* The display routine should be application specific. A global hook,
* may cause inappropriate display procedures to be called between
const struct error_table FAR *table;
};
-#if defined(unix) || defined(_AIX)
+#if !defined(_MSDOS) && !defined(_WIN32) && !defined(macintosh)
extern struct et_list * _et_list;
#endif