[911] in Kerberos-V5-bugs
lib/krb5/asn.1/Makefile.sane.in
daemon@ATHENA.MIT.EDU (epeisach@MIT.EDU)
Thu Oct 27 20:32:14 1994
From: epeisach@MIT.EDU
Date: Thu, 27 Oct 1994 20:32:03 -0400
To: krb5-bugs@MIT.EDU
When using the system make on OSF/1 (gnu make worked ok). asn.1
directory would not build. It turns out that the Makefile.sane that is
generated has two sets of definitions for DEFS, CC, CCOPTS, LIBS.
I suspect some of these are being handled by autoconf now.
The fix is either to Makefile.in to pass down DEFS, or to remove the
conflicting definitions.... (DEFS should really be $(CPPFLAGS) now...
Getting rid of the extra definition also works...
Ezra
===================================================================
RCS file: /mit/krb5/.cvsroot/src/lib/krb5/asn.1/Makefile.sane.in,v
retrieving revision 5.1
diff -c -r5.1 Makefile.sane.in
*** 5.1 1994/07/01 16:59:10
--- Makefile.sane.in 1994/10/28 00:27:12
***************
*** 2,12 ****
srcdir = @srcdir@
VPATH = @srcdir@
- DEFS = @DEFS@
- CC = @CC@
- CCOPTS = @CCOPTS@
- LIBS = @LIBS@
-
CFLAGS=$(CCOPTS) $(DEFS)
LDFLAGS = -g
--- 2,7 ----