summaryrefslogtreecommitdiffstats
path: root/src/appl/gss-sample
diff options
context:
space:
mode:
Diffstat (limited to 'src/appl/gss-sample')
-rw-r--r--src/appl/gss-sample/ChangeLog6
-rw-r--r--src/appl/gss-sample/configure.in3
-rw-r--r--src/appl/gss-sample/gss-server.c2
3 files changed, 8 insertions, 3 deletions
diff --git a/src/appl/gss-sample/ChangeLog b/src/appl/gss-sample/ChangeLog
index 68aa4ab306..8bdd01df75 100644
--- a/src/appl/gss-sample/ChangeLog
+++ b/src/appl/gss-sample/ChangeLog
@@ -1,3 +1,9 @@
+Thu Sep 18 17:52:26 1997 Tom Yu <tlyu@mit.edu>
+
+ * configure.in: Replace USE_STRING_H with something more sane.
+
+ * gss-server.c: Replace USE_STRING_H with something more sane.
+
Fri Jun 6 15:05:57 1997 Theodore Y. Ts'o <tytso@mit.edu>
* gss-server.c (server_establish_context): Rearrange server
diff --git a/src/appl/gss-sample/configure.in b/src/appl/gss-sample/configure.in
index 635fa9a661..1cda89b3b6 100644
--- a/src/appl/gss-sample/configure.in
+++ b/src/appl/gss-sample/configure.in
@@ -1,8 +1,7 @@
AC_INIT(gss-client.c)
CONFIG_RULES
USE_ANAME
-AC_CHECK_HEADERS(unistd.h stdlib.h)
-AC_CHECK_HEADER(string.h,AC_DEFINE(USE_STRING_H))
+AC_CHECK_HEADERS(unistd.h stdlib.h string.h)
AC_CONST
AC_PROG_INSTALL
KRB5_BUILD_PROGRAM
diff --git a/src/appl/gss-sample/gss-server.c b/src/appl/gss-sample/gss-server.c
index f195b45a06..ef9d495820 100644
--- a/src/appl/gss-sample/gss-server.c
+++ b/src/appl/gss-sample/gss-server.c
@@ -38,7 +38,7 @@ static char *rcsid = "$Header$";
#include <gssapi/gssapi_generic.h>
#include "gss-misc.h"
-#ifdef USE_STRING_H
+#ifdef HAVE_STRING_H
#include <string.h>
#else
#include <strings.h>