[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Patrice Dumas |
Date: |
Thu, 3 Oct 2024 13:43:01 -0400 (EDT) |
branch: master
commit 812071b29629136ffbfca9e3dcbedac9bc170c0c
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Mon Aug 5 19:37:42 2024 +0200
* tp/Texinfo/XS/Makefile.am (libtexinfo_convert_la_SOURCES): rename
convert/converter_options.c as convert/html_converter_init_options.c.
---
ChangeLog | 5 +++++
tp/Texinfo/XS/Makefile.am | 14 +++++++-------
tp/Texinfo/XS/convert/converter.c | 2 +-
.../{converter_options.c => html_converter_init_options.c} | 2 +-
.../{converter_options.h => html_converter_init_options.h} | 6 +++---
5 files changed, 17 insertions(+), 12 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 906970db24..53e8f32621 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-08-05 Patrice Dumas <pertusus@free.fr>
+
+ * tp/Texinfo/XS/Makefile.am (libtexinfo_convert_la_SOURCES): rename
+ convert/converter_options.c as convert/html_converter_init_options.c.
+
2024-08-05 Patrice Dumas <pertusus@free.fr>
* tp/Texinfo/Convert/Converter.pm (converter), tp/Texinfo/Convert/*.pm
diff --git a/tp/Texinfo/XS/Makefile.am b/tp/Texinfo/XS/Makefile.am
index a7f7820ab3..b504ecc6a4 100644
--- a/tp/Texinfo/XS/Makefile.am
+++ b/tp/Texinfo/XS/Makefile.am
@@ -341,11 +341,11 @@ xs_LTLIBRARIES += libtexinfoxs.la
endif
libtexinfoxs_la_SOURCES= \
- main/build_perl_info.c \
- main/build_perl_info.h \
- main/get_perl_info.c \
- main/get_perl_info.h \
- main/options_get_perl.c
+ main/build_perl_info.c \
+ main/build_perl_info.h \
+ main/get_perl_info.c \
+ main/get_perl_info.h \
+ main/options_get_perl.c
# locate include files under out-of-source builds.
libtexinfoxs_la_CPPFLAGS = -I$(srcdir)/main -I$(srcdir)/convert $(AM_CPPFLAGS)
$(XSLIBS_CPPFLAGS)
@@ -376,8 +376,8 @@ libtexinfo_convert_la_SOURCES= \
convert/convert_html.c \
convert/converters_defaults.c \
convert/converters_defaults.h \
- convert/converter_options.c \
- convert/converter_options.h \
+ convert/html_converter_init_options.c \
+ convert/html_converter_init_options.h \
convert/build_html_perl_state.h \
convert/build_html_perl_state.c \
convert/call_html_perl_function.h \
diff --git a/tp/Texinfo/XS/convert/converter.c
b/tp/Texinfo/XS/convert/converter.c
index ac29d2cb48..62ad61a449 100644
--- a/tp/Texinfo/XS/convert/converter.c
+++ b/tp/Texinfo/XS/convert/converter.c
@@ -56,7 +56,7 @@
#include "unicode.h"
#include "manipulate_indices.h"
#include "document.h"
-#include "converter_options.h"
+#include "html_converter_init_options.h"
#include "call_perl_function.h"
#include "converter.h"
diff --git a/tp/Texinfo/XS/convert/converter_options.c
b/tp/Texinfo/XS/convert/html_converter_init_options.c
similarity index 99%
rename from tp/Texinfo/XS/convert/converter_options.c
rename to tp/Texinfo/XS/convert/html_converter_init_options.c
index bb3267bd0e..2a9b37c098 100644
--- a/tp/Texinfo/XS/convert/converter_options.c
+++ b/tp/Texinfo/XS/convert/html_converter_init_options.c
@@ -23,7 +23,7 @@
#include "converter_types.h"
#include "converters_defaults.h"
#include "utils.h"
-#include "converter_options.h"
+#include "html_converter_init_options.h"
/* code for converters options setting. Not with format specific converter
code, since this code is called from generic converter code. */
diff --git a/tp/Texinfo/XS/convert/converter_options.h
b/tp/Texinfo/XS/convert/html_converter_init_options.h
similarity index 76%
rename from tp/Texinfo/XS/convert/converter_options.h
rename to tp/Texinfo/XS/convert/html_converter_init_options.h
index 633938a395..39006663ed 100644
--- a/tp/Texinfo/XS/convert/converter_options.h
+++ b/tp/Texinfo/XS/convert/html_converter_init_options.h
@@ -1,6 +1,6 @@
-/* converter_options.h - definitions for converter_options.c */
-#ifndef CONVERTER_OPTIONS_H
-#define CONVERTER_OPTIONS_H
+/* html_converter_init_options.h - for html_converter_init_options.c */
+#ifndef HTML_CONVERTER_INIT_OPTIONS_H
+#define HTML_CONVERTER_INIT_OPTIONS_H
#include "option_types.h"
#include "converter_types.h"