Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore


Modified Files:
        configure.in 


Log Message:
Make it possible to disable abstract sockets.

===================================================================
RCS file: /cvs/e/e17/libs/ecore/configure.in,v
retrieving revision 1.190
retrieving revision 1.191
diff -u -3 -r1.190 -r1.191
--- configure.in        4 Apr 2007 11:37:10 -0000       1.190
+++ configure.in        4 Apr 2007 12:28:16 -0000       1.191
@@ -447,10 +447,21 @@
   )
 fi
 
-AC_ABSTRACT_SOCKET_TEST(
-  [AC_DEFINE(HAVE_ABSTRACT_SOCKETS, 1, [Have abstract socket namespace])],
-  []
+want_abstract_sockets="yes"
+AC_ARG_ENABLE(abstract-sockets,
+  AC_HELP_STRING(
+    [--disable-abstract-sockets],
+    [disable abstract sockets. [[default=enabled]]]
+    ),
+  [ want_abstract_sockets=$enableval ],
+  [ want_abstract_sockets="yes"]
 )
+if test "x$want_abstract_sockets" = "xyes"; then
+  AC_ABSTRACT_SOCKET_TEST(
+    [AC_DEFINE(HAVE_ABSTRACT_SOCKETS, 1, [Have abstract sockets namespace])],
+    []
+  )
+fi
 
 ECORE_CHECK_MODULE([Con], [yes])
 



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to