AC_PROG_ARCHIVE_ADD
AC_PROG_RANLIB
AC_PROG_INSTALL
+AC_CHECK_HEADERS(unistd.h stdlib.h)
+AC_CHECK_FUNCS(seteuid setresuid setreuid)
LinkFileDir(../libkrb5util.a, libkrb5util.a, ./krb5util)
AppendRule([all-unix:: ../libkrb5util.a])
dnl AppendRule([all:: all-$(WHAT)])
--- /dev/null
+/*
+ * krb5_seteuid: Attempt to set the effective user ID of the current process
+ * in such a way it can be restored lated.
+ *
+ * Copyright 1996 by the Massachusetts Institute of Technology.
+ *
+ *
+ * Permission to use, copy, modify, and distribute this software and
+ * its documentation for any purpose and without fee is hereby
+ * granted, provided that the above copyright notice appear in all
+ * copies and that both that copyright notice and this permission
+ * notice appear in supporting documentation, and that the name of
+ * M.I.T. not be used in advertising or publicity pertaining to
+ * distribution of the software without specific, written prior
+ * permission. M.I.T. makes no representations about the suitability
+ * of this software for any purpose. It is provided "as is" without
+ * express or implied warranty.
+ *
+ */
+
+
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
+
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
+
+#include <errno.h>
+
+int krb5_seteuid( euid)
+ uid_t euid;
+{
+ #if defined(_POSIX_SAVED_IDS) && defined(HAVE_SETEUID)
+ return (seteuid(euid)) ;
+#else
+# if defined(HAVE_SETRESUID)
+ return (setresuid(getuid(), euid, getuid())) ;
+# else
+# if defined(HAVE_SETREUID)
+ return setreuid(geteuid(), euid);
+#else /*HAVE_SETREUID*/
+ /* You need to add a case to deal with this operating system.*/
+ errno = EPERM;
+ return -1;
+
+# endif /* HAVE_SETREUID */
+# endif /* HAVE_SETRESUID */
+#endif /* _POSIX_SAVED_IDS */
+
+
+}