comparison installer-files/octave-firsttime.vbs @ 4472:0fdeee4cfe11

gnuplot: enable Qt terminal and set default to wxt * src/gnuplot.mk: Depend on qt5 and build with QT=1 QT_DIR=$(HOST_PREFIX)/qt QT_BIN_DIR=(BUILD_TOOLS_PREFIX)/bin, install gnuplot_qt.exe * src/gnuplot-1-fixes.patch: add to patchto allow override of QT tools and paths * installer-files/octave-firsttime.vbs: set GNUTERM=wxt * installer-files/octave.vbs: set GNUTERM=wxt * installer-files/octave.bat: set GNUTERM=wxt * installer-files/cmdshell.bat: set GNUTERM=wxt
author Mike Miller <mtmiller@octave.org>
date Wed, 06 Sep 2017 16:19:37 -0700
parents b73fe78f73c3
children b0cb0218813c
comparison
equal deleted inserted replaced
4471:1a3deda73484 4472:0fdeee4cfe11
14 Set wshSystemEnv = wshShell.Environment( "PROCESS" ) 14 Set wshSystemEnv = wshShell.Environment( "PROCESS" )
15 wshSystemEnv("PATH") = OctavePath & "\bin;" & wshSystemEnv("PATH") 15 wshSystemEnv("PATH") = OctavePath & "\bin;" & wshSystemEnv("PATH")
16 16
17 ' set terminal type 17 ' set terminal type
18 wshSystemEnv("TERM") = "cygwin" 18 wshSystemEnv("TERM") = "cygwin"
19 wshSystemEnv("GNUTERM") = "windows" 19 wshSystemEnv("GNUTERM") = "wxt"
20 20
21 wshSystemEnv("GS") = "gs.exe" 21 wshSystemEnv("GS") = "gs.exe"
22 22
23 If wshShell.ExpandEnvironmentStrings("%HOME%") = "%HOME%" Then 23 If wshShell.ExpandEnvironmentStrings("%HOME%") = "%HOME%" Then
24 Home = wshSystemEnv("USERPROFILE") 24 Home = wshSystemEnv("USERPROFILE")