View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0003752 | libmicrohttpd | build system | public | 2015-04-10 13:42 | 2021-09-02 17:54 |
Reporter | tomasheran | Assigned To | Christian Grothoff | ||
Priority | normal | Severity | major | Reproducibility | always |
Status | closed | Resolution | fixed | ||
OS | Solaris | OS Version | 11 | ||
Product Version | 0.9.40 | ||||
Target Version | 0.9.41 | Fixed in Version | 0.9.41 | ||
Summary | 0003752: The socket API lives in libnsl and libsocket on Solaris 11 | ||||
Description | On Solaris 11, it's necessary to link with libnsl and libsocket in order to acccess the socket API functions. | ||||
Additional Information | I added the following to configure.ac and that seems to have solved the issue for me. diff -r d118e0f483a4 -r 966ce1625c15 configure.ac --- a/configure.ac Thu Feb 05 14:49:09 2015 +0100 +++ b/configure.ac Thu Apr 09 16:52:00 2015 +0200 @@ -135,6 +135,8 @@ *solaris*) AC_DEFINE_UNQUOTED(SOLARIS,1,[This is a Solaris system]) AC_DEFINE_UNQUOTED(_REENTRANT,1,[Need with solaris or errno doesnt work]) + AC_SEARCH_LIBS(gethostbyname, nsl) + AC_SEARCH_LIBS(socket, socket) ;; *arm-linux*) AC_DEFINE_UNQUOTED(LINUX,1,[This is a Linux kernel]) | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2015-04-10 13:42 | tomasheran | New Issue | |
2015-04-15 00:49 | Christian Grothoff | Note Added: 0009085 | |
2015-04-15 00:49 | Christian Grothoff | Status | new => resolved |
2015-04-15 00:49 | Christian Grothoff | Fixed in Version | => 0.9.41 |
2015-04-15 00:49 | Christian Grothoff | Resolution | open => fixed |
2015-04-15 00:49 | Christian Grothoff | Assigned To | => Christian Grothoff |
2015-04-15 00:49 | Christian Grothoff | Product Version | => 0.9.40 |
2015-04-15 00:49 | Christian Grothoff | Target Version | => 0.9.41 |
2015-04-30 00:13 | Christian Grothoff | Status | resolved => closed |
2021-09-02 17:54 | Christian Grothoff | Changeset attached | => libmicrohttpd master 639bfd97 |
2021-09-02 17:54 | Christian Grothoff | Note Added: 0018199 |