diff options
Diffstat (limited to 'backend/dvi')
| -rw-r--r-- | backend/dvi/Makefile.am | 2 | ||||
| -rw-r--r-- | backend/dvi/dvi-document.c | 13 | ||||
| -rw-r--r-- | backend/dvi/texmfcnf.c | 64 | ||||
| -rw-r--r-- | backend/dvi/texmfcnf.h | 34 | 
4 files changed, 2 insertions, 111 deletions
| diff --git a/backend/dvi/Makefile.am b/backend/dvi/Makefile.am index f88bfbae..b090f47a 100644 --- a/backend/dvi/Makefile.am +++ b/backend/dvi/Makefile.am @@ -18,8 +18,6 @@ libdvidocument_la_SOURCES = 	\  	dvi-document.h  	\  	cairo-device.c		\  	cairo-device.h		\ -	texmfcnf.c		\ -	texmfcnf.h		\  	fonts.c			\  	fonts.h diff --git a/backend/dvi/dvi-document.c b/backend/dvi/dvi-document.c index 304283d7..6ffa2514 100644 --- a/backend/dvi/dvi-document.c +++ b/backend/dvi/dvi-document.c @@ -20,7 +20,6 @@  #include "config.h"  #include "dvi-document.h" -#include "texmfcnf.h"  #include "ev-document-thumbnails.h"  #include "ev-document-misc.h"  #include "ev-file-exporter.h" @@ -33,12 +32,7 @@  #include <glib/gi18n-lib.h>  #include <ctype.h> -#ifdef G_OS_WIN32 -# define WIFEXITED(x) ((x) != 3) -# define WEXITSTATUS(x) (x) -#else -# include <sys/wait.h> -#endif +#include <sys/wait.h>  #include <stdlib.h>  GMutex dvi_context_mutex; @@ -246,13 +240,10 @@ dvi_document_class_init (DviDocumentClass *klass)  {  	GObjectClass    *gobject_class = G_OBJECT_CLASS (klass);  	EvDocumentClass *ev_document_class = EV_DOCUMENT_CLASS (klass); -	gchar *texmfcnf;  	gobject_class->finalize = dvi_document_finalize; -	texmfcnf = get_texmfcnf(); -	mdvi_init_kpathsea ("atril", MDVI_MFMODE, MDVI_FALLBACK_FONT, MDVI_DPI, texmfcnf); -	g_free(texmfcnf); +	mdvi_init_kpathsea ("atril", MDVI_MFMODE, MDVI_FALLBACK_FONT, MDVI_DPI, getenv("TEXMFCNF"));  	mdvi_register_special ("Color", "color", NULL, dvi_document_do_color_special, 1);  	mdvi_register_fonts (); diff --git a/backend/dvi/texmfcnf.c b/backend/dvi/texmfcnf.c deleted file mode 100644 index 9ca3125f..00000000 --- a/backend/dvi/texmfcnf.c +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Copyright (C) 2010, Hib Eris <[email protected]> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ - -#include "config.h" - -#include "texmfcnf.h" - -#include <glib.h> -#include <stdlib.h> -#ifdef G_OS_WIN32 -#include <windows.h> -#endif - -gchar * -get_texmfcnf(void) -{ -	char *env = getenv("TEXMFCNF"); -	if (env) -		return g_strdup(env); - -#ifdef G_OS_WIN32 -	gchar *texmfcnf = NULL; -	TCHAR path[_MAX_PATH]; - -	if (SearchPath(NULL, "mktexpk", ".exe", _MAX_PATH, path, NULL)) -	{ -		gchar *sdir, *sdir_parent, *sdir_grandparent; -		const gchar *texmfcnf_fmt = "{%s,%s,%s}{,{/share,}/texmf{-local,}/web2c}"; - -		sdir = g_path_get_dirname(path); -		sdir_parent = g_path_get_dirname(sdir); -		sdir_grandparent = g_path_get_dirname(sdir_parent); - -		texmfcnf = g_strdup_printf(texmfcnf_fmt, -			sdir, sdir_parent, sdir_grandparent); - -		g_free(sdir); -		g_free(sdir_parent); -		g_free(sdir_grandparent); -	} -	return texmfcnf; -#else -	return NULL; -#endif -} - - - - diff --git a/backend/dvi/texmfcnf.h b/backend/dvi/texmfcnf.h deleted file mode 100644 index 11cb9b3d..00000000 --- a/backend/dvi/texmfcnf.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (C) 2010, Hib Eris <[email protected]> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ - -#ifndef TEXMFCNF_H -#define TEXMFCNF_H - -#include <glib.h> - -G_BEGIN_DECLS - -gchar *get_texmfcnf(void); - -G_END_DECLS - -#endif /* TEXMFCNF_H */ - - - - | 
