diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/Makefile.in | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c920f091063..b0899d67ca8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | 2012-09-27 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2012-09-27 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | Check more robustly for timer_settime. | 3 | Check more robustly for timer_settime. |
| 4 | * Makefile.in (LIB_TIMER_TIME): New macro. | ||
| 5 | (LIBES): Add it. | ||
| 4 | * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer): | 6 | * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer): |
| 5 | Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to | 7 | Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to |
| 6 | call timer_settime. | 8 | call timer_settime. |
diff --git a/src/Makefile.in b/src/Makefile.in index e43f83e1172..f8da0091711 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -153,6 +153,7 @@ M17N_FLT_CFLAGS = @M17N_FLT_CFLAGS@ | |||
| 153 | M17N_FLT_LIBS = @M17N_FLT_LIBS@ | 153 | M17N_FLT_LIBS = @M17N_FLT_LIBS@ |
| 154 | 154 | ||
| 155 | LIB_CLOCK_GETTIME=@LIB_CLOCK_GETTIME@ | 155 | LIB_CLOCK_GETTIME=@LIB_CLOCK_GETTIME@ |
| 156 | LIB_TIMER_TIME=@LIB_TIMER_TIME@ | ||
| 156 | 157 | ||
| 157 | DBUS_CFLAGS = @DBUS_CFLAGS@ | 158 | DBUS_CFLAGS = @DBUS_CFLAGS@ |
| 158 | DBUS_LIBS = @DBUS_LIBS@ | 159 | DBUS_LIBS = @DBUS_LIBS@ |
| @@ -385,8 +386,8 @@ otherobj= $(TERMCAP_OBJ) $(PRE_ALLOC_OBJ) $(GMALLOC_OBJ) $(RALLOC_OBJ) \ | |||
| 385 | ## duplicated symbols. If the standard libraries were compiled | 386 | ## duplicated symbols. If the standard libraries were compiled |
| 386 | ## with GCC, we might need LIB_GCC again after them. | 387 | ## with GCC, we might need LIB_GCC again after them. |
| 387 | LIBES = $(LIBS) $(LIBX_BASE) $(LIBX_OTHER) $(LIBSOUND) \ | 388 | LIBES = $(LIBS) $(LIBX_BASE) $(LIBX_OTHER) $(LIBSOUND) \ |
| 388 | $(RSVG_LIBS) $(IMAGEMAGICK_LIBS) $(LIB_CLOCK_GETTIME) $(DBUS_LIBS) \ | 389 | $(RSVG_LIBS) $(IMAGEMAGICK_LIBS) $(LIB_CLOCK_GETTIME) $(LIB_TIMER_TIME) \ |
| 389 | $(LIB_EXECINFO) \ | 390 | $(DBUS_LIBS) $(LIB_EXECINFO) \ |
| 390 | $(LIBXML2_LIBS) $(LIBGPM) $(LIBRESOLV) $(LIBS_SYSTEM) \ | 391 | $(LIBXML2_LIBS) $(LIBGPM) $(LIBRESOLV) $(LIBS_SYSTEM) \ |
| 391 | $(LIBS_TERMCAP) $(GETLOADAVG_LIBS) $(SETTINGS_LIBS) $(LIBSELINUX_LIBS) \ | 392 | $(LIBS_TERMCAP) $(GETLOADAVG_LIBS) $(SETTINGS_LIBS) $(LIBSELINUX_LIBS) \ |
| 392 | $(FREETYPE_LIBS) $(FONTCONFIG_LIBS) $(LIBOTF_LIBS) $(M17N_FLT_LIBS) \ | 393 | $(FREETYPE_LIBS) $(FONTCONFIG_LIBS) $(LIBOTF_LIBS) $(M17N_FLT_LIBS) \ |