]> www.fi.muni.cz Git - evince.git/blobdiff - backend/dvi/mdvi-lib/setup.c
a11: using ATK_ROLE_DOCUMENT_FRAME it's more correct
[evince.git] / backend / dvi / mdvi-lib / setup.c
index dea26e665debbfe3c9d7f701cd6d15598d5da593..ba0c545db7a9732d8bdf9149f361130638efa6bc 100644 (file)
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  *
  * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
  */
 
+#include <config.h>
 #include <stdlib.h>
 #include <string.h>
 #include <errno.h>
 #include <stdlib.h>
 #include <string.h>
 #include <errno.h>
@@ -25,7 +26,8 @@
 #include "private.h"
 
 void   mdvi_init_kpathsea(const char *program, 
 #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;
 
 {
        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);
        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);
 }
 
 }