blob: 9276cef0a051c5c302201cc474426c28de87a5a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Index: asymptote-1.74/settings.cc
===================================================================
--- asymptote-1.74.orig/settings.cc
+++ asymptote-1.74/settings.cc
@@ -81,15 +81,15 @@ const bool haveglut=false;
bool msdos=false;
const char *HOME="HOME";
const char pathSeparator=':';
-string defaultPSViewer="gv";
+string defaultPSViewer="xdg-open";
#ifdef __APPLE__
string defaultPDFViewer="open";
#else
-string defaultPDFViewer="acroread";
+string defaultPDFViewer="xdg-open";
#endif
string defaultGhostscript="gs";
string defaultPython;
-string defaultDisplay="display";
+string defaultDisplay="xdg-open";
string systemDir=ASYMPTOTE_SYSDIR;
const string docdir=ASYMPTOTE_DOCDIR;
void queryRegistry() {}
|