summaryrefslogtreecommitdiff
path: root/Build/source/m4/kpse-win32.m4
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/m4/kpse-win32.m4
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/m4/kpse-win32.m4')
-rw-r--r--Build/source/m4/kpse-win32.m482
1 files changed, 0 insertions, 82 deletions
diff --git a/Build/source/m4/kpse-win32.m4 b/Build/source/m4/kpse-win32.m4
deleted file mode 100644
index cdee44e2ec7..00000000000
--- a/Build/source/m4/kpse-win32.m4
+++ /dev/null
@@ -1,82 +0,0 @@
-# $Id$
-# Public macros for the TeX Live (TL) tree.
-# Copyright 2016-2019 Karl Berry <tex-live@tug.org>
-# Copyright 2009-2015 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.
-
-# KPSE_CHECK_WIN32
-# ----------------
-# Check for WIN32 and distinguish between MINGW32 and native.
-AC_DEFUN([KPSE_CHECK_WIN32], [dnl
-AC_CACHE_CHECK([for native WIN32 or MINGW32],
- [kpse_cv_have_win32],
- [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifndef WIN32
- choke me
-#endif]])],
- [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifndef __MINGW32__
- choke me
-#endif]])],
- [kpse_cv_have_win32=mingw32],
- [kpse_cv_have_win32=native])],
- [kpse_cv_have_win32=no])])
-]) # KPSE_CHECK_WIN32
-
-# KPSE_COND_WIN32
-# ---------------
-# Define the conditional WIN32.
-AC_DEFUN([KPSE_COND_WIN32], [dnl
-AC_REQUIRE([KPSE_CHECK_WIN32])[]dnl
-AM_CONDITIONAL([WIN32], [test "x$kpse_cv_have_win32" != xno])
-]) # KPSE_COND_WIN32
-
-# KPSE_COND_MINGW32
-# -----------------
-# Define the conditionals WIN32 and MINGW32.
-AC_DEFUN([KPSE_COND_MINGW32], [dnl
-AC_REQUIRE([KPSE_COND_WIN32])[]dnl
-AM_CONDITIONAL([MINGW32], [test "x$kpse_cv_have_win32" = xmingw32])
-]) # KPSE_COND_MINGW32
-
-# KPSE_COND_WIN32_WRAP
-# --------------------
-# Define the conditionals WIN32 and WIN32_WRAP.
-AC_DEFUN([KPSE_COND_WIN32_WRAP], [dnl
-AC_REQUIRE([KPSE_COND_WIN32])[]dnl
-AC_CACHE_CHECK([for WIN64],
- [kpse_cv_have_win64],
- [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifndef _WIN64
- choke me
-#endif]])],
- [kpse_cv_have_win64=yes],
- [kpse_cv_have_win64=no])])
-AS_CASE([$kpse_cv_have_win64],
- [yes], [AS_IF([test "x$kpse_cv_have_win32=xmingw"],
- [WIN_WRAPPER=w64_mingw_wrapper],
- [WIN_WRAPPER=w64_wrapper])],
- [WIN_WRAPPER=w32_wrapper])
-AC_SUBST([WIN_WRAPPER])
-AM_CONDITIONAL([WIN32_WRAP],
- [test -r "$srcdir/../../texk/texlive/$WIN_WRAPPER/runscript.exe"])
-]) # KPSE_COND_WIN32_WRAP
-
-# KPSE_WIN32_CALL
-# ---------------
-# Create a callexe.c symlink.
-AC_DEFUN([KPSE_WIN32_CALL], [dnl
-AC_REQUIRE([KPSE_COND_WIN32])[]dnl
-AM_CONDITIONAL([WIN32_CALL],
- [test -r "$srcdir/../texlive/w32_wrapper/callexe.c"])
-AM_COND_IF([WIN32],
- [AC_CONFIG_LINKS([callexe.c:../texlive/w32_wrapper/callexe.c])])
-]) # KPSE_WIN32_CALL
-
-# KPSE_DO_IF_WIN32(COMMAND)
-# -------------------------
-# Execute COMMAND, if Windows.
-AC_DEFUN([KPSE_DO_IF_WIN32], [dnl
-AC_REQUIRE([KPSE_CHECK_WIN32])[]dnl
-AS_IF([test "x$kpse_cv_have_win32" != xno], [$1])
-]) # KPSE_DO_IF_WIN32