comparison mupdf-source/thirdparty/gumbo-parser/configure.ac @ 2:b50eed0cc0ef upstream

ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4. The directory name has changed: no version number in the expanded directory now.
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:43:07 +0200
parents
children
comparison
equal deleted inserted replaced
1:1d09e1dec1d9 2:b50eed0cc0ef
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ([2.65])
5 AC_INIT([gumbo], [0.10.1], [jonathan.d.tang@gmail.com])
6 AC_CONFIG_MACRO_DIR([m4])
7 AC_CONFIG_SRCDIR([src/parser.c])
8 #AC_CONFIG_HEADERS([config.h])
9 AC_CONFIG_FILES([Makefile gumbo.pc])
10
11 # Checks for programs.
12 AC_PROG_CXX
13 AC_PROG_CC_C99
14
15 # Checks for libraries.
16
17 # Checks for header files.
18 AC_CHECK_HEADERS([stddef.h stdlib.h string.h strings.h])
19
20 # Checks for typedefs, structures, and compiler characteristics.
21 AC_C_INLINE
22 AC_TYPE_SIZE_T
23
24 # Checks for library functions.
25 AC_CHECK_LIB([gtest_main],
26 [main],
27 AM_CONDITIONAL(HAVE_SHARED_LIBGTEST, [true]),
28 AM_CONDITIONAL(HAVE_SHARED_LIBGTEST, [false]))
29
30 # Init Automake & libtool
31 AM_INIT_AUTOMAKE([foreign subdir-objects])
32 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
33 LT_INIT
34
35 AC_OUTPUT