diff options
author | Olivier CrĂȘte <olivier.crete@collabora.co.uk> | 2008-10-23 20:01:57 -0700 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.co.uk> | 2008-10-23 23:04:03 -0700 |
commit | dcd2f6b4f0a89dd884e3d741dae055e53e4c08ac (patch) | |
tree | abd440eebf3728a32f4fc0dea3d3e09623bbf25a /m4 | |
parent | 3ada7b1b24851081bb4209885887f346afe69b19 (diff) |
Remove stream-engine and keep only the library
Diffstat (limited to 'm4')
-rw-r--r-- | m4/Makefile.am | 3 | ||||
-rw-r--r-- | m4/seq-dias.m4 | 33 |
2 files changed, 1 insertions, 35 deletions
diff --git a/m4/Makefile.am b/m4/Makefile.am index 52aac8f..259e3c3 100644 --- a/m4/Makefile.am +++ b/m4/Makefile.am @@ -1,5 +1,4 @@ EXTRA_DIST = \ as-compiler-flag.m4 \ as-version.m4 \ -as-ac-expand.m4 \ -seq-dias.m4 +as-ac-expand.m4 diff --git a/m4/seq-dias.m4 b/m4/seq-dias.m4 deleted file mode 100644 index dddd8ee..0000000 --- a/m4/seq-dias.m4 +++ /dev/null @@ -1,33 +0,0 @@ -AC_DEFUN([SEQ_DIAS], -[ -dnl check for tools for drawing sequence diagrams -AC_ARG_ENABLE(seq-dias, - AC_HELP_STRING([--enable-seq-dias], - [use plotutils to draw sequence diagrams [default=yes]]),, - enable_seq_dias=yes) - -MAKE_SEQ_DIAS=no -if test x$enable_seq_dias = xyes; then - MAKE_SEQ_DIAS=yes - AC_PATH_PROG(PIC2PLOT, pic2plot, no) - AC_PATH_PROG(GS, gs, no) - AC_PATH_PROG(CONVERT, convert, no) - if test "$CONVERT" == "no"; then - AC_MSG_WARN([Imagemagick not found, drawing sequence diagrams will be disabled.]) - MAKE_SEQ_DIAS=no - fi - if test "$GS" == "no"; then - AC_MSG_WARN([Ghostscript not found, drawing sequence diagrams will be disabled.]) - MAKE_SEQ_DIAS=no - fi - if test "$PIC2PLOT" == "no"; then - AC_MSG_WARN([GNU plotutils not found, drawing sequence diagrams will be disabled.]) - MAKE_SEQ_DIAS=no - fi - AC_SUBST(PIC2PLOT) - AC_SUBST(CONVERT) - -fi -AC_SUBST(MAKE_SEQ_DIAS) -AM_CONDITIONAL(MAKE_SEQ_DIAS, test x$MAKE_SEQ_DIAS == xyes) -]) |