texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: * configure.ac: remove USE_UNICODE, it is not use


From: Patrice Dumas
Subject: branch master updated: * configure.ac: remove USE_UNICODE, it is not used anywhere.
Date: Mon, 02 Dec 2024 13:08:05 -0500

This is an automated email from the git hooks/post-receive script.

pertusus pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new a93ee82f3e * configure.ac: remove USE_UNICODE, it is not used anywhere.
a93ee82f3e is described below

commit a93ee82f3e3bd864a9b061712934e32dc55dcce0
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Mon Dec 2 19:07:56 2024 +0100

    * configure.ac: remove USE_UNICODE, it is not used anywhere.
    
    * tp/Texinfo/XS/configure.ac: do not set GL_GNULIB_MDA_* anymore,
    there should not be any case where Perl and Gnulib headers are used
    together.
---
 ChangeLog                  |  8 ++++++++
 configure.ac               |  1 -
 tp/Texinfo/XS/configure.ac | 12 ++++--------
 3 files changed, 12 insertions(+), 9 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 995a409c0f..711b16f338 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2024-12-02  Patrice Dumas  <pertusus@free.fr>
+
+       * configure.ac: remove USE_UNICODE, it is not used anywhere.
+
+       * tp/Texinfo/XS/configure.ac: do not set GL_GNULIB_MDA_* anymore,
+       there should not be any case where Perl and Gnulib headers are used
+       together.
+
 2024-12-02  Patrice Dumas  <pertusus@free.fr>
 
        * configure.ac: remove check for prove, prove is not used in tests
diff --git a/configure.ac b/configure.ac
index e8da35d0ea..ab049ae0d2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -423,7 +423,6 @@ AC_ARG_WITH([external-Text-Unidecode],
    fi]
 )
 
-AC_SUBST([USE_UNICODE])
 AC_SUBST([USE_EXTERNAL_UNIDECODE])
 
 # i18n support.
diff --git a/tp/Texinfo/XS/configure.ac b/tp/Texinfo/XS/configure.ac
index e9044af225..d4e0bdac90 100644
--- a/tp/Texinfo/XS/configure.ac
+++ b/tp/Texinfo/XS/configure.ac
@@ -117,6 +117,8 @@ PACKAGE_XS_VERSION=0
 # "make dist" will work.
 if test x$disable_xs != xyes; then
   #PACKAGE_XS_VERSION=`${PERL} -e 'use version; print 
version->declare('"$PACKAGE_VERSION"')->numify;'`
+  # to check that Perl module loading the XS objects and XS objects versions
+  # match.  A hyphen is also turned to a dot for the Perl module version.
   PACKAGE_XS_VERSION=`echo $PACKAGE_VERSION | sed 's/-/./g'`
 
   if test -n "$PERL_EXT_CC" ; then
@@ -192,12 +194,6 @@ LT_INIT([disable-static dlopen])
 # Note that the above have to be outside the disable_xs block
 # otherwise it causes an error with configure.
 
-# Disable gnulib provision of "Microsoft deprecated alias" functions on
-# MS-Windows to prevent a clash with definitions in Perl header files
-GL_GNULIB_MDA_FDOPEN=0
-GL_GNULIB_MDA_MKTEMP=0
-GL_GNULIB_MDA_PUTENV=0
-
 AM_CONDITIONAL([HAVE_ICONV],
                [test "x$am_func_iconv" = "xyes"])
 
@@ -243,9 +239,9 @@ PERL_LIBS="-L$PERL_INC $PERL_CONF_libperl"
 # linking against Perl.
 case "$host" in *-mingw32 | *-mingw64 | *-msdosdjgpp | *-cygwin )
   perl_conf_LDFLAGS="$perl_conf_LDFLAGS -no-undefined"
-  # used for shared libraries not linked against Perl.
-  platform_LDFLAGS='-no-undefined'
   platform_PERL_LIBADD=$PERL_LIBS
+  # to be used for shared libraries not linked against Perl.
+  platform_LDFLAGS='-no-undefined'
   ;;
 esac
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]