Some tweaks/fixups for abstract sockets.
authormekius <mekius@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 5 Dec 2008 04:48:12 +0000 (04:48 +0000)
committermekius <mekius@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 5 Dec 2008 04:48:12 +0000 (04:48 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@37931 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

configure.ac
src/lib/ecore_con/ecore_con.c

index ea3b007..b1c3e93 100644 (file)
@@ -984,6 +984,7 @@ else
 fi
   echo "    GnuTLS.....................: $have_gnutls"
   echo "    CURL.......................: $have_curl"
+  echo "    Abstract Sockets...........: $want_abstract_sockets"
 fi
 echo "  Ecore_Ipc....................: $have_ecore_ipc"
 if test "x$have_ecore_con" = "xyes" ; then
index 5e71b16..99054c0 100644 (file)
@@ -235,7 +235,7 @@ ecore_con_server_add(Ecore_Con_Type compl_type, const char *name, int port,
        socket_unix.sun_family = AF_UNIX;
        if (type == ECORE_CON_LOCAL_ABSTRACT)
          {
-#ifdef HAVE_ABSTRACT_SOCKET
+#ifdef HAVE_ABSTRACT_SOCKETS
             /* . is a placeholder */
             snprintf(socket_unix.sun_path, sizeof(socket_unix.sun_path), ".%s", name);
             /* first char null indicates abstract namespace */