Skip to content

Commit b84ca9c

Browse files
committed
update configure.in
1 parent afef921 commit b84ca9c

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
2011-04-22 version 0.3.7:
3+
4+
* Added POSXI timer implementation that works on linux < 2.6.25 (Kohei++)
5+
26
2011-02-20 version 0.3.6:
37

48
* Fixes a potential dead-lock problem on wavy::loop::join

configure.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ AC_INIT(mpsrc/wavy_kernel.h)
22
AC_CONFIG_AUX_DIR(ac)
33
AC_CANONICAL_TARGET
44

5-
AM_INIT_AUTOMAKE(mpio, 0.3.6)
5+
AM_INIT_AUTOMAKE(mpio, 0.3.7)
66
AC_CONFIG_HEADER(config.h)
77

88
AC_SUBST(CFLAGS)
@@ -63,7 +63,7 @@ linux*)
6363
AC_MSG_CHECKING([if timerfd is enabled])
6464
AC_ARG_ENABLE(timerfd,
6565
AS_HELP_STRING([--disable-timerfd],
66-
[don't use timerfd. (compatility for linux < 2.6.25)]) )
66+
[use POSIX timer instead of timerfd. (compatility for linux < 2.6.25)]) )
6767
AC_MSG_RESULT($enable_timerfd)
6868
if test "$enable_timerfd" = "no"; then
6969
CXXFLAGS="$CXXFLAGS -DDISABLE_TIMERFD"
@@ -74,16 +74,16 @@ linux*)
7474
AC_CHECK_HEADER(sys/timerfd.h, [],
7575
AC_MSG_ERROR([sys/timerfd.h is not available.
7676

77-
You can't use mp::wavy::add_timer on this system.
77+
You can't use timerfd on this system.
7878
It requires linux >= 2.6.25 and glibc >= 2.8.
79-
Add --disable-timerfd option to disable mp::wavy::add_timer.
79+
Add --disable-timerfd option to use POSIX timer instead of timerfd.
8080
]))
8181
fi
8282

8383
AC_MSG_CHECKING([if signalfd is enabled])
8484
AC_ARG_ENABLE(signalfd,
8585
AS_HELP_STRING([--disable-signalfd],
86-
[don't use signalfd. (compatility for linux < 2.6.22)]) )
86+
[do not use signalfd. (compatility for linux < 2.6.22)]) )
8787
AC_MSG_RESULT($enable_signalfd)
8888
if test "$enable_signalfd" = "no"; then
8989
CXXFLAGS="$CXXFLAGS -DDISABLE_SIGNALFD"

0 commit comments

Comments
 (0)