]> git.draconx.ca Git - dxcommon.git/log
dxcommon.git
5 months agohelp_print_desc: Simplify implementation.
Nick Bowler [Tue, 5 Dec 2023 01:55:43 +0000 (20:55 -0500)]
help_print_desc: Simplify implementation.

Simplify the way this function works by basing the loop around strcspn.

There is a slight change of behaviour when called with i==0 and an empty
description.   Previously, no newline was printed.  Now, a newline is
printed.  I think the original behaviour was a mistake as it does not
make much sense (and this function serves no real purpose unless i is
nonzero).  The tests are updated to expect this behaviour change.

As a bonus, we no longer tickle a problem with some ancient systems
(e.g., ULTRIX 4.5) which have a printf that doesn't support a negative
precision argument to mean "default precision".  This problem actually
has no coverage in the test suite, so fix that up too.

5 months agogen-strtab.awk: Allow repeated whitespace in one-line strings.
Nick Bowler [Tue, 5 Dec 2023 01:36:17 +0000 (20:36 -0500)]
gen-strtab.awk: Allow repeated whitespace in one-line strings.

The documentation says that, for a one-line string, all whitespace
immediately following the identifier is deleted.

It does not say that anything happens to other withespace on the line,
but it turns out that consecutive sequences of whitespace are replaced
by a single space.  This is unexpected.

Fix up the script so that doesn't happen, and add a test for this.

5 months agogen-strtab.awk: Work around weird ULTRIX nawk bug.
Nick Bowler [Sun, 3 Dec 2023 06:04:21 +0000 (01:04 -0500)]
gen-strtab.awk: Work around weird ULTRIX nawk bug.

ULTRIX 4.5 nawk has a weird bug where it seems to sometimes "forget" the
length of $0 after it has been modified, when assigning the modified
value directly to a named variable.  For example:

  % echo x | nawk '{ $0 = "hello"; x = $0; print x "rld"; }'
  hrld
  % echo xx | nawk '{ $0 = "hello"; x = $0; print x "rld"; }'
  herld

The bug does not occur if there is an intervening assignment to any of
the field variables, or if the assignment is made slightly more complex,
or if any other variable is used:

  % echo x | nawk '{ $0 = "hello"; $1 = $1; x = $0; print x "rld"; }'
  hellorld
  % echo x | nawk '{ $0 = "hello"; x = "" $0; print x "rld"; }'
  hellorld
  % nawk 'BEGIN { z = "hello"; x = z; print x "rld"; }' z=x
  hellorld

So there are many easy workarounds.

5 months agogen-options.awk: Don't pass ERE to split().
Nick Bowler [Sun, 3 Dec 2023 05:52:53 +0000 (00:52 -0500)]
gen-options.awk: Don't pass ERE to split().

Strange behaviour is observed on ULTRIX 4.5 nawk when passing a
literal ERE as the fs argument to the split function.  There is
no problem passing an equivalent string instead.

5 months agoExplicitly test for empty strings in awk scripts.
Nick Bowler [Sun, 3 Dec 2023 05:36:52 +0000 (00:36 -0500)]
Explicitly test for empty strings in awk scripts.

ULTRIX 4.5 nawk does not treat arbitrary nonempty strings as "true"
in boolean contexts; they appear to be converted to integers and
compared against zero, which means most nonempty strings are false.
Easy enough to work around.

5 months agoAvoid local array parameters in awk scripts.
Nick Bowler [Sun, 3 Dec 2023 05:21:49 +0000 (00:21 -0500)]
Avoid local array parameters in awk scripts.

ULTRIX 4.5 nawk appears to not support local array parameters on user-
defined functions (it is OK for array arguments passed by the caller).
Things seems to work on the first call but on the second call the array
is not empty and other weird behaviours occur.

Using a global array instead seems OK and avoids the problem.

5 months agoRework backslash substitutions in awk scripts.
Nick Bowler [Sun, 3 Dec 2023 04:13:24 +0000 (23:13 -0500)]
Rework backslash substitutions in awk scripts.

It appears that even using plain "\\" in a replacement string for sub
and gsub is still problematic.  Most awks handle this OK (returning a
literal backslash) provided the next character is not a backslash, but
on ULTRIX 4.5 nawk eats the next character regardless and interprets
it as a backslash-escape sequence, oops.

So let's try something a bit different.  We can ask awk what it does
with "\\\\", and use either "\\\\" or "\\" depending on the answer.

Hopefully this actually works everywhere.

5 months agoInclude AT_INIT bugfix monkey patch in the testsuite.
Nick Bowler [Sun, 3 Dec 2023 03:47:29 +0000 (22:47 -0500)]
Include AT_INIT bugfix monkey patch in the testsuite.

I keep running into this stupid bug where AT_CHECK uses redirections on
: and this fails on certain shells[1].  Maybe one day it will be fixed
upstream.  We already have a workaround but the dxcommon test suite is
not using it... easily solved.

[1] https://lists.gnu.org/archive/html/autoconf-patches/2021-03/msg00000.html

5 months agoDX_GNULIB_SYMFILES: Don't use -v option with awk.
Nick Bowler [Sun, 3 Dec 2023 03:37:12 +0000 (22:37 -0500)]
DX_GNULIB_SYMFILES: Don't use -v option with awk.

Some older awks (e.g., ULTRIX 4.5 nawk) don't accept the "-v" option.
It is not actually needed here so easy enough to just change it.

5 months agoAdd a script to embed config.h into installed headers.
Nick Bowler [Sun, 3 Dec 2023 03:33:49 +0000 (22:33 -0500)]
Add a script to embed config.h into installed headers.

When installing a library, sometimes it is difficult to avoid that
certain aspects of the interface depend on the build configuration.

While it is possible use configuration header templates to create
reasonably installable header files, this script enables a different
approach: just write code (mostly) normally and then patch up any
configuration macro references at install time.

5 months agogl-patches: Stub out gl_CC_GNULIB_WARNINGS.
Nick Bowler [Fri, 1 Dec 2023 05:46:35 +0000 (00:46 -0500)]
gl-patches: Stub out gl_CC_GNULIB_WARNINGS.

We don't need these pointless additional configure tests when using
newer gnulib (this trick imported from rrace).

5 months agoAdd a helper macro for gnulib monkey patches.
Nick Bowler [Fri, 1 Dec 2023 02:31:06 +0000 (21:31 -0500)]
Add a helper macro for gnulib monkey patches.

Certain gnulib patches can be applied directly at m4 time, which
makes it pretty simple to share between projects, and should be a
bit more robust than e.g., patching conditional dependencies in
bootstrap scripts.

5 months agoAdd a configure test for C99-ish "for" declarations.
Nick Bowler [Thu, 30 Nov 2023 01:33:29 +0000 (20:33 -0500)]
Add a configure test for C99-ish "for" declarations.

Several C89-era compilers support for loop declarations (although
I'm not sure if they implement C99 block scoping rules exactly and
this new macro doesn't check for that).

It is generally easy to simply not use this feature, so conditional
compilation based on its presence is of limited utility.  But it can
sometimes be handy to know when (optionally) including third-party
code that depends on this syntax.

The test is short-circuited based on Autoconf's C version probes, which
requires an annoying amount of complexity because Autoconf 2.70 has
totally broken C99 detection and Autoconf 2.71 includes incompatible
changes to previously-documented behaviour.

5 months agogettext.mk: Rewrite rules with less forking.
Nick Bowler [Tue, 21 Nov 2023 05:20:26 +0000 (00:20 -0500)]
gettext.mk: Rewrite rules with less forking.

Use a pure shell solution to parse the .mo filenames instead
of forking out to expr, and don't use subshells with "set -x"
to print commands when we can almost as easily use plain echo.

5 months agogettext.mk: Fix installation rules with some shells.
Nick Bowler [Tue, 21 Nov 2023 03:57:23 +0000 (22:57 -0500)]
gettext.mk: Fix installation rules with some shells.

The following syntax is not portable to certain shells:

  for f in ; do stuff; done

When no translations are installed, a command just like this is
generated in the installation rules.  Instead of doing nothing
as desired, HP-UX 11 /bin/sh, heirloom-sh, and presumably also
old Solaris /bin/sh will exit with an error.

To work around this problem, we can stuff the list into a shell
variable and then use that in the for loop.

5 months agotests: Add some coverage of the gettext.mk snippet.
Nick Bowler [Tue, 21 Nov 2023 03:42:33 +0000 (22:42 -0500)]
tests: Add some coverage of the gettext.mk snippet.

There is zero test coverage of this snippet, add a new test case to
executes these rules in various ways.  As with other test cases, one
can set TEST_SHELL in the environment to test the behaviour with a
particular shell.  The astute reader may notice that the rules do
not work with some shells...

5 months agofix-gnulib: Restore compatibility with perl 5.8.
Nick Bowler [Sat, 18 Nov 2023 20:54:56 +0000 (15:54 -0500)]
fix-gnulib: Restore compatibility with perl 5.8.

The //= operator was added in perl 5.10.  The benefit of using it in
this script is way too slight to be worth losing compatibility.

5 months agopack: Fix 64-bit tests on old HP cc.
Nick Bowler [Sat, 18 Nov 2023 20:45:20 +0000 (15:45 -0500)]
pack: Fix 64-bit tests on old HP cc.

At least some versions of the HP compiler appear to require "ll" suffix,
otherwise the decimal constants end up as a 32-bit type.

5 months agopack: Improve 64-bit detection.
Nick Bowler [Sat, 18 Nov 2023 20:28:10 +0000 (15:28 -0500)]
pack: Improve 64-bit detection.

HP-UX 11.11 does not provide (U)LLONG_MAX in <limits.h>, but does provide
(U)LONG_LONG_MAX.  Tweak the check to find this, and also accept the
Autoconf-provided HAVE_LONG_LONG_INT so things just work if that is
used.

5 months agotests: Improve portability for perl script tests.
Nick Bowler [Sat, 18 Nov 2023 07:40:51 +0000 (02:40 -0500)]
tests: Improve portability for perl script tests.

Older versions of perl do not recognize the "-f" option, which I think
was just used by mistake anyway, so we can just remove it.

Sed commands like /foo/{g;p} are not portable; POSIX requires it to be
written like:

  /foo/{
  g
  p
  }

HP-UX 11 sed does not interpret "-f -" to mean "read the script from
standard input", as intended; it looks for a file called - instead.
There is little reason to do this, we can just quote the script
normally.

Fixing all this allows the tests to run on HP-UX 11.

5 months agogen-strtab.awk: Work around HP-UX shell bug in test case.
Nick Bowler [Fri, 17 Nov 2023 08:03:42 +0000 (03:03 -0500)]
gen-strtab.awk: Work around HP-UX shell bug in test case.

On HP-UX /bin/sh, redirections on "read" in a subshell can drop some
input on the floor.  Since Autotest runs many things in subshells, we
hit this when trying to construct the program to dump the string table.

Rearranging the code to use only a single redirection works around
the problem.

5 months agohelp: Fix NLS test on HP-UX 11.
Nick Bowler [Fri, 17 Nov 2023 05:28:11 +0000 (00:28 -0500)]
help: Fix NLS test on HP-UX 11.

This system has a "C.utf8" locale which appears disfunctional, all
other utf8 locales are OK.  So change the locale probe to avoid this
one if possible.

The HP-UX shell also seems to have some trouble with UTF-8 (especially
if the user set this C.utf8 locale where it just barfs on everything),
so rework the test to not involve the shell trying to decode strings.

5 months agogen-options.awk: Fix test with older gettext.
Nick Bowler [Fri, 17 Nov 2023 04:17:22 +0000 (23:17 -0500)]
gen-options.awk: Fix test with older gettext.

Really old versions of xgettext do not support msgctx, but they do
produce _some_ output so the test is not skipped, just fails.

Enhance the xgettext probe to skip the test with these old versions, and
split it into two so we can still get a proper pass result for the rest.

5 months agocopysym: Avoid dependency on <stdint.h>
Nick Bowler [Fri, 17 Nov 2023 04:07:34 +0000 (23:07 -0500)]
copysym: Avoid dependency on <stdint.h>

The <inttypes.h> header is older and a bit more portable.  But even
then, it is not really essential for this code.  So adjust things to
use <inttypes.h> only if the Autoconf-provided HAVE_INTTYPES_H is
defined; otherwise a C89 <limits.h>-based fallback is used.

5 months agoPartially fix "make distcheck".
Nick Bowler [Fri, 17 Nov 2023 03:12:41 +0000 (22:12 -0500)]
Partially fix "make distcheck".

It is helpful to build a distribution package to run tests on other
machines, which may not have full development toolsets available.

This packages things up so at least the compilation part of distcheck
succeeds.

5 months agohelp: Allow tests to build/run without <getopt.h>
Nick Bowler [Fri, 17 Nov 2023 02:29:27 +0000 (21:29 -0500)]
help: Allow tests to build/run without <getopt.h>

We only need a suitable definition of struct option in order to build
the tests; this can be provided by a stub header if the system does not
provide it.

5 months agohelp_print_optstring: Don't depend on snprintf.
Nick Bowler [Thu, 16 Nov 2023 01:33:31 +0000 (20:33 -0500)]
help_print_optstring: Don't depend on snprintf.

The current code calls snprintf unconditionally, even if NLS is disabled
(although the function is not called, the code is still compiled), so it
won't build in environments which lack this function.

For the NLS-enabled case we can rely on the GNU libintl fallback being
available as required.

Otherwise we can just provide a stub to ensure the dead code compiles,
and for the NLS test programs hack in sprintf as a replacement which
should work just fine.

5 months agohelp_print_optstring: Test fullwidth/halfwidth character output.
Nick Bowler [Thu, 16 Nov 2023 01:04:16 +0000 (20:04 -0500)]
help_print_optstring: Test fullwidth/halfwidth character output.

This function is supposed to support proper alignment with translated
strings possibly containing fullwidth characters, but we have no
test coverage of that aspect whatsoever.

Let's try to have at least some basic tests, which is made a bit
tricky since Autotest/m4sh busts the locale (but we can work around
this problem).

9 months agoAdd a configure test for syslog support.
Nick Bowler [Sat, 29 Jul 2023 00:07:28 +0000 (20:07 -0400)]
Add a configure test for syslog support.

10 months agotest-tap: Fix Solaris /bin/sh "prove: not found" on stderr.
Nick Bowler [Sat, 1 Jul 2023 21:32:57 +0000 (17:32 -0400)]
test-tap: Fix Solaris /bin/sh "prove: not found" on stderr.

The prove command is intended to be optional, just to display a summary
of the test result if it is available.  However, on old Solaris /bin/sh,
our command

  prove ... 2>&1

doesn't redirect the error message from the shell when prove is not
found.  We can use a command like like

  { prove ...; } 2>&1

instead, which does redirect the error.

10 months agotest-tap: Use m4_require to pull in global definitions.
Nick Bowler [Sat, 1 Jul 2023 20:53:08 +0000 (16:53 -0400)]
test-tap: Use m4_require to pull in global definitions.

We can use the m4_require machinery to pull in the PREPARE_TESTS bits,
so they only get included if/when the TEST_TAP macro is actually used.

10 months agoAdd helper to work around Solaris /bin/sh bug in Autotest.
Nick Bowler [Sat, 1 Jul 2023 20:38:06 +0000 (16:38 -0400)]
Add helper to work around Solaris /bin/sh bug in Autotest.

This hackjob edits the definition of AT_INIT to fix the problem
described in this patch[1], even for versions of Autoconf which
do not include this fix (which, as of this writing, is all of
them).

Specifically, older Solaris /bin/sh does not correctly handle
redirections on : within a shell function, but Autotest test
suites expect this to work when preparing the environment
for AT_CHECK.

[1] https://lists.gnu.org/archive/html/autoconf-patches/2021-03/msg00000.html

10 months agocopysym: Fix pointer qualifier mismatch.
Nick Bowler [Fri, 16 Jun 2023 04:01:35 +0000 (00:01 -0400)]
copysym: Fix pointer qualifier mismatch.

The "const void *" in the search function can't be directly assigned to
the "const char (*)[5]" variable, due to the differently-qualified
pointer target types.  Let's just cast off that qualifier, shall we?

10 months agoMove TAP testsuite macros into snippets.
Nick Bowler [Tue, 13 Jun 2023 01:14:19 +0000 (21:14 -0400)]
Move TAP testsuite macros into snippets.

That way we can share these macros more easily.  Furthermore, merge in
some compatibility improvements w/ old perl that were implemented in
rrace.

10 months agotap: Include <config.h> as needed.
Nick Bowler [Tue, 13 Jun 2023 01:01:27 +0000 (21:01 -0400)]
tap: Include <config.h> as needed.

When using a config header in Autoconf, it is necessary to #include
that header before including anything else that might be influenced
by configure tests, which includes standard C headers.

In particular, things can go completely off the rails if Gnulib is
involved and generates replacements for the standard headers used
by this file.

11 months agocopysym: Avoid including xtra.h.
Nick Bowler [Tue, 30 May 2023 00:35:15 +0000 (20:35 -0400)]
copysym: Avoid including xtra.h.

Using the xtra.h header just for the arraysize macro is just added
complexity for downstream projects (who then need to ensure the xtra.h
header is distributed even if they don't otherwise need it).

11 months agoAdd a dedicated function to emit the copyright symbol.
Nick Bowler [Sat, 27 May 2023 00:56:45 +0000 (20:56 -0400)]
Add a dedicated function to emit the copyright symbol.

This is intended to replace gnulib's str_iconv function in programs
when the only use of that function is to generate a copyright symbol
for output.  This implementation should be much more compact.

12 months agohelp_print_desc: Ensure newline is printed for empty description.
Nick Bowler [Thu, 13 Apr 2023 01:11:38 +0000 (21:11 -0400)]
help_print_desc: Ensure newline is printed for empty description.

Callers expect help_print_desc to always end on a new line, so that the
next option can be printed at the start of a new line.  Currently,
however, this function does nothing for an empty description string,
leading to incorrect output unless the option name was long enough
that help_print_optstring took care of it.

Add a special case to fix that up, and a new test case.

15 months agogen-strtab.awk: Add an option to suppress object definitions.
Nick Bowler [Thu, 26 Jan 2023 02:06:21 +0000 (21:06 -0500)]
gen-strtab.awk: Add an option to suppress object definitions.

Defining objects in the generated header can make some usage more
difficult.  Add an option which defines a macro instead, allowing
the user to control definitions.

15 months agoUse AC_PROG_AWK and $AWK in DX_LINGUAS.
Nick Bowler [Tue, 24 Jan 2023 04:21:42 +0000 (23:21 -0500)]
Use AC_PROG_AWK and $AWK in DX_LINGUAS.

The awk script used internally by this macro does not work on traditional
awk, such as old Solaris /bin/awk.  Use $AWK to get a better awk.

To avoid similar problems in the future, arrange for tests to be run
with a busted "awk" command in PATH, so only $AWK will work at all.

15 months agoxtra: Avoid undefined ## usage.
Nick Bowler [Mon, 23 Jan 2023 04:34:16 +0000 (23:34 -0500)]
xtra: Avoid undefined ## usage.

According to the C spec, every use of the ## operator has to produce a
valid preprocessing token, otherwise the behaviour is undefined.  It is
not enough to merely ensure that a sequence of ## operators results in
a valid token at the end.

This matters in practice, as at least some versions of the Sun Studio
compiler will turn:

  #define PASTE(a, b) a ## b
  #define PASTE2(a, b) PASTE(a, b)

  PASTE2(uint_least, PASTE(8, _t))

into two tokens:

  uint_least8 _t

instead of uint_least8_t as desired.  The results are not good for
the XTRA_PACKED_LOPTS macro.  Fortunately, it is straightforward to
rearrange the expansions to avoid this problem.

15 months agotests: Don't use AT_TESTED for optional build tools.
Nick Bowler [Mon, 23 Jan 2023 04:31:24 +0000 (23:31 -0500)]
tests: Don't use AT_TESTED for optional build tools.

Turns out that AT_TESTED causes a hard failure if a listed tool is not
installed.  This makes it useless to get version numbers recorded for
build tools that may or may not be available, so I guess we just have
to code that up explicitly.

15 months agotests: Generate gen-options.awk expected output better.
Nick Bowler [Mon, 23 Jan 2023 04:23:52 +0000 (23:23 -0500)]
tests: Generate gen-options.awk expected output better.

In the main test group for gen-options.awk, various combinations of
sed and shell line noise are used to create the expected output.

It turns out that at least some versions of Solaris /bin/sed don't
accept patterns like [^\n] as meaning "any character other than
newline", which causes this line noise to fail.  We could perhaps
use /usr/xpg4/bin/sed instead which seems to not have this specific
problem, but let's just do everything in awk which is much simpler.

15 months agotests: Add missing returns test programs.
Nick Bowler [Mon, 23 Jan 2023 04:14:16 +0000 (23:14 -0500)]
tests: Add missing returns test programs.

Failing to "return" from main is well-defined in C99, but older
implementations will have undefined results.  Easily solved.

16 months agoAdd a helper macro to use the new gen-options packed format.
Nick Bowler [Sun, 8 Jan 2023 05:32:22 +0000 (00:32 -0500)]
Add a helper macro to use the new gen-options packed format.

Abstract some of the boilerplate into a new macro.  The gen-options.awk
is augmented to also give the packed format width as a power of two
(8/16/32/64).  Other than that we can use all the existing definitions
to make this common code in a new "xtra.h" header file.

16 months agogen-options.awk: Work around busybox regex bug.
Nick Bowler [Sun, 8 Jan 2023 04:19:18 +0000 (23:19 -0500)]
gen-options.awk: Work around busybox regex bug.

It appears that busybox awk does not recognize \] in a character class,
interpreting the backslash literally and taking the ] as the end of the
character class:

  % printf '%s\n' ']' '\]' | busybox awk '/^[\]]$/ { print; }'
  \]

  % printf '%s\n' ']' '\]' | gawk '/^[\]]$/ { print; }'
  ]

Busybox does accept []] as meaning "] is part of the character class",
but this syntax is not portable to heirloom (and presumably also Solaris
10) awk, which only works with [\]].  GNU awk accepts either form.

So instead, let's avoid this problematic construct entirely by writing
the test in a different way.

16 months agogen-options.awk: Fix generated help text under mawk.
Nick Bowler [Sun, 8 Jan 2023 04:14:56 +0000 (23:14 -0500)]
gen-options.awk: Fix generated help text under mawk.

It appears that the following construction is not portable:

  % gawk 'BEGIN { a[0] = 0 in a ? 54 : 42; print a[0]; }'
  42

  % mawk 'BEGIN { a[0] = 0 in a ? 54 : 42; print a[0]; }'
  54

In gen-options.awk, this results in results in bogus leading newlines
added to the help text.  It is easy enough to restructure the code
to not do that, separating the test from the assignment.

16 months agogen-options.awk: Add a more compact data representation.
Nick Bowler [Sun, 8 Jan 2023 02:14:10 +0000 (21:14 -0500)]
gen-options.awk: Add a more compact data representation.

Add a new set of macros that can be used to encode the long options
array as integers, which is possible provided that the "action"
feature is not used.  In addition to reducing the size of the
static array, it should be helpful to avoid relocations in
position-independent executables and improve data sharing.

16 months agogen-strtab.awk: Work around portability problems with \\\\.
Nick Bowler [Wed, 4 Jan 2023 03:41:58 +0000 (22:41 -0500)]
gen-strtab.awk: Work around portability problems with \\\\.

It seems that mawk, and also gawk in POSIX mode, handle backslashes
in the (g)sub replacement strings strangely.  For example:

  % echo 'hello' | mawk '{ sub(/e/, "\\\\"); print }'
  h\llo

  % echo 'hello' | gawk '{ sub(/e/, "\\\\"); print }'
  h\\llo

  % echo 'hello' | POSIXLY_CORRECT=1 gawk '{ sub(/e/, "\\\\"); print }'
  h\llo

This causes errors when the script tries to use gsub to restore
the double backslashes on these implementations.  There seems to
be no trouble substiting "\\" to get a single backslash, so we
can work around the problem by doubling up the characters being
replaced instead (which additionally requires an adjustment to
the length calculations to reverse this).

16 months agogen-strtab.awk: Work around parse issue on HP-UX 11.
Nick Bowler [Wed, 4 Jan 2023 02:19:09 +0000 (21:19 -0500)]
gen-strtab.awk: Work around parse issue on HP-UX 11.

HP-UX 11 awk seems to have some issues parsing ! in expressions.
For example:

  % awk 'BEGIN { print 1 + !0 }'
  syntax error The source line is 1.
  The error context is
BEGIN { print 1 + >>>  ! <<< 0 }
  awk: The statement cannot be correctly parsed.
  The source line is 1.

Adding parentheses appers sufficient to avoid the problem:

  % awk 'BEGIN { print 1 + (!0) }'
  2

16 months agogen-strtab.awk: Add a feature to disable l10n markings.
Nick Bowler [Tue, 3 Jan 2023 04:08:00 +0000 (23:08 -0500)]
gen-strtab.awk: Add a feature to disable l10n markings.

Preceding an identifier with two ampersands now causes the output to
not include the N_ macro for that string, so xgettext won't pick it up.
This enables creating a mixed string table with some strings marked as
translatable and others not.

16 months agogen-strtab.awk: Add options to tweak the output.
Nick Bowler [Tue, 3 Jan 2023 02:31:45 +0000 (21:31 -0500)]
gen-strtab.awk: Add options to tweak the output.

Add a @nozero option to ensure all strings have non-zero offsets
into the strtab.

17 months agoDX_PROG_MD5: direct probing error messages to the log file.
Nick Bowler [Fri, 18 Nov 2022 03:00:27 +0000 (22:00 -0500)]
DX_PROG_MD5: direct probing error messages to the log file.

Otherwise we can get a bunch of garbage printed to the terminal when
configuring on some systems.

17 months agoAdd a macro to probe -mwindows on MinGW.
Nick Bowler [Fri, 18 Nov 2022 02:55:34 +0000 (21:55 -0500)]
Add a macro to probe -mwindows on MinGW.

MinGW is typically configured to build console applications by default.
So in order to build a normal Windows GUI application, this flag is
needed when linking.  Otherwise, a console window will be opened when
the program is run.

Other Windows compilers probably have similar options which can added to
the probe in the future.

22 months agogen-tree.awk: Allow simple '#' comments.
Nick Bowler [Sat, 18 Jun 2022 01:33:07 +0000 (21:33 -0400)]
gen-tree.awk: Allow simple '#' comments.

22 months agogen-tree.awk: Add options to tweak the strtab output.
Nick Bowler [Sat, 18 Jun 2022 01:29:28 +0000 (21:29 -0400)]
gen-tree.awk: Add options to tweak the strtab output.

Add a @nostrtab option to disable the string table output in tree
generation, and make it possible to omit the node identifiers from
the initializers.

23 months agoAdd some curses-related feature tests.
Nick Bowler [Tue, 7 Jun 2022 03:56:03 +0000 (23:56 -0400)]
Add some curses-related feature tests.

Add helper macros to check the existence of specific functions in the
curses library, and also a helper to check for mouse support functions.

23 months agoAdd library test for curses.
Nick Bowler [Sun, 5 Jun 2022 15:59:13 +0000 (11:59 -0400)]
Add library test for curses.

23 months agoAdd missing file for autotest snippet test.
Nick Bowler [Wed, 8 Jun 2022 01:50:06 +0000 (21:50 -0400)]
Add missing file for autotest snippet test.

The test for --disable-dependency-tracking depends on a mock autotest
command but I apparently failed to commit that script.

2 years agoexported.sh: Work around DJGPP shell redirection bug.
Nick Bowler [Thu, 21 Apr 2022 05:29:22 +0000 (01:29 -0400)]
exported.sh: Work around DJGPP shell redirection bug.

In DJGPP's bash port, it seems that redirections of the form

  /absolute/path/to/program 3>&-

result in the file descriptor being closed for the whole shell,
rather than just for the one command as expected.  Since some of
the configure substitutions into exported.sh can be absolute paths,
this causes failures.

Using a different command syntax avoids this problem.  For example,

  { /absolute/path/to/program; } 3>&-

appears to work as expected.  Adjust the exported.sh.in snippet to
do just that.  There is still one redirection error message printed
to stderr by DJGPP bash but it appears spurious at first glance.
All the redirections now appear to be working properly and the
script output looks good.

2 years agoexported.sh: Restructure argument processing a bit.
Nick Bowler [Thu, 21 Apr 2022 05:23:05 +0000 (01:23 -0400)]
exported.sh: Restructure argument processing a bit.

Adjust the script to iterate over arguments using a for loop instead of
repeatedly checkind $# and shifting.  More significantly, avoid calling
expr on each filename where a case pattern can do the job.

Additionally, add a new test case to verify the basic sanity of this
script and its corresponding Autoconf macro.

2 years agoFix autotest snippet with --disable-dependency-tracking.
Nick Bowler [Sat, 26 Mar 2022 03:58:29 +0000 (23:58 -0400)]
Fix autotest snippet with --disable-dependency-tracking.

When configuring with --disable-dependency-tracking, the .deps
directories are not created by config.status so unconditionally
creating files in there will not work.

We can avoid this problem by adjusting the rule to skip updating
testsuite.P in this configuration.  Add a new test case to expose
the issue.

2 years agoFix glconfig with --disable-dependency-tracking.
Nick Bowler [Thu, 24 Mar 2022 02:22:50 +0000 (22:22 -0400)]
Fix glconfig with --disable-dependency-tracking.

When configuring with --disable-dependency-tracking, the .deps
directories are not created by config.status so unconditionally
creating files in there will not work.

Making the dependency file generation conditional will avoid this
problem.  Add a new test case to cover this issue.

2 years agofix-gnulib: Ensure header rules create output directory.
Nick Bowler [Thu, 24 Mar 2022 01:31:06 +0000 (21:31 -0400)]
fix-gnulib: Ensure header rules create output directory.

Normally there is no problem, but when performing a VPATH builds
with --disable-dependency-tracking the "lib" directory does not get
created by configure and some of the rules that create header files
will fail.

It seems recent versions of Gnulib have a potential solution for this
particular problem but is easy enough to patch it up here too.

2 years agofix-gnulib: Drop silly libgnu warning options.
Nick Bowler [Sun, 27 Feb 2022 01:21:42 +0000 (20:21 -0500)]
fix-gnulib: Drop silly libgnu warning options.

We really don't care about upstream's choice of build warning flags.
All pushing this on downstream users does is massively inflate generated
makefiles for no actual benefit.

2 years agofix-ltdl: Fix LIBOBJ mangling to work with automake-1.16.
Nick Bowler [Sat, 26 Feb 2022 22:55:30 +0000 (17:55 -0500)]
fix-ltdl: Fix LIBOBJ mangling to work with automake-1.16.

Apparently automake 1.16 changed how object files in a subdirectory are
named when using subdir-objects.  As the generated rules to copy compiled
objects to the ltdl_LTLIBOBJ substituted names, these rules are now failing
on current automake.

Fix this by explicitly setting a _SHORTNAME for the dummy libobj library,
which explicitly sets the name to use and thus it will be consistent
between different Automake versions.

Add new test cases to verify this behaviour.

2 years agofix-ltdl: Fix order-only hack with HP-UX make.
Nick Bowler [Sat, 26 Feb 2022 20:26:58 +0000 (15:26 -0500)]
fix-ltdl: Fix order-only hack with HP-UX make.

HP-UX make gets confused by the space in $(findstring ...,$(...))
syntax: instead of expanding to the empty string as desired, it
mismatches the parentheses and we are left with a single ).  E.g.:

  % cat >Makefile <<'EOF'
  all:
@echo '$(a $(b))'
EOF
  % make
  )

Since $(x) and ${x} are equivalent in Make, a neat solution is to
just replace one set of parentheses with braces; now there are no
nested parentheses to mismatch in the first place.

2 years agohelp_print_optstring: Fix handling of 'flag' options.
Nick Bowler [Thu, 24 Feb 2022 01:47:55 +0000 (20:47 -0500)]
help_print_optstring: Fix handling of 'flag' options.

When getopt_long options use the 'flag' feature, the 'val' member is
not meaningful as a short option.  So we shouldn't try to format it
as if there is a short option, as this leads to printing garbage.

2 years agofix-gnulib: Patch %reldir% too.
Nick Bowler [Thu, 24 Feb 2022 01:41:35 +0000 (20:41 -0500)]
fix-gnulib: Patch %reldir% too.

Gnulib has recently started producing rules using %reldir%.  This
is cool but since we are postprocessing the automake fragment anyway,
we can easily substitute %reldir% ourselves which avoids requiring
newer Automake just for this.

2 years agofix-gnulib: Fix pattern for variable mangling.
Nick Bowler [Thu, 24 Feb 2022 01:29:23 +0000 (20:29 -0500)]
fix-gnulib: Fix pattern for variable mangling.

Recently, gnulib outputs variables named like SED_HEADER_xxx which do
not contain filenames but are matched by the (unnecessarily broad)
pattern for which variables need substitution.

Fix that up and include a test case to reproduce the issue.

2 years agoAdd object prefixing option for DX_GNULIB_SYMFILES.
Nick Bowler [Sat, 19 Feb 2022 22:56:28 +0000 (17:56 -0500)]
Add object prefixing option for DX_GNULIB_SYMFILES.

This is needed to avoid an Automake limitation when mixing libtool
and non-libtool builds of the same source files.  This prefix should
match the object renaming done by Automake when the subdir-objects
option is used.

2 years agoFix DX_GNULIB_SYMFILES usage in VPATH builds.
Nick Bowler [Sat, 19 Feb 2022 03:09:15 +0000 (22:09 -0500)]
Fix DX_GNULIB_SYMFILES usage in VPATH builds.

A typo in the configure commands prevented VPATH builds from working
as expected.  Fix that and add a small test case to verify such builds.

2 years agofix-gnulib: Reduce build-time impact of symbol renaming.
Nick Bowler [Wed, 16 Feb 2022 03:22:59 +0000 (22:22 -0500)]
fix-gnulib: Reduce build-time impact of symbol renaming.

Often a package will use more gnulib modules than actually needed by a
library, with included utilities also making use of portability features
provided by gnulib.

With symbol renaming computed over all objects, as well as linking
everything into both libraries and programs, this leads to compiling
every required gnulib source 3 times, ouch!  And due to how libtool
convenience libraries work, the unused modules are probably wasting
space in the library to boot.

We can do better.

We can partition the gnulib objects into two groups: those that are
needed by the library (and thus require symbol renaming) and the rest
which are only needed by programs.  Only the first group needs any
special treatment.  The others can be put into an ordinary static
library which is not installed.

A new macro, DX_GNULIB_SYMFILES, provides the machinery to do this.

2 years agoImplement the -a and -v options in join.awk.
Nick Bowler [Tue, 15 Feb 2022 06:04:17 +0000 (01:04 -0500)]
Implement the -a and -v options in join.awk.

So now users of DX_PROG_JOIN can use these options.  Two is better
than none!

2 years agoCheck for stray configure output.
Nick Bowler [Sun, 30 Jan 2022 03:02:47 +0000 (22:02 -0500)]
Check for stray configure output.

Instead of ignoring all configure output in tests, we can use the
--quiet option to suppress informational messages and then ensure
the output is empty.  This should catch stray output from macros.

2 years agoAdd "join" detection macro.
Nick Bowler [Sun, 30 Jan 2022 01:48:17 +0000 (20:48 -0500)]
Add "join" detection macro.

It seems that unconditional use of "join" is not portable.  Alpine
Linux, for example, does not include it.  Add a macro which detects
whether join exists and works, with a fallback to an (incomplete)
awk implementation of the tool.

2 years agohelp: Include <locale.h> if NLS is enabled.
Nick Bowler [Wed, 24 Nov 2021 01:45:02 +0000 (20:45 -0500)]
help: Include <locale.h> if NLS is enabled.

It seems gettext.h, at least the version in gnulib, expects LC_MESSAGES
to be available in some scenarios but does not include <locale.h> which
provides it.

2 years agohelp_print_desc: Allow NULL option to disable localisation.
Nick Bowler [Tue, 23 Nov 2021 02:54:58 +0000 (21:54 -0500)]
help_print_desc: Allow NULL option to disable localisation.

This enables the block-indenting functionality to be used in
other contexts.

2 years agoAdd a script to generate constant tree structures.
Nick Bowler [Thu, 7 Oct 2021 04:46:33 +0000 (00:46 -0400)]
Add a script to generate constant tree structures.

This can be useful for generating compact compile-time representations
of menus or whatever else comes to mind.

2 years agohelp: Add a single-dash long option mode.
Nick Bowler [Thu, 30 Sep 2021 01:58:46 +0000 (21:58 -0400)]
help: Add a single-dash long option mode.

For programs using getopt_long_only with single-dash long options, add a
compile time flag to select a mode that produces more appropriate help
output.  This is typical of command-line options for X applications.

2 years agoAdd "md5" detection macro.
Nick Bowler [Wed, 22 Sep 2021 00:39:39 +0000 (20:39 -0400)]
Add "md5" detection macro.

This macro locates a program that can be used to compute MD5 digests
from shell scripts.  Many systems have such a program, but there are
a handful of variations in the wild.

2 years agoAdd common option formatting routines.
Nick Bowler [Mon, 13 Sep 2021 06:30:47 +0000 (02:30 -0400)]
Add common option formatting routines.

Printing a list of program options for --help output is typically
very consistent in all my programs.  Adapt the cdecl99 code to be a
bit more generic so it can (hopefully) be shared across packages.

3 years agoUpdate some copyright years.
Nick Bowler [Sun, 14 Mar 2021 18:37:59 +0000 (14:37 -0400)]
Update some copyright years.

3 years agofix-gnulib: Fix order-only hack with HP-UX make.
Nick Bowler [Sun, 7 Mar 2021 05:57:08 +0000 (00:57 -0500)]
fix-gnulib: Fix order-only hack with HP-UX make.

HP-UX make gets confused by the space in $(findstring ...,$(...))
syntax: instead of expanding to the empty string as desired, it
mismatches the parentheses and we are left with a single ).  E.g.:

  % cat >Makefile <<'EOF'
  all:
@echo '$(a $(b))'
EOF
  % make
  )

Since $(x) and ${x} are equivalent in Make, a neat solution is to
just replace one set of parentheses with braces; now there are no
nested parentheses to mismatch in the first place.

3 years agoFix glconfig depfiles generation with non-GNU makes.
Nick Bowler [Sun, 7 Mar 2021 05:16:28 +0000 (00:16 -0500)]
Fix glconfig depfiles generation with non-GNU makes.

Just like with Autotest, the generation depends on $MAKE set at
configure time, and this was never tried.  Apply the same fix to
glconfig.mk.

3 years agoAvoid nonportable ${x##y} substitutions in program tests.
Nick Bowler [Tue, 9 Mar 2021 06:13:48 +0000 (01:13 -0500)]
Avoid nonportable ${x##y} substitutions in program tests.

Using ${x##y} is not portable: in particular it is not supported by
Solaris /bin/sh (or heirloom-sh).  Define a new macro DX_BASENAME
which implements the particular substitution in a compatible way,
then use it in the flex, bison and gob2 tests.

Moreover, apparently heirloom-sh does not support "command" either,
so let's suppress the error message it generates (the tests will
still produce a usable result), and adjust the test cases to the
correct expected output in this scenario.

3 years agoFix DX_COMMAND_OUTPUT backslash-newline on heirloom-sh.
Nick Bowler [Tue, 9 Mar 2021 03:36:50 +0000 (22:36 -0500)]
Fix DX_COMMAND_OUTPUT backslash-newline on heirloom-sh.

It seems that heirloom-sh (and presumably Solaris /bin/sh) read just
silently eats backslash-newlines, and escaping the backslash does
nothing useful, the shell just eats both backslashes and the newline.

Attempt to avoid this problem by appending a magic string to
troublesome lines, and stripping it after reading.  This will
obviously fail if the input _actually_ has this sequence but
hopefully that will not be an issue in practice.

3 years agoAvoid nonportable ${x%%y} substitutions in DX_LINGUAS.
Nick Bowler [Tue, 9 Mar 2021 01:39:09 +0000 (20:39 -0500)]
Avoid nonportable ${x%%y} substitutions in DX_LINGUAS.

Using ${x%%y} substitutions is not portable: in particular it is
not supported by Solaris /bin/sh (or heirloom-sh).  Let's use a
more portable construct instead.

3 years agoAllow testsuite to run configure with alternate shells.
Nick Bowler [Tue, 9 Mar 2021 03:06:38 +0000 (22:06 -0500)]
Allow testsuite to run configure with alternate shells.

For portability testing of autoconf macros, it is useful to be able
to have the tests run configure with different shells.  Add a global
knob to do this: just run make check with TEST_SHELL=whatever and
the testsuite will set CONFIG_SHELL in testcases appropriately.

Or configure the whole package with CONFIG_SHELL and that will get
passed down too.

However, avoid running the testsuite itself by default with such a
shell because that's not actually what we're trying to test.

3 years agoFix Autotest depfiles generation with non-GNU makes.
Nick Bowler [Sat, 6 Mar 2021 21:22:50 +0000 (16:22 -0500)]
Fix Autotest depfiles generation with non-GNU makes.

Depfiles generation uses the $MAKE value set at configure time, and
apparently I never actually tried this with non-GNU makes.  So of
course it does not work.  Let's try to improve the situation.

3 years agoFix off-by-one error in gen-options.awk.
Nick Bowler [Sat, 6 Mar 2021 21:18:38 +0000 (16:18 -0500)]
Fix off-by-one error in gen-options.awk.

When an option has no help text, the lopt_get_help function is returning
a description pointer which is one past the end of the help text array,
rather than a pointer to the final 0 byte as intended.  The results are
unpredictable.

3 years agoFix DX_BASEDIR substitution test.
Nick Bowler [Sat, 6 Mar 2021 21:00:26 +0000 (16:00 -0500)]
Fix DX_BASEDIR substitution test.

We changed the DX_BASEDIR substitution but the test case was not updated
to reflect that, oops.  Easily fixed.

3 years agoAdd script for generating miscellaneous string tables.
Nick Bowler [Tue, 2 Mar 2021 04:15:30 +0000 (23:15 -0500)]
Add script for generating miscellaneous string tables.

When building constant C data structures it is often better to
store offsets to a string table rather than pointers.  This is
usually smaller and requires less startup time when programs
are built in PIC mode.

This script helps to generate such string tables from an input
specification, and define constants for each string offsets.

3 years agoAdd a script for generating getopt_long option tables.
Nick Bowler [Fri, 26 Feb 2021 04:58:15 +0000 (23:58 -0500)]
Add a script for generating getopt_long option tables.

Maintaining tables of long options, short options, help text and whatnot
in C code is a little bit tedious, and the simpler ways tend to cause
annoying results on modern systems that build everything in PIC mode.

So let's automate the process of building these tables from a simple
description file format, using big string arrays to reduce the amount
of relocations needed in PIC code.

3 years agoInclude ${top_srcdir} in substituted DX_BASEDIR.
Nick Bowler [Fri, 26 Feb 2021 05:07:09 +0000 (00:07 -0500)]
Include ${top_srcdir} in substituted DX_BASEDIR.

As far as I can tell I've never used this feature.  When I tried to
use this value in a makefile it quickly failed in VPATH builds for
obvious reasons.  So it seems reasonable to include this make
variable in the substitution so things just work.

3 years agoAdd a basic usage test for DX_LINGUAS.
Nick Bowler [Mon, 15 Feb 2021 05:18:26 +0000 (00:18 -0500)]
Add a basic usage test for DX_LINGUAS.

In an effort to avoid more obvious bugs down the road, let's get some
sanity checks to cover very basic use cases of this macro.

3 years agoFix multiple language substitution in DX_LINGUAS.
Nick Bowler [Mon, 15 Feb 2021 04:57:05 +0000 (23:57 -0500)]
Fix multiple language substitution in DX_LINGUAS.

For some reason this macro inserts newlines between successive values
in the calculated POFILES/MOFILES settings.  This causes syntax errors
when these get substituted into makefiles and is very, very broken.

So this macro has basically never worked except for trivial cases.  This
happens when you don't bother to test things.  So let's fix that up and
add a test case to expose this issue.

3 years agoFix redundant MOFILES entries computed by DX_LINGUAS.
Nick Bowler [Mon, 15 Feb 2021 04:44:48 +0000 (23:44 -0500)]
Fix redundant MOFILES entries computed by DX_LINGUAS.

The DX_LINGUAS macro transforms a LINGUAS setting of, for example,
"en_CA" to also include "en".  However, if LINGUAS also includes
"en", this addition results in "en" being output twice.

Add a test case that exposes this issue, and correct the problem.

3 years agofix-gnulib: Unbreak symbol renaming feature.
Nick Bowler [Sun, 24 Jan 2021 03:16:47 +0000 (22:16 -0500)]
fix-gnulib: Unbreak symbol renaming feature.

Unifying the libtool and non-libtool variable names in fix-gnulib
inadvertently broke glconfig.mk, which references the previous
gnulib_lt_objects variable name.  Restore the old variable name
in the libtool case.

3 years agoAdd AC_CANONICAL_HOST to configure.ac.
Nick Bowler [Sat, 23 Jan 2021 22:59:42 +0000 (17:59 -0500)]
Add AC_CANONICAL_HOST to configure.ac.

This will ensure Automake brings in config.guess and config.sub, in case
they are needed by test cases, although I am not aware of any actual
problems with these being missing at the moment.