[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: Load libtexinfo before libtexinfoxs
From: |
Gavin D. Smith |
Subject: |
branch master updated: Load libtexinfo before libtexinfoxs |
Date: |
Thu, 21 Nov 2024 14:57:20 -0500 |
This is an automated email from the git hooks/post-receive script.
gavin pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new 9ef15baefe Load libtexinfo before libtexinfoxs
9ef15baefe is described below
commit 9ef15baefec4ff40bc0ba6a191073ec2163eda11
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Thu Nov 21 19:55:24 2024 +0000
Load libtexinfo before libtexinfoxs
* tp/Texinfo/DocumentXS.pm,
* tp/Texinfo/Parser.pm: Swap order of -ltexinfoxs and -ltexinfo
as the former requires the latter to be loaded first.
---
ChangeLog | 8 ++++++++
tp/Texinfo/DocumentXS.pm | 2 +-
tp/Texinfo/Parser.pm | 2 +-
3 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 66c380f0de..35347323c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2024-11-21 Gavin Smith <gavinsmith0123@gmail.com>
+
+ Load libtexinfo before libtexinfoxs
+
+ * tp/Texinfo/DocumentXS.pm,
+ * tp/Texinfo/Parser.pm: Swap order of -ltexinfoxs and -ltexinfo
+ as the former requires the latter to be loaded first.
+
2024-11-21 Gavin Smith <gavinsmith0123@gmail.com>
* tp/Texinfo/XS/configure.ac (LT_INIT): Add "dlopen" option,
diff --git a/tp/Texinfo/DocumentXS.pm b/tp/Texinfo/DocumentXS.pm
index 332a07e592..daa1a2bfc2 100644
--- a/tp/Texinfo/DocumentXS.pm
+++ b/tp/Texinfo/DocumentXS.pm
@@ -30,7 +30,7 @@ BEGIN {
undef,
"DocumentXS",
undef,
- ['-ltexinfoxs', '-ltexinfo'],
+ ['-ltexinfo', '-ltexinfoxs'],
);
}
diff --git a/tp/Texinfo/Parser.pm b/tp/Texinfo/Parser.pm
index d87901951f..a9219402ba 100644
--- a/tp/Texinfo/Parser.pm
+++ b/tp/Texinfo/Parser.pm
@@ -34,7 +34,7 @@ BEGIN {
"Texinfo::ParserNonXS",
$shared_library_name,
"Texinfo::XS::parsetexi::Parsetexi",
- ['-ltexinfoxs', '-ltexinfo'],
+ ['-ltexinfo', '-ltexinfoxs'],
);
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: Load libtexinfo before libtexinfoxs,
Gavin D. Smith <=