Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2006-02-12 23:02:46 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2006-02-12 23:02:46 (GMT)
commit3979c5c5ca307cad84b417b0d350aa205fdc422f (patch)
tree52a3f971313a672f37349f99882239c6a4486594 /configure.ac
parenta3cb68f63b899f5b7ea61838eaf3ade5a8c4eac9 (diff)
Runtime check for gs interpreter. Fix for the bug #320868. Thanks to
* configure.ac: * ps/gsdefaults.c: (gtk_gs_defaults_get_paper_sizes): * ps/gsdefaults.h: * ps/ps-document.c: (start_interpreter), (ps_document_load): Runtime check for gs interpreter. Fix for the bug #320868. Thanks to Antoine Dopffer antoine.dopffer@free.fr
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac13
1 files changed, 0 insertions, 13 deletions
diff --git a/configure.ac b/configure.ac
index 3035de7..aafd6f3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -171,19 +171,6 @@ fi
AM_CONDITIONAL(ENABLE_PS, test x$enable_ps = xyes)
if test x$enable_ps = xyes; then
-AC_ARG_WITH(gs,
- [AC_HELP_STRING([--with-gs=dir], [Directory Where GhostScript package is installed.])])
-
-if test "x$with_gs" = "x"; then
- AC_PATH_PROG(GS_PROG, gs)
- if test -z "$GS_PROG"; then
- AC_MSG_ERROR(Unable to find GhostScript in the PATH. Provide the full path for GhostScript(--with-gs=PATH). You need to have Ghostscript installed in order to run evince)
- fi
-else
- GS_PROG=$with_gs
-fi
-
-AC_DEFINE_UNQUOTED(GS_PATH, "$GS_PROG", [Path to the 'gs' executable.])
dnl check for GS version
AC_MSG_CHECKING(for Ghostscript version...)