From: Ezra Peisach Date: Fri, 25 Oct 1996 21:00:00 +0000 (+0000) Subject: * Makefile.in (init-test): Add -UUSE_KADM5_API_VERSION before the X-Git-Tag: krb5-1.0-freeze1~181 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8496b4e05b1dbd6673aa8aca3c4a1b8c7a536189;p=krb5.git * Makefile.in (init-test): Add -UUSE_KADM5_API_VERSION before the -D of same. OSF 4.0 cpp was screwing up and keeping only the first definition on the compile line. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9241 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/kadm5/unit-test/ChangeLog b/src/lib/kadm5/unit-test/ChangeLog index 0fd309d62..c1e65f655 100644 --- a/src/lib/kadm5/unit-test/ChangeLog +++ b/src/lib/kadm5/unit-test/ChangeLog @@ -1,3 +1,8 @@ +Fri Oct 25 16:43:52 1996 Ezra Peisach + + * Makefile.in (init-test): Add -UUSE_KADM5_API_VERSION before the + -D of same. + Wed Oct 23 13:32:40 1996 Ezra Peisach * api.2/get-principal-v2.exp: Fix for test 100 where {} is not diff --git a/src/lib/kadm5/unit-test/Makefile.in b/src/lib/kadm5/unit-test/Makefile.in index 1b65576ca..dfa60ffeb 100644 --- a/src/lib/kadm5/unit-test/Makefile.in +++ b/src/lib/kadm5/unit-test/Makefile.in @@ -12,7 +12,7 @@ init-test: init-test.o client_init.o $(CLNTDEPLIPS) $(CLNTLIBS) client_init.o: $(SRCTOP)/lib/kadm5/clnt/client_init.c - $(CC) $(CFLAGS) -DUSE_KADM5_API_VERSION=2 -DINIT_TEST -c -I$(SRCTOP)/lib/kadm5 $(SRCTOP)/lib/kadm5/clnt/client_init.c + $(CC) $(CFLAGS) -UUSE_KADM5_API_VERSION -DUSE_KADM5_API_VERSION=2 -DINIT_TEST -c -I$(SRCTOP)/lib/kadm5 $(SRCTOP)/lib/kadm5/clnt/client_init.c destroy-test: destroy-test.o $(CLNTDEPLIBS) $(LD) $(LDFLAGS) $(LDARGS) -o destroy-test destroy-test.o $(CLNTLIBS)