]> www.fi.muni.cz Git - evince.git/blobdiff - backend/dvi/mdvi-lib/setup.c
[presentation] Fix rendering of documents with non uniform page size
[evince.git] / backend / dvi / mdvi-lib / setup.c
index dea26e665debbfe3c9d7f701cd6d15598d5da593..a75f0282eaa9e026eff880e6e85aa1898c71e73f 100644 (file)
@@ -16,6 +16,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
+#include <config.h>
 #include <stdlib.h>
 #include <string.h>
 #include <errno.h>
@@ -25,7 +26,8 @@
 #include "private.h"
 
 void   mdvi_init_kpathsea(const char *program, 
-       const char *mfmode, const char *font, int dpi)
+       const char *mfmode, const char *font, int dpi,
+       const char *texmfcnf)
 {
        const char *p;
 
@@ -40,5 +42,7 @@ void  mdvi_init_kpathsea(const char *program,
        kpse_set_program_enabled(kpse_pk_format, 1, kpse_src_compile);
        kpse_set_program_enabled(kpse_tfm_format, 1, kpse_src_compile);
        kpse_set_program_enabled(kpse_ofm_format, 1, kpse_src_compile);
+       if (texmfcnf != NULL)
+               xputenv("TEXMFCNF", texmfcnf);
 }