summaryrefslogtreecommitdiffstats
path: root/src/lib/gssapi/generic/Makefile.in
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1996-07-25 06:16:18 +0000
committerTheodore Tso <tytso@mit.edu>1996-07-25 06:16:18 +0000
commitc4641b0636aa2f7dd109ef6ce85210692058fa49 (patch)
tree2430dbc126f020c5bf9bc7d7314f6c035fb01ad9 /src/lib/gssapi/generic/Makefile.in
parentbbf8f5cba683498e1128bec71ee47b729da77157 (diff)
downloadkrb5-c4641b0636aa2f7dd109ef6ce85210692058fa49.tar.gz
krb5-c4641b0636aa2f7dd109ef6ce85210692058fa49.tar.xz
krb5-c4641b0636aa2f7dd109ef6ce85210692058fa49.zip
util_ordering.c (g_order_check):
util_ordering.c (g_order_init): Changed return code to be an int 32, since we return a com_err error code. Change the type of the sequence number to be an uint32. gssapi.h: Define gss_int32 -- needed for error code returns. Makefile.in (EHDRDIR): Use $(S) instead of /, so that EHDRDIR is valid under windows. Fix how the header file is copied in under Windows. gssapiP_generic.h: Include gssapi_generic.h instead of gssapi.h, so that we get the definitions of the nametype oids. oid_ops.c (generic_gss_release_oid): Re-enable function. util_token.c (g_verify_token_header): Changed return code to be an int 32, since we return a com_err error code. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8814 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/gssapi/generic/Makefile.in')
-rw-r--r--src/lib/gssapi/generic/Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/gssapi/generic/Makefile.in b/src/lib/gssapi/generic/Makefile.in
index 1b9c6c491..bb84ed105 100644
--- a/src/lib/gssapi/generic/Makefile.in
+++ b/src/lib/gssapi/generic/Makefile.in
@@ -72,7 +72,7 @@ OBJS = \
util_validate.$(OBJEXT) \
gssapi_err_generic.$(OBJEXT)
-EHDRDIR= $(BUILDTOP)/include/gssapi
+EHDRDIR= $(BUILDTOP)$(S)include$(S)gssapi
EXPORTED_HEADERS= gssapi.h gssapi_generic.h
HDRS= $(ETHDRS)
@@ -81,7 +81,9 @@ all-unix:: $(SRCS) $(HDRS) includes $(OBJS)
all-mac:: $(SRCS) $(HDRS) includes $(OBJS)
-all-windows:: $(SRCS) $(HDRS) includes $(OBJS)
+all-windows:: win-include $(SRCS) $(HDRS) $(OBJS)
+
+win-include::
if not exist $(EHDRDIR)\nul mkdir $(EHDRDIR)
copy gssapi.h $(EHDRDIR)
copy gssapi_generic.h $(EHDRDIR)