diff options
author | albert-github <albert.tests@gmail.com> | 2020-01-09 12:11:07 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2020-01-09 12:11:07 (GMT) |
commit | 4c20acdb98eed7928015ed8d6ed739db0ccdaed6 (patch) | |
tree | 5d2042605618f063736ae481a3e86c0c90d45111 | |
parent | abb7f5372f3646d8dc70fb5c47344dc9250d8b2c (diff) | |
download | Doxygen-4c20acdb98eed7928015ed8d6ed739db0ccdaed6.zip Doxygen-4c20acdb98eed7928015ed8d6ed739db0ccdaed6.tar.gz Doxygen-4c20acdb98eed7928015ed8d6ed739db0ccdaed6.tar.bz2 |
issue #7484 Error: /undefined in getenv
The command `ps2epsi` also uses the `gs` command and this gives some problems with the gs9.50 version.
An alternative is the `eps2eps` command that doesn't have these problems with the gs9.50 version.
See also:
- #7290
- https://bugs.ghostscript.com/show_bug.cgi?id=702024
-rw-r--r-- | src/formula.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/formula.cpp b/src/formula.cpp index 64555c9..01a96b3 100644 --- a/src/formula.cpp +++ b/src/formula.cpp @@ -151,13 +151,13 @@ void FormulaList::generateBitmaps(const char *path) return; } Portable::sysTimerStop(); - // run ps2epsi to convert to an encapsulated postscript file with + // run eps2eps to convert to an encapsulated postscript file with // boundingbox (dvips with -E has some problems here). sprintf(psArgs,"%s_tmp.ps %s.eps",formBase.data(),formBase.data()); Portable::sysTimerStart(); - if (Portable::system("ps2epsi",psArgs)!=0) + if (Portable::system("eps2eps",psArgs)!=0) { - err("Problems running ps2epsi. Check your installation!\n"); + err("Problems running eps2eps. Check your installation!\n"); Portable::sysTimerStop(); QDir::setCurrent(oldDir); return; |