diff options
author | Karl Berry <karl@freefriends.org> | 2010-04-11 00:28:06 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-04-11 00:28:06 +0000 |
commit | 001b7975ce276ec6e72bf2b317cef8afe92c2948 (patch) | |
tree | 3c73cdd11c93462911cb416a231af743f48d5368 /Build/source/m4 | |
parent | 22d2dd3a9e8cc227f8d51b2fe8cf1734c2844959 (diff) |
add ptex from Akira, Norbert, and jTeX group; ptex not actually built by default yet
git-svn-id: svn://tug.org/texlive/trunk@17797 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/m4')
-rw-r--r-- | Build/source/m4/kpse-pkgs.m4 | 3 | ||||
-rw-r--r-- | Build/source/m4/kpse-ptexenc-flags.m4 | 30 |
2 files changed, 33 insertions, 0 deletions
diff --git a/Build/source/m4/kpse-pkgs.m4 b/Build/source/m4/kpse-pkgs.m4 index a4a3132e743..9af39fc6db5 100644 --- a/Build/source/m4/kpse-pkgs.m4 +++ b/Build/source/m4/kpse-pkgs.m4 @@ -76,6 +76,7 @@ xindy # excluding 'texk/kpathsea'. AC_DEFUN([KPSE_TEXK_PKGS], [m4_define([kpse_texk_pkgs], [ +ptexenc web2c afm2pl bibtex8 @@ -96,6 +97,8 @@ gsftopk lacheck lcdf-typetools makeindexk +makejvf +mendexk musixflx ps2pkm seetexk diff --git a/Build/source/m4/kpse-ptexenc-flags.m4 b/Build/source/m4/kpse-ptexenc-flags.m4 new file mode 100644 index 00000000000..0c75e64fe80 --- /dev/null +++ b/Build/source/m4/kpse-ptexenc-flags.m4 @@ -0,0 +1,30 @@ +# Public macros for the TeX Live (TL) tree. +# Copyright (C) 2009 Peter Breitenlohner <tex-live@tug.org> +# +# This file is free software; the copyright holder +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 0 + +# KPSE_PTEXENC_FLAGS +# ------------------- +# Provide the configure options '--with-system-ptexenc' (if in the TL tree), +# '--with-ptexenc-includes', and '--with-ptexenc-libdir'. +# +# Set the make variables PTEXENC_INCLUDES and PTEXENC_LIBS to the CPPFLAGS and +# LIBS required for the `-lptexenc' library in texk/ptexenc/ of the TL tree. +AC_DEFUN([KPSE_PTEXENC_FLAGS], +[_KPSE_LIB_FLAGS([ptexenc], [ptexenc], [tree], + [-IBLD/texk -ISRC/texk], [BLD/texk/ptexenc/libptexenc.la], [], + [${top_srcdir}/../ptexenc/*.[ch]], + [${top_builddir}/../ptexenc/ptexenc.h])[]dnl +]) # KPSE_PTEXENC_FLAGS + +# KPSE_PTEXENC_OPTIONS([WITH-SYSTEM]) +# ------------------------------------ +AC_DEFUN([KPSE_PTEXENC_OPTIONS], [_KPSE_LIB_OPTIONS([ptexenc], [$1])]) + +# KPSE_PTEXENC_SYSTEM_FLAGS +# -------------------------- +AC_DEFUN([KPSE_PTEXENC_SYSTEM_FLAGS], [_KPSE_LIB_FLAGS_SYSTEM([ptexenc], [ptexenc])]) |