forked from pool/texlive
around boo#1228342 and enable build with GCC 14 on 32bit architectures. I plan to not to close the bug and keep an eye on the package and remove the flag when it hopefully becomes unnecessary in the future. If the request is OK, please forward it to Factory too so that we can switch the default compiler. Thanks! OBS-URL: https://build.opensuse.org/package/show/Publishing:TeXLive/texlive?expand=0&rev=478
53 lines
2.1 KiB
Plaintext
53 lines
2.1 KiB
Plaintext
---
|
|
configure.ac | 3 ---
|
|
m4/kpse-setup.m4 | 3 ++-
|
|
texk/dvipdfm-x/configure.ac | 2 +-
|
|
texk/dvisvgm/configure.ac | 1 +
|
|
4 files changed, 4 insertions(+), 5 deletions(-)
|
|
|
|
--- configure.ac
|
|
+++ configure.ac 2022-04-05 13:23:04.125421650 +0000
|
|
@@ -126,9 +126,6 @@ KPSE_FOR_PKGS([sys_libs], [m4_sinclude([
|
|
if test "x$syslib_status" = xno; then
|
|
AC_MSG_ERROR([some requested system libraries failed])
|
|
fi
|
|
-if test "x$syslib_used:$enable_native_texlive_build" = xyes:yes; then
|
|
- AC_MSG_ERROR([you can not use system libraries for a native TeX Live build])
|
|
-fi
|
|
KPSE_RESTORE_FLAGS
|
|
|
|
AM_CONDITIONAL([cross], [test "x$cross_compiling" = xyes])
|
|
--- m4/kpse-setup.m4
|
|
+++ m4/kpse-setup.m4 2022-04-05 13:23:04.201420256 +0000
|
|
@@ -30,7 +30,8 @@ AC_ARG_ENABLE([native-texlive-build],
|
|
AS_HELP_STRING([--disable-native-texlive-build],
|
|
[do not build for the TeX Live binary distribution]))[]dnl
|
|
AS_CASE([$enable_native_texlive_build],
|
|
- [yes | no], [:],
|
|
+ [yes | no], [
|
|
+ ac_configure_args="$ac_configure_args '--enable-native-texlive-build=$enable_native_texlive_build'"],
|
|
[enable_native_texlive_build=yes
|
|
ac_configure_args="$ac_configure_args '--enable-native-texlive-build'"])
|
|
AS_CASE([$enable_largefile],
|
|
--- texk/dvipdfm-x/configure.ac
|
|
+++ texk/dvipdfm-x/configure.ac 2024-03-14 13:33:50.007973975 +0000
|
|
@@ -8,7 +8,7 @@ dnl This file is free software; the co
|
|
dnl gives unlimited permission to copy and/or distribute it,
|
|
dnl with or without modifications, as long as this notice is preserved.
|
|
dnl
|
|
-AC_INIT([dvipdfm-x (TeX Live)], [20240305], [dvipdfmx@tug.org])
|
|
+AC_INIT([dvipdfm (TeX Live)], [20240305], [dvipdfmx@tug.org])
|
|
AC_PREREQ([2.65])
|
|
AC_CONFIG_SRCDIR([agl.c])
|
|
AC_CONFIG_AUX_DIR([../../build-aux])
|
|
--- texk/dvisvgm/configure.ac
|
|
+++ texk/dvisvgm/configure.ac 2022-04-05 13:23:04.449415706 +0000
|
|
@@ -58,6 +58,7 @@ if test "x$enable_native_texlive_build"
|
|
HAVE_LIBGS=0
|
|
else
|
|
have_libgs=yes
|
|
+ HAVE_LIBGS=$have_libgs
|
|
AC_CHECK_HEADER([ghostscript/iapi.h],
|
|
[AC_CHECK_LIB(gs, gsapi_revision,, [have_libgs=no])],
|
|
[have_libgs=no])
|