components/libmicrohttpd/patches/005.patch
changeset 4960 55cc0647d4a7
equal deleted inserted replaced
4959:a998fbbcbd44 4960:55cc0647d4a7
       
     1 Tomas Heran <[email protected]>
       
     2 libnsl and libsocket need to be linked to on Solaris 11 for socket API.
       
     3 Reported upstream as: https://gnunet.org/bugs/view.php?id=3752
       
     4 
       
     5 diff -r d118e0f483a4 configure.ac
       
     6 --- a/configure.ac	Thu Feb 05 14:49:09 2015 +0100
       
     7 +++ b/configure.ac	Thu Apr 09 16:39:50 2015 +0200
       
     8 @@ -135,6 +135,8 @@
       
     9  *solaris*)
       
    10       AC_DEFINE_UNQUOTED(SOLARIS,1,[This is a Solaris system])
       
    11       AC_DEFINE_UNQUOTED(_REENTRANT,1,[Need with solaris or errno doesnt work])
       
    12 +     AC_SEARCH_LIBS(gethostbyname, nsl)
       
    13 +     AC_SEARCH_LIBS(socket, socket)
       
    14       ;;
       
    15  *arm-linux*)
       
    16       AC_DEFINE_UNQUOTED(LINUX,1,[This is a Linux kernel])