diff options
| author | Ken Raeburn <raeburn@mit.edu> | 2007-03-25 23:07:09 +0000 |
|---|---|---|
| committer | Ken Raeburn <raeburn@mit.edu> | 2007-03-25 23:07:09 +0000 |
| commit | 67add7ce15f01e788d8cecbc60c61fb47d5e759f (patch) | |
| tree | 4eaec32e208cb372b1894c228d3fe9b18be4a485 /src/appl | |
| parent | ead4c700f9c5f05f921be90da282566be1548d16 (diff) | |
| download | krb5-67add7ce15f01e788d8cecbc60c61fb47d5e759f.tar.gz krb5-67add7ce15f01e788d8cecbc60c61fb47d5e759f.tar.xz krb5-67add7ce15f01e788d8cecbc60c61fb47d5e759f.zip | |
Never set krb5_force_static. Instead, set the defaults for building
shared libraries, and allow a Makefile.in to include a new makefile
fragment for building private (static, not installed) libraries.
Created another makefile fragment to be included to indicate the
shared library has no dependencies. (Currently this is the case only
for the libdb2 library, which we don't install, but do build for
testing.) The way we construct the library dependency search path
arguments doesn't work for an empty list on some platforms.
Updated Makefile.in to use @libpriv_frag@ and @libnodeps_frag@ as
necessary.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19265 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl')
| -rw-r--r-- | src/appl/libpty/Makefile.in | 2 | ||||
| -rw-r--r-- | src/appl/telnet/libtelnet/Makefile.in | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/appl/libpty/Makefile.in b/src/appl/libpty/Makefile.in index 521341db0..92b33f833 100644 --- a/src/appl/libpty/Makefile.in +++ b/src/appl/libpty/Makefile.in @@ -106,7 +106,7 @@ pty_err.c: pty_err.et $(BUILDTOP)/include/autoconf.h: $(SRCTOP)/include/autoconf.h.in (cd $(BUILDTOP)/include; $(MAKE) autoconf.h) - +@libpriv_frag@ @lib_frag@ @libobj_frag@ diff --git a/src/appl/telnet/libtelnet/Makefile.in b/src/appl/telnet/libtelnet/Makefile.in index 2a6c7dc51..38ff9055f 100644 --- a/src/appl/telnet/libtelnet/Makefile.in +++ b/src/appl/telnet/libtelnet/Makefile.in @@ -89,6 +89,7 @@ enc_des.o: key-proto.h enc_des.o: misc-proto.h install:: +@libpriv_frag@ @lib_frag@ @libobj_frag@ |
