This commit is contained in:
kuepper 2005-10-05 21:40:53 +00:00
commit ced022186e
2 changed files with 2 additions and 3 deletions

View file

@ -31,11 +31,11 @@ AC_DEFUN([AC_GNUPLOT], [dnl
[ac_cv_use_gnuplot],
[ac_cv_use_gnuplot=no])
if test "$ac_cv_use_gnuplot" = "yes"; then
AC_ARG_VAR([GNUPLOT], [gnuplot used for graphical display])
AC_ARG_VAR([GNUPLOT], [gnuplot executable used for graphical display])
AC_CHECK_PROG([GNUPLOT], [gnuplot], [gnuplot], [true])
AC_DEFINE([HAVE_GNUPLOT], [1], [gnuplot graphical display])
else
AC_DEFINE([NO_GNUPLOT], [1], [no gnuplot graphical display])
AC_DEFINE([NO_GNUPLOT], [1], [no gnuplot graphical display -- deprecated, will be reomoved!])
fi
])