summaryrefslogtreecommitdiffstats
path: root/src/tests/shlib
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2006-03-11 22:23:28 +0000
committerKen Raeburn <raeburn@mit.edu>2006-03-11 22:23:28 +0000
commitcee79e98488ba138d1ebadb7488df7da54be627b (patch)
treefd329cef103b8a0f5bddccc360f15cb6ca8c9d41 /src/tests/shlib
parent6b3217ad6ab98d4365f32d45948717e212684678 (diff)
downloadkrb5-cee79e98488ba138d1ebadb7488df7da54be627b.tar.gz
krb5-cee79e98488ba138d1ebadb7488df7da54be627b.tar.xz
krb5-cee79e98488ba138d1ebadb7488df7da54be627b.zip
Instead of arbitrary division of headers into include and include/krb5, with
include directives sometimes using krb5/foo.h and sometimes using foo.h, and -I options always given for both directories in both source and build trees, push include/krb5/* up a level and drop the krb5 directory (except, for the moment, the change log). Updated #include directives, -I options, and dependencies accordingly, and deleted one or two bits of old, unused code that was noticed in the process. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17730 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/tests/shlib')
-rw-r--r--src/tests/shlib/ChangeLog4
-rw-r--r--src/tests/shlib/Makefile.in2
-rw-r--r--src/tests/shlib/t_loader.c2
3 files changed, 6 insertions, 2 deletions
diff --git a/src/tests/shlib/ChangeLog b/src/tests/shlib/ChangeLog
index bfea7ca78b..de8142fde8 100644
--- a/src/tests/shlib/ChangeLog
+++ b/src/tests/shlib/ChangeLog
@@ -1,3 +1,7 @@
+2006-03-11 Ken Raeburn <raeburn@mit.edu>
+
+ * t_loader.c: Don't get autoconf.h from krb5/.
+
2005-06-20 Ken Raeburn <raeburn@mit.edu>
* Makefile.in (t_loader): Use DL_LIB instead of -ldl.
diff --git a/src/tests/shlib/Makefile.in b/src/tests/shlib/Makefile.in
index 49cf20fa23..196e7a349d 100644
--- a/src/tests/shlib/Makefile.in
+++ b/src/tests/shlib/Makefile.in
@@ -35,5 +35,5 @@ clean::
# Makefile dependencies follow. This must be the last section in
# the Makefile.in file
#
-$(OUTPRE)t_loader.$(OBJEXT): t_loader.c $(BUILDTOP)/include/krb5/autoconf.h \
+$(OUTPRE)t_loader.$(OBJEXT): t_loader.c $(BUILDTOP)/include/autoconf.h \
$(BUILDTOP)/include/krb5.h $(COM_ERR_DEPS) $(BUILDTOP)/include/gssapi/gssapi.h
diff --git a/src/tests/shlib/t_loader.c b/src/tests/shlib/t_loader.c
index ecd6a4e830..70cd6d13b8 100644
--- a/src/tests/shlib/t_loader.c
+++ b/src/tests/shlib/t_loader.c
@@ -2,7 +2,7 @@
#include <stdio.h>
#include <string.h>
#include <assert.h>
-#include "krb5/autoconf.h"
+#include "autoconf.h"
#include "krb5.h"
#include "gssapi/gssapi.h"
#define HAVE_DLOPEN 1