-
-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patch APR to remove crypt dependency
Motivation: We dont use any APR features that uses libcrypt so we can safely not link against it. This resolves various issues as some distributions otherwise need the extra installation of libxcrypt-compat etc. Modifications: - Add patchfile for APR configure.in to remove linking against libcrypt - Patch APR during build Result: Fixes #703
- Loading branch information
1 parent
a37760f
commit 6040147
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- configure.in.old 2023-01-09 14:22:19 | ||
+++ configure.in 2023-01-09 14:22:43 | ||
@@ -729,7 +729,6 @@ | ||
AC_SEARCH_LIBS(gethostbyname, nsl) | ||
AC_SEARCH_LIBS(gethostname, nsl) | ||
AC_SEARCH_LIBS(socket, socket) | ||
- AC_SEARCH_LIBS(crypt, crypt ufc) | ||
AC_CHECK_LIB(truerand, main) | ||
AC_SEARCH_LIBS(modf, m) | ||
;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters