diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-06-28 00:55:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:55 -0500 |
commit | f9861c9c5aee332545a9ea51683da28a87bdb10c (patch) | |
tree | a1f968db86fe5161eb5363b1b6321414ad9377ca /source4/heimdal_build | |
parent | 3433a464c2e46301a2ef51642577ef731a3ae1ce (diff) | |
download | samba-f9861c9c5aee332545a9ea51683da28a87bdb10c.tar.gz samba-f9861c9c5aee332545a9ea51683da28a87bdb10c.tar.bz2 samba-f9861c9c5aee332545a9ea51683da28a87bdb10c.zip |
r7968: Pull the PAC from within GSSAPI, rather than only when using our own
'mock GSSAPI'.
Many thanks to Luke Howard for the work he has done on Heimdal for
XAD, to provide the right API hooks in GSSAPI.
Next step is to verify the signatures, and to build the PAC for the
KDC end.
Andrew Bartlett
(This used to be commit 2e82743c98e563e97c5a215d09efa0121854d0f7)
Diffstat (limited to 'source4/heimdal_build')
-rwxr-xr-x | source4/heimdal_build/build_external.sh | 14 | ||||
-rw-r--r-- | source4/heimdal_build/config.mk | 1 |
2 files changed, 1 insertions, 14 deletions
diff --git a/source4/heimdal_build/build_external.sh b/source4/heimdal_build/build_external.sh index 5ee2de27f9..f95c43dc21 100755 --- a/source4/heimdal_build/build_external.sh +++ b/source4/heimdal_build/build_external.sh @@ -60,19 +60,6 @@ build_bison() { cd $TOP || exit 1 } -build_awk() { - f=$1 - dir=`dirname $f` - file=`basename $f` - base=`basename $f .h.in` - echo Building $f - cd $dir && $AWK -f $base.awk $base.h.in > gen.c - $CC -I$TOP/heimdal_build -I$TOP -Iheimdal/lib/roken -DHAVE_CONFIG_H -o gen gen.c || exit 1 - ./gen > $base.h || exit 1 - rm -f gen gen.c - cd $TOP || exit 1 -} - build_cp() { f=$1 dir=`dirname $f` @@ -89,7 +76,6 @@ build_lex heimdal/lib/asn1/lex.l build_lex heimdal/lib/com_err/lex.l build_bison heimdal/lib/com_err/parse.y build_bison heimdal/lib/asn1/parse.y -build_awk heimdal/lib/roken/roken.h.in make bin/asn1_compile || exit 1 build_asn1 heimdal/lib/hdb/hdb.asn1 hdb_asn1 diff --git a/source4/heimdal_build/config.mk b/source4/heimdal_build/config.mk index 4d7e63877a..a376ceb9e4 100644 --- a/source4/heimdal_build/config.mk +++ b/source4/heimdal_build/config.mk @@ -61,6 +61,7 @@ ADD_OBJ_FILES = \ heimdal/lib/gssapi/add_oid_set_member.o \ heimdal/lib/gssapi/arcfour.o \ heimdal/lib/gssapi/ccache_name.o \ + heimdal/lib/gssapi/copy_ccache.o \ heimdal/lib/gssapi/cfx.o \ heimdal/lib/gssapi/compat.o \ heimdal/lib/gssapi/context_time.o \ |