blob: dda291c3f25bc861728f4b22357646d8ed15658b (
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 Thu Nov 23 05:31:55 2000
+++ configure.in Sat Dec 2 10:41:01 2000
@@ -208,13 +208,15 @@
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
|