texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * configure.ac (prefer_libintl_perl), tp/Texinfo/


From: Patrice Dumas
Subject: branch master updated: * configure.ac (prefer_libintl_perl), tp/Texinfo/XS/configure.ac (use_libintl_perl_in_xs): fix typo in variable names. Report from Ken Brown.
Date: Sun, 01 Dec 2024 16:52:58 -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 cd7ec805a8 * configure.ac (prefer_libintl_perl), 
tp/Texinfo/XS/configure.ac (use_libintl_perl_in_xs): fix typo in variable 
names.  Report from Ken Brown.
cd7ec805a8 is described below

commit cd7ec805a8600eb3fa57fbcecab1605b395e8f57
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sun Dec 1 22:52:48 2024 +0100

    * configure.ac (prefer_libintl_perl), tp/Texinfo/XS/configure.ac
    (use_libintl_perl_in_xs): fix typo in variable names.  Report from Ken
    Brown.
---
 ChangeLog                  |  6 ++++++
 configure.ac               |  4 ++--
 tp/Texinfo/XS/configure.ac | 10 +++++-----
 3 files changed, 13 insertions(+), 7 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 33f7ab47cd..5a9dafc3b8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-12-01  Patrice Dumas  <pertusus@free.fr>
+
+       * configure.ac (prefer_libintl_perl), tp/Texinfo/XS/configure.ac
+       (use_libintl_perl_in_xs): fix typo in variable names.  Report from Ken
+       Brown.
+
 2024-12-01  Patrice Dumas  <pertusus@free.fr>
 
        * tp/Texinfo/ParserNonXS.pm: add parentheses for define call.  Change
diff --git a/configure.ac b/configure.ac
index 6594bea5b6..673a53dfe8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -507,9 +507,9 @@ AC_ARG_ENABLE([xs-perl-libintl],
     AS_HELP_STRING([--enable-xs-perl-libintl],
             [prefer Perl libintl-perl gettext in XS modules]),
     [if test $enableval = 'yes'; then
-       prefer_libinlt_perl=yes
+       prefer_libintl_perl=yes
      else
-       prefer_libinlt_perl=no
+       prefer_libintl_perl=no
      fi],
      [])
 
diff --git a/tp/Texinfo/XS/configure.ac b/tp/Texinfo/XS/configure.ac
index 5ec092100b..e9044af225 100644
--- a/tp/Texinfo/XS/configure.ac
+++ b/tp/Texinfo/XS/configure.ac
@@ -208,19 +208,19 @@ AC_ARG_ENABLE([xs-perl-libintl],
     AS_HELP_STRING([--enable-xs-perl-libintl],
               [prefer Perl libintl-perl gettext in XS modules]),
     [if test $enableval = 'yes'; then
-       use_libinlt_perl_in_xs=yes
+       use_libintl_perl_in_xs=yes
      else
-       use_libinlt_perl_in_xs=no
+       use_libintl_perl_in_xs=no
      fi],
      [
       if test $usable_getenv_in_XS = yes ; then
-        use_libinlt_perl_in_xs=no
+        use_libintl_perl_in_xs=no
       else
-        use_libinlt_perl_in_xs=yes
+        use_libintl_perl_in_xs=yes
       fi
      ])
 
-if test $use_libinlt_perl_in_xs = yes ; then
+if test $use_libintl_perl_in_xs = yes ; then
   AC_DEFINE([USE_LIBINTL_PERL_IN_XS], [1],
             [Define to 1 if Perl libintl-perl should be called from XS])
 fi



reply via email to

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