* Disabled the monitor plugin because it relies on specific gcc features.

git-svn-id: svn://svn.zoy.org/elk/trunk@156 55e467fa-43c5-0310-a8a2-de718669efc6
This commit is contained in:
sam 2003-09-15 11:09:21 +00:00
parent 94c5d2ddea
commit ea20a5275c
2 changed files with 6 additions and 1 deletions

View File

@ -433,6 +433,8 @@ dnl
CFLAGS="${CFLAGS_save}"
LDFLAGS="${LDFLAGS_save}"
AM_CONDITIONAL(HAVE_MONITOR, false)
AC_CHECK_LIB(gdbm, gdbm_open, ac_cv_my_have_gdbm=yes, ac_cv_my_have_gdbm=no)
AM_CONDITIONAL(HAVE_GDBM, test "${ac_cv_my_have_gdbm}" = "yes")

View File

@ -7,7 +7,7 @@ pkglib_LTLIBRARIES = \
regexp.la \
debug.la \
$(gdbm_la) \
monitor.la \
$(monitor_la) \
record.la \
struct.la \
$(newhandler_la) \
@ -40,6 +40,9 @@ gdbm_la_SOURCES = gdbm.c
gdbm_la_LDFLAGS = -module -avoid-version
gdbm_la_LIBADD = $(top_builddir)/src/libelk.la -lgdbm
if HAVE_MONITOR
monitor_la = monitor.la
endif
monitor_la_SOURCES = monitor.c
monitor_la_LDFLAGS = -module -avoid-version
monitor_la_LIBADD = $(top_builddir)/src/libelk.la