Author: adrian.chadd
Date: Wed Apr 1 17:28:06 2009
New Revision: 13899
Modified:
branches/LUSCA_HEAD/configure.in
Log:
Begin fleshing out the framework to optionally compile 'libasyncio' as the
pthreads stuff.
Modified: branches/LUSCA_HEAD/configure.in
==============================================================================
--- branches/LUSCA_HEAD/configure.in (original)
+++ branches/LUSCA_HEAD/configure.in Wed Apr 1 17:28:06 2009
@@ -399,6 +399,7 @@
echo "Store modules built: $STORE_MODULES"
NEED_DISKD=0
USE_AIOPS_WIN32=0
+USE_LIBASYNCIO=1
NEED_COSSDUMP=0
STORE_OBJS="fs/lib`echo $STORE_MODULES|sed -e 's% %.a fs/lib%g'`.a"
AC_SUBST(STORE_OBJS)
@@ -416,9 +417,12 @@
case "$host_os" in
mingw|mingw32)
USE_AIOPS_WIN32=1
+ USE_LIBASYNCIO=1
echo "aufs store used, Windows threads support automatically
enabled"
;;
*)
+ USE_AIOPS_WIN32=0
+ USE_LIBASYNCIO=1
echo "aufs store used, pthreads support automatically enabled"
with_pthreads=yes
;;
@@ -437,6 +441,7 @@
AC_SUBST(STORE_MODULES)
AM_CONDITIONAL([NEED_DISKD], [test "$NEED_DISKD" = 1])
AM_CONDITIONAL([USE_AIOPS_WIN32], [test "$USE_AIOPS_WIN32" = 1])
+AM_CONDITIONAL([USE_LIBASYNCIO], [test "$USE_LIBASYNCIO" = 1])
AM_CONDITIONAL([NEED_COSSDUMP], [test "$NEED_COSSDUMP" = 1])
dnl --enable-heap-replacement compatibility option
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"lusca-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/lusca-commit?hl=en
-~----------~----~----~----~------~----~------~--~---