blob: 9541e59acab190635070d3cfee50e9357dacb3af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- configure.in.orig 2001-03-10 14:32:29 UTC
+++ configure.in
@@ -213,13 +213,15 @@ dnl This needs to be done after the X an
dnl the libplot from GNU plotutils sometimes requires linking the
dnl X and Motif libraries
dnl
-AC_CHECK_LIB(plot, pl_openpl_r,
+if test "$with_motif" = "yes"; then
+ AC_CHECK_LIB(plot, pl_openpl_r,
AC_DEFINE(HAVE_LIBPLOT)
LIBS="$LIBS -lplot")
-AC_CHECK_LIB(sciplot, sp_begin_plot)
-if test x$ac_cv_lib_sciplot_sp_begin_plot = xyes; then
+ AC_CHECK_LIB(sciplot, sp_begin_plot)
+ if test x$ac_cv_lib_sciplot_sp_begin_plot = xyes; then
AC_DEFINE(HAVE_LIBSCIPLOT)
+ fi
fi
dnl Checks for Guile
|