From bd669f10eb5f368a5b748a223bc83ceced5b3347 Mon Sep 17 00:00:00 2001 From: Asanka Herath Date: Mon, 14 Sep 2009 13:48:05 -0400 Subject: [PATCH] Build dll.obj and don't build KRB4 specific targets if not building KRB4 --- lib/krb5/NTMakefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/krb5/NTMakefile b/lib/krb5/NTMakefile index 8254c1cd8..613029421 100644 --- a/lib/krb5/NTMakefile +++ b/lib/krb5/NTMakefile @@ -58,6 +58,7 @@ libkrb5_OBJS = \ $(OBJ)\data.obj \ $(OBJ)\deprecated.obj \ $(OBJ)\digest.obj \ + $(OBJ)\dll.obj \ $(OBJ)\eai_to_heim_errno.obj \ $(OBJ)\error_string.obj \ $(OBJ)\expand_hostname.obj \ @@ -376,7 +377,9 @@ test_binaries = \ $(OBJ)\aes-test.exe \ $(OBJ)\derived-key-test.exe \ $(OBJ)\n-fold-test.exe \ +!ifdef KRB4 $(OBJ)\name-45-test.exe \ +!endif $(OBJ)\parse-name-test.exe \ $(OBJ)\store-test.exe \ $(OBJ)\string-to-key-test.exe \ @@ -404,7 +407,9 @@ test-run: aes-test.exe derived-key-test.exe n-fold-test.exe +!ifdef KRB4 name-45-test.exe +!endif parse-name-test.exe store-test.exe string-to-key-test.exe