changeset 9865:763906db555e

acinclude.m4: update gnuplot and ghostscript program checks for Windows
author Tatsu@Inspiron6000
date Wed, 25 Nov 2009 15:10:38 -0500
parents 1355a606667e
children b5aa5d9ee6b9
files ChangeLog acinclude.m4
diffstat 2 files changed, 13 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Nov 25 10:58:55 2009 -0800
+++ b/ChangeLog	Wed Nov 25 15:10:38 2009 -0500
@@ -1,3 +1,11 @@
+2009-11-25  Tatsuro MATSUOKA  <tmacchant@yahoo.co.jp>
+
+	* acinclude.m4 (OCTAVE_PROG_GNUPLOT): Don't check for pgnuplot or
+	pipe-gnuplot on Windows systems.  Set default to gnuplot for all
+	systems.
+	(OCTAVE_PROG_GHOSTSCRIPT): Check for gswin32c first on Windows
+	systems, then gs.
+
 2009-11-25  Rik <octave@nomad.inbox5.com>
 
 	* Makefile.am examples/Makefile.am liboctave/Makefile.am
--- a/acinclude.m4	Wed Nov 25 10:58:55 2009 -0800
+++ b/acinclude.m4	Wed Nov 25 15:10:38 2009 -0500
@@ -623,16 +623,8 @@
 dnl Does gnuplot exist?
 dnl
 AC_DEFUN([OCTAVE_PROG_GNUPLOT], [
-case "$canonical_host_type" in
-  *-*-cygwin* | *-*-mingw32* | *-*-msdosmsvc)
-    gp_names="pgnuplot pipe-gnuplot gnuplot"
-    gp_default=pgnuplot
-  ;;
-  *)
-    gp_names=gnuplot
-    gp_default=gnuplot
-  ;;
-esac
+gp_names="gnuplot"
+gp_default="gnuplot"
 if test "$cross_compiling" = yes; then
   GNUPLOT="$gp_default"
   AC_MSG_RESULT(assuming $GNUPLOT exists on $canonical_host_type host)
@@ -681,11 +673,11 @@
 dnl OCTAVE_PROG_GHOSTSCRIPT
 AC_DEFUN([OCTAVE_PROG_GHOSTSCRIPT], [
   case "$canonical_host_type" in
-    *-*-cygwin* | *-*-mingw32* | *-*-msdosmsvc)
-      gs_names="gs gswin32"
+    *-*-mingw* | *-*-msdosmsvc)
+      gs_names="gswin32c gs"
     ;;
     *)
-      gs_names=gs
+      gs_names="gs"
     ;;
   esac
   AC_CHECK_PROGS(GHOSTSCRIPT, $gs_names)