changeset 15610:7ba5ff95467e stable

Add "gswin64c.exe" to the list of possible ghostscript command line programs under windows. * scripts/plot/private/__print_parse_opts__.m: Include "gswin64c.exe" when looking for ghostscript.
author Ben Abbott <bpabbott@mac.com>
date Sun, 11 Nov 2012 14:38:14 -0500
parents 63d024333bee
children 773892abfd93
files scripts/plot/private/__print_parse_opts__.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/private/__print_parse_opts__.m	Wed Oct 31 20:46:17 2012 -0700
+++ b/scripts/plot/private/__print_parse_opts__.m	Sun Nov 11 14:38:14 2012 -0500
@@ -447,7 +447,7 @@
       gs_binaries = horzcat (gs_binaries, {"gs", "gs.exe"});
     else
       ## pc - Includes Win32 and mingw.
-      gs_binaries = horzcat (gs_binaries, {"gs.exe", "gswin32c.exe", "mgs.exe"});
+      gs_binaries = horzcat (gs_binaries, {"gs.exe", "gswin32c.exe", "gswin64c.exe", "mgs.exe"});
     endif
     n = 0;
     while (n < numel (gs_binaries) && isempty (ghostscript_binary))