summaryrefslogtreecommitdiff
path: root/Build/source/libs/graphite2/configure.ac
diff options
context:
space:
mode:
authorDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
committerDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
commitc6101f91d071883b48b1b4b51e5eba0f36d9a78d (patch)
tree1bf7f5a881d7a4f5c5bf59d0b2821943dd822372 /Build/source/libs/graphite2/configure.ac
parent07ee7222e389b0777456b427a55c22d0e6ffd267 (diff)
French translation for tlmgr updated
git-svn-id: svn://tug.org/texlive/trunk@57912 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/graphite2/configure.ac')
-rw-r--r--Build/source/libs/graphite2/configure.ac49
1 files changed, 0 insertions, 49 deletions
diff --git a/Build/source/libs/graphite2/configure.ac b/Build/source/libs/graphite2/configure.ac
deleted file mode 100644
index 7ac789728a7..00000000000
--- a/Build/source/libs/graphite2/configure.ac
+++ /dev/null
@@ -1,49 +0,0 @@
-dnl Process this file with autoconf to produce a configure script.
-dnl
-dnl Copyright (C) 2012, 2013 Peter Breitenlohner <tex-live@tug.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_include([version.ac])[] dnl define graphite2_version
-AC_INIT([graphite2 (TeX Live)], graphite2_version, [tex-k@tug.org])
-AC_PREREQ([2.65])
-AC_CONFIG_SRCDIR([graphite2-src/graphite2.pc.in])
-AC_CONFIG_AUX_DIR([../../build-aux])
-AC_CONFIG_MACRO_DIR([../../m4])
-
-KPSE_BASIC([graphite2])
-
-dnl ! C++11 required since graphite2 1.3.12 !
-AC_PROG_CC
-AC_PROG_CXX
-AX_CXX_COMPILE_STDCXX([11])
-AC_PROG_RANLIB
-AC_PROG_LN_S
-
-AC_CONFIG_HEADERS([config.h])
-
-AM_CONDITIONAL([build], [test "x$enable_build" != xno])
-
-AM_CONDITIONAL([DIRECT_TYPE], [test "x$GCC" = xyes])
-
-enable_fileface=yes
-AM_CONDITIONAL([WITH_FILEFACE], [test "x$enable_fileface" != xno])
-if test "x$enable_fileface" = no; then
- AC_DEFINE([GRAPHITE2_NFILEFACE], 1,
- [Define to 1 to disable fileface support.])
-fi
-
-enable_tracing=no
-AM_CONDITIONAL([WITH_TRACING], [test "x$enable_tracing" != xno])
-if test "x$enable_tracing" = no; then
- AC_DEFINE([GRAPHITE2_NTRACING], 1,
- [Define to 1 to disable tracing support.])
-fi
-
-AC_SUBST([GRAPHITE2_TREE], [graphite2-src])
-
-AC_CONFIG_FILES([Makefile include/graphite2/Makefile])
-
-AC_OUTPUT