summaryrefslogtreecommitdiff
path: root/Build/source/utils/xml2pmx/configure.ac
blob: 735c901ce86d902a1b3d3f2b6626ad28aa66346c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
dnl $Id$
dnl Process this file with autoconf to produce a configure script.
dnl
dnl   Copyright 2021 Bob Tennent <rdt@queensu.org>
dnl
dnl   This file is free software; the copyright holder
dnl   gives unlimited permission to copy and/or distribute it,
dnl   with or without modifications, as long as this notice is preserved.
dnl
m4_define([xml2pmx_version], [2021-01-23])[]dnl using unmodified xml2pmx source
AC_INIT([xml2pmx (TeX Live)], xml2pmx_version, [tex-k@tug.org])
AC_PREREQ([2.65])
AC_CONFIG_SRCDIR([xml2pmx-src/obx.h])
AC_CONFIG_AUX_DIR([../../build-aux])
AC_CONFIG_MACRO_DIR([../../m4])
AC_DEFINE(REVID, "xml2pmx", [Build id for runtime])

KPSE_BASIC([xml2pmx])
AC_CONFIG_HEADERS([config.h])[]

# Copied from xml2pmx-src/configure.ac.
# Checks for programs.
AC_PROG_CC
AC_C_CONST
AC_C_BIGENDIAN
AC_C_INLINE
AC_UNISTD_H

# defined in acinclude.m4.
AC_C_UNUSED
AC_C_USED
AC_C_NORETURN

AC_DEFINE(PAGESIZE, 4096, [Notional page size for garbage collector])
AC_DEFINE(LOG_PAGESIZE, 12, [log2 of PAGESIZE])

# M64X32 allows Keiko programs (with 4-byte pointers) to run on machines
# with a 64-bit address space.
AC_CHECK_SIZEOF([int *])
if test $ac_cv_sizeof_int_p = 8; then
  AC_DEFINE(M64X32, 1, [Define for 64-bit runtime with 32-bit pointers])
fi

# Indexed jumps allow the interpreter to run faster, but it works
# without them.
# AC_C_INDEXED_JUMPS

# SEGMEM allows malloc to be used for all dynamic storage allocation
AC_DEFINE(SEGMEM, 1, [Define to simulate segmented memory])

AC_DEFINE(PRELOAD, 1, [Define to use preloaded image])
AC_DEFINE(MAGIC, "OBCX", [Magic number for executables])
AC_DEFINE(SIG, 0x00030290, [OBC version signature])
AC_DEFINE(DEBUG, 1, [Debug])

# trailing tl stuff.
AC_PROG_MAKE_SET
KPSE_COND_WIN32_WRAP
AC_SUBST([XML2PMX_TREE], [xml2pmx-src])

AC_CONFIG_FILES([Makefile])
AC_OUTPUT