diff options
author | jdp <jdp@FreeBSD.org> | 1998-11-18 02:02:27 +0000 |
---|---|---|
committer | jdp <jdp@FreeBSD.org> | 1998-11-18 02:02:27 +0000 |
commit | c0eea8f578e14ba6ce36100ed22bc30069d46fc7 (patch) | |
tree | e7e8af39c7a7c3d16cf81cfc814cc0550fa3b705 /lib | |
parent | 617101032a160854784d5732a62fac1f3c9acc6b (diff) | |
download | FreeBSD-src-c0eea8f578e14ba6ce36100ed22bc30069d46fc7.zip FreeBSD-src-c0eea8f578e14ba6ce36100ed22bc30069d46fc7.tar.gz |
Enable the building of libpam. Move libradius and libtacplus up in
the list, because they are prerequisites for libpam.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/Makefile b/lib/Makefile index 44764a4..8ce66b7 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/4/93 -# $Id: Makefile,v 1.82 1998/10/13 16:48:43 bde Exp $ +# $Id: Makefile,v 1.83 1998/11/13 01:01:37 jdp Exp $ # To satisfy shared library or ELF linkage when only the libraries being # built are visible: @@ -13,16 +13,17 @@ # libmytinfo must be built before libdialog and libncurses. # libncurses must be built before libdialog. # libtermcap must be built before libcurses, libedit and libreadline. +# libradius and libtacplus must be built before libpam. # # Otherwise, the SUBDIR list should be in alphabetical order. SUBDIR= ${_csu} libcom_err ${_libcrypt} ${_libm} libmd libmytinfo \ - libncurses libtermcap \ + libncurses libtermcap libradius libtacplus \ ${_compat} libalias libatm libbind libc ${_libc_r} libcalendar libcam \ libcompat libcurses libdevstat libdisk libedit libf2c libfetch \ - libftpio libgnumalloc libipx libkvm libopie \ - libpcap libradius libresolv librpcsvc libskey libss libstand \ - libtacplus ${_libtelnet} libutil ${_libvgl} libxpg4 liby libz + libftpio libgnumalloc libipx libkvm libopie libpam \ + libpcap libresolv librpcsvc libskey libss libstand \ + ${_libtelnet} libutil ${_libvgl} libxpg4 liby libz .if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT}) _csu=csu/${MACHINE_ARCH}-${OBJFORMAT} |