Changeset fc40aa in git


Ignore:
Timestamp:
Mar 1, 2016, 2:13:14 PM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
1de3c68b5d6a1cf0c5372c4a014421ac0114fedd
Parents:
a8da6b75aa49a54b70e8d3a75a27d866d58cb61f
Message:
ESingular fixes for cygwin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/emacs.cc

    ra8da6b rfc40aa  
    202202  if (emacs == NULL)
    203203  {
    204     error( "Error: Can't find emacs xterm program. \n Expected it at %s or %s\n Specify alternative with --xterm=PROGRAM option,\n or set ESINGULAR_EMACS environment variable to the name of the program to use as xterm.\n",
     204  #ifdef __CYGWIN__
     205    error( "Error: Can't find rxvt program. \n Expected it at %s or %s\n Specify alternative with --rxvt=PROGRAM option,\n or set RXVT environment variable to the name of the program to use as xterm.\n",
     206  #else
     207    error( "Error: Can't find xterm program. \n Expected it at %s or %s\n Specify alternative with --xterm=PROGRAM option,\n or set XTERM environment variable to the name of the program to use as xterm.\n",
     208  #endif
    205209           feResourceDefault('X'));
    206210    mainUsage();
  • resources/feResource.cc

    ra8da6b rfc40aa  
    9191  {"Path",      'p',    feResPath,  NULL,                   "%b;%P;$PATH",             (char *)""},
    9292
     93#ifdef __CYGWIN__
     94  {"emacs",     'E',    feResBinary,"ESINGULAR_EMACS",      "%b/emacs.exe",             (char *)""},
     95  {"xemacs",    'A',    feResBinary,"ESINGULAR_EMACS",      "%b/xemacs.exe",            (char *)""},
     96  {"SingularEmacs",'M', feResBinary,"ESINGULAR_SINGULAR",   "%b/Singular.exe",          (char *)""},
     97#else
    9398  {"emacs",     'E',    feResBinary,"ESINGULAR_EMACS",      "%b/emacs",             (char *)""},
    9499  {"xemacs",    'A',    feResBinary,"ESINGULAR_EMACS",      "%b/xemacs",            (char *)""},
    95100  {"SingularEmacs",'M', feResBinary,"ESINGULAR_SINGULAR",   "%b/Singular",          (char *)""},
     101#endif
    96102  {"EmacsLoad", 'l',    feResFile,  "ESINGULAR_EMACS_LOAD", "%e/.emacs-singular",   (char *)""},
    97103  {"EmacsDir",  'e',    feResDir,   "ESINGULAR_EMACS_DIR",  "%D/singular/emacs",             (char *)""},
Note: See TracChangeset for help on using the changeset viewer.