forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-lang/polyml: Fix build, sem_wait found on libpthread
Closes: https://bugs.gentoo.org/606096 Signed-off-by: Alfredo Tupone <[email protected]> Package-Manager: Portage-2.3.62, Repoman-2.3.11
- Loading branch information
Showing
2 changed files
with
14 additions
and
1 deletion.
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,11 @@ | ||
--- a/configure.ac 2019-04-05 10:27:19.026197625 +0200 | ||
+++ b/configure.ac 2019-04-05 10:28:10.187291374 +0200 | ||
@@ -133,7 +133,7 @@ | ||
# Solaris needs -lsocket, -lnsl and -lrt | ||
AC_SEARCH_LIBS([gethostbyname], [nsl]) | ||
AC_SEARCH_LIBS([getsockopt], [socket]) | ||
-AC_SEARCH_LIBS([sem_wait], [rt]) | ||
+AC_SEARCH_LIBS([sem_wait], [rt] [pthread]) | ||
|
||
# Check for X and Motif headers and libraries | ||
AC_PATH_X |
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