changeset 15608:147c81948626

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 c9c79d4a0a00
children 61d08b092a9d
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
+++ b/scripts/plot/private/__print_parse_opts__.m
@@ -477,7 +477,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))