diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-04-12 18:33:35 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-04-22 10:39:28 +0200 |
commit | 263118a6681918add6861eaede318657ee23b7c4 (patch) | |
tree | 136b78115830104b4395b882dcfeae9e551fb79a /config.make.in | |
parent | 20e078293697dd99ddcf2c2151c9f075409cc185 (diff) |
build: Remove configure check for libcrypt.
GNU libc has provided the 'crypt' function in libcrypt for a long time,
making this check unnecessary.
* configure.ac: Remove libcrypt check and 'LIBCRYPT' substitution.
* config.make.in (LIBCRYPT): Remove.
* trans/Makefile (password-LDLIBS): Change $(LIBCRYPT) to -lcrypt.
* utils/Makefile (login-LDLIBS, addauth-LDLIBS, setauth-LDLIBS):
Likewise.
Diffstat (limited to 'config.make.in')
-rw-r--r-- | config.make.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/config.make.in b/config.make.in index c5d4e68d..0f1390a7 100644 --- a/config.make.in +++ b/config.make.in @@ -65,9 +65,6 @@ gnu89-inline-CFLAGS = @libc_cv_gnu89_inline@ # `yes' or `no' to indicate if ld --version-script is available. VERSIONING = @VERSIONING@ -# If a separate libcrypt is available, use it. -LIBCRYPT = @LIBCRYPT@ - # How to link against Parted libraries, if at all. PARTED_LIBS = @PARTED_LIBS@ |