summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2024-02-01 22:56:12 +0000
committerKarl Berry <karl@freefriends.org>2024-02-01 22:56:12 +0000
commit5fa7e249b027ce94b1e2f1064c2c884c9ed538c2 (patch)
tree5529cfb6bf5cdc187ab27b3f05052a5014299830 /Build/source/texk/web2c/luatexdir
parentb0c8faa4c10a27dbc74e13639c9e9e926a7695a2 (diff)
mpfi integration into mpost from luigi
git-svn-id: svn://tug.org/texlive/trunk@69664 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir')
-rw-r--r--Build/source/texk/web2c/luatexdir/lua/mplibstuff.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/luatexdir/lua/mplibstuff.c b/Build/source/texk/web2c/luatexdir/lua/mplibstuff.c
index f4845c0a4f4..3c65586541a 100644
--- a/Build/source/texk/web2c/luatexdir/lua/mplibstuff.c
+++ b/Build/source/texk/web2c/luatexdir/lua/mplibstuff.c
@@ -55,6 +55,7 @@ void mp_svg_backend_free (void *mp);
int mp_svg_ship_out (void *hh, int prologues);
int mp_svg_gr_ship_out (void *hh, int qprologues, int standalone);
+void *mp_initialize_interval_math(void *mp);
void *mp_initialize_binary_math(void *mp);
@@ -69,9 +70,11 @@ int mp_svg_ship_out (void *hh, int prologues) { mplibstuff_m
int mp_svg_gr_ship_out (void *hh, int qprologues, int standalone) { mplibstuff_message(svg backend); return 1; }
+void *mp_initialize_interval_math(void *mp) {mplibstuff_message(math interval);return NULL; }
void *mp_initialize_binary_math(void *mp) {mplibstuff_message(math binary);return NULL; }
const char* cairo_version_string (void);
+const char* mpfi_get_version(void);
const char* mpfr_get_version(void);
const char* pixman_version_string (void);
@@ -82,6 +85,9 @@ const char *COMPILED_CAIRO_VERSION_STRING = CAIRO_VERSION_STRING;
#define MPFR_VERSION_STRING "MPFR NOT AVAILABLE"
const char *COMPILED_MPFR_VERSION_STRING = MPFR_VERSION_STRING;
+#define MPFI_VERSION_STRING "MPFI NOT AVAILABLE"
+const char *COMPILED_MPFI_VERSION_STRING = MPFI_VERSION_STRING;
+
#define __GNU_MP_VERSION -1
#define __GNU_MP_VERSION_MINOR -1
@@ -99,6 +105,11 @@ const char* cairo_version_string (void)
return CAIRO_VERSION_STRING;
}
+const char* mpfi_get_version(void)
+{
+ return MPFI_VERSION_STRING;
+}
+
const char* mpfr_get_version(void)
{
return MPFR_VERSION_STRING;