Codebase list libhx / 41aba57
Merge branch 'release/debian/3.24-1' Jörg Frings-Fürst 5 years ago
10 changed file(s) with 49 addition(s) and 37 deletion(s). Raw diff Collapse all Expand all
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.69 for libHX 3.23.
2 # Generated by GNU Autoconf 2.69 for libHX 3.24.
33 #
44 #
55 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
586586 # Identity of this package.
587587 PACKAGE_NAME='libHX'
588588 PACKAGE_TARNAME='libhx'
589 PACKAGE_VERSION='3.23'
590 PACKAGE_STRING='libHX 3.23'
589 PACKAGE_VERSION='3.24'
590 PACKAGE_STRING='libHX 3.24'
591591 PACKAGE_BUGREPORT=''
592592 PACKAGE_URL=''
593593
13411341 # Omit some internal or obsolete options to make the list less imposing.
13421342 # This message is too long to be a string in the A/UX 3.1 sh.
13431343 cat <<_ACEOF
1344 \`configure' configures libHX 3.23 to adapt to many kinds of systems.
1344 \`configure' configures libHX 3.24 to adapt to many kinds of systems.
13451345
13461346 Usage: $0 [OPTION]... [VAR=VALUE]...
13471347
14111411
14121412 if test -n "$ac_init_help"; then
14131413 case $ac_init_help in
1414 short | recursive ) echo "Configuration of libHX 3.23:";;
1414 short | recursive ) echo "Configuration of libHX 3.24:";;
14151415 esac
14161416 cat <<\_ACEOF
14171417
15261526 test -n "$ac_init_help" && exit $ac_status
15271527 if $ac_init_version; then
15281528 cat <<\_ACEOF
1529 libHX configure 3.23
1529 libHX configure 3.24
15301530 generated by GNU Autoconf 2.69
15311531
15321532 Copyright (C) 2012 Free Software Foundation, Inc.
22522252 This file contains any messages produced by compilers while
22532253 running configure, to aid debugging if configure makes a mistake.
22542254
2255 It was created by libHX $as_me 3.23, which was
2255 It was created by libHX $as_me 3.24, which was
22562256 generated by GNU Autoconf 2.69. Invocation command line was
22572257
22582258 $ $0 $@
31183118
31193119 # Define the identity of the package.
31203120 PACKAGE='libhx'
3121 VERSION='3.23'
3121 VERSION='3.24'
31223122
31233123
31243124 cat >>confdefs.h <<_ACEOF
1771917719 # report actual input values of CONFIG_FILES etc. instead of their
1772017720 # values after options handling.
1772117721 ac_log="
17722 This file was extended by libHX $as_me 3.23, which was
17722 This file was extended by libHX $as_me 3.24, which was
1772317723 generated by GNU Autoconf 2.69. Invocation command line was
1772417724
1772517725 CONFIG_FILES = $CONFIG_FILES
1778517785 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1778617786 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1778717787 ac_cs_version="\\
17788 libHX config.status 3.23
17788 libHX config.status 3.24
1778917789 configured by $0, generated by GNU Autoconf 2.69,
1779017790 with options \\"\$ac_cs_config\\"
1779117791
0 AC_INIT([libHX], [3.23])
0 AC_INIT([libHX], [3.24])
11 AC_CONFIG_AUX_DIR([build-aux])
22 AC_CONFIG_HEADERS([config.h])
33 AC_CONFIG_MACRO_DIR([m4])
0 libhx (3.24-1) unstable; urgency=medium
1
2 * New upstream release.
3
4 -- Jörg Frings-Fürst <debian@jff.email> Sun, 18 Nov 2018 14:06:24 +0100
5
06 libhx (3.23-1) unstable; urgency=medium
17
28 * New upstream release.
+0
-1
debian/files less more
0 libhx_3.23-1_source.buildinfo libs optional
0
1
2 v3.24 (2018-10-17)
3 ==================
4 Fixes:
5 - defs: avoid compiler warning when using HX_list_for_each when used in C++
6 - opt: synchronize HXOPT_AUTOHELP C behavior to C++ mode
07
18
29 v3.23 (2018-08-28)
9090 \begin_body
9191
9292 \begin_layout Title
93 libHX 3.23
93 libHX 3.24
9494 \begin_inset Newline newline
9595 \end_inset
9696
6262 }
6363
6464 #define HXlist_for_each(pos, head) \
65 for ((pos) = (head)->next; (pos) != static_cast(void *, (head)); \
65 for ((pos) = (head)->next; (pos) != static_cast(const void *, (head)); \
6666 (pos) = (pos)->next)
6767
6868 #define HXlist_for_each_rev(pos, head) \
69 for ((pos) = (head)->prev; (pos) != static_cast(void *, (head)); \
69 for ((pos) = (head)->prev; (pos) != static_cast(const void *, (head)); \
7070 (pos) = (pos)->prev)
7171
7272 #define HXlist_for_each_safe(pos, n, head) \
7373 for ((pos) = (head)->next, (n) = (pos)->next; \
74 (pos) != static_cast(void *, (head)); \
74 (pos) != static_cast(const void *, (head)); \
7575 (pos) = (n), (n) = (pos)->next)
7676
7777 #define HXlist_for_each_rev_safe(pos, n, head) \
7878 for ((pos) = (head)->prev, (n) = (pos)->prev; \
79 (pos) != static_cast(void *, (head)); \
79 (pos) != static_cast(const void *, (head)); \
8080 (pos) = (n), (n) = (pos)->prev)
8181
8282 #define HXlist_for_each_entry(pos, head, member) \
8383 for ((pos) = HXlist_entry((head)->next, __typeof__(*(pos)), member); \
84 &(pos)->member != static_cast(void *, (head)); \
84 &(pos)->member != static_cast(const void *, (head)); \
8585 (pos) = HXlist_entry((pos)->member.next, __typeof__(*(pos)), member))
8686
8787 #define HXlist_for_each_entry_rev(pos, head, member) \
8888 for ((pos) = HXlist_entry((head)->prev, __typeof__(*(pos)), member); \
89 &(pos)->member != static_cast(void *, (head)); \
89 &(pos)->member != static_cast(const void *, (head)); \
9090 (pos) = HXlist_entry((pos)->member.prev, __typeof__(*(pos)), member))
9191
9292 #define HXlist_for_each_entry_safe(pos, n, head, member) \
9393 for ((pos) = HXlist_entry((head)->next, __typeof__(*(pos)), member), \
9494 (n) = HXlist_entry((pos)->member.next, __typeof__(*(pos)), member); \
95 &(pos)->member != static_cast(void *, (head)); \
95 &(pos)->member != static_cast(const void *, (head)); \
9696 (pos) = (n), (n) = HXlist_entry((n)->member.next, __typeof__(*(n)), \
9797 member))
9898
253253 # define HXOPT_TABLEEND {.type = HXTYPE_XSNTMARK}
254254 #else
255255 # define HXOPT_AUTOHELP \
256 {NULL, '?', HXTYPE_XHELP, NULL, NULL, HX_getopt_help_cb, \
257 0, "Show this help message"}
256 {"help", '?', HXTYPE_XHELP, NULL, NULL, HX_getopt_help_cb, \
257 0, "Show this help message"}, \
258 {"usage", 0, HXTYPE_NONE, NULL, NULL, HX_getopt_usage_cb, \
259 0, "Display brief usage message"}
258260 # define HXOPT_TABLEEND {NULL, 0, HXTYPE_XSNTMARK}
259261 #endif
260262
303303 buf[i++] = opt->sh;
304304 if (!takes_void(opt->type))
305305 i += snprintf(buf + i, len - i, " %s", htyp);
306 } else if (opt->sh == '\0') {
307 if (takes_void(opt->type))
308 i += snprintf(buf + i, len - i,
309 "--%s", opt->ln);
310 else
311 i += snprintf(buf + i, len - i,
312 "--%s=%s", opt->ln, htyp);
306313 } else {
307 if (opt->sh == '\0') {
308 if (takes_void(opt->type))
309 i += snprintf(buf + i, len - i,
310 "--%s", opt->ln);
311 else
312 i += snprintf(buf + i, len - i,
313 "--%s=%s", opt->ln, htyp);
314 } else {
315 if (takes_void(opt->type))
316 i += snprintf(buf + i, len - i, "-%c%s--%s",
317 opt->sh, alt, opt->ln);
318 else
319 i += snprintf(buf + i, len - i, "-%c%s--%s%c%s",
320 opt->sh, alt, opt->ln, equ, htyp);
321 }
314 if (takes_void(opt->type))
315 i += snprintf(buf + i, len - i, "-%c%s--%s",
316 opt->sh, alt, opt->ln);
317 else
318 i += snprintf(buf + i, len - i, "-%c%s--%s%c%s",
319 opt->sh, alt, opt->ln, equ, htyp);
322320 }
323321
324322 if (flags & W_BRACKET)