2019-03-06  Keith Marshall  <keith@users.osdn.me>

	Implement an automated build system.

	* configure.ac Makefile.in: New files.

2019-03-04  Keith Marshall  <keith@users.osdn.me>

	Segregate Windows version dependencies into a DLL.

	* locale-info.c [BUILD_DLL] (query_locale_info): Compile it, and all
	of its supporting static functions, as an exported function, which is
	to be encapsulated within an arbitrarily named DLL.
	[! BUILD_DLL] (main): Compile this function only; use LoadLibrary(),
	and GetProcAddress(), to direct execution to the query_locale_info()
	function, assuming that this has been compiled into a DLL named...
	* locale-info.dll: ...thus.

2019-03-03  Keith Marshall  <keith@users.osdn.me>

	Check GetLocaleInfoEx() API availability.

	* locale-info.c (main): Rename it to...
	(query_locale_info): ...this; call it conditionally, from...
	(main): ...a subsequent reimplementation of this, provided that...
	[(dll = GetModuleHandle ("kernel32.dll"))]: ...first this, and then...
	[GetProcAddress (dll, "GetLocaleInfoEx")]: ...this is non-NULL.

2019-03-02  Keith Marshall  <keith@users.osdn.me>

	Remove redundant output helper code.

	* locale-info.c (report) [#if 0]: Delete disabled code block.

2019-02-10  Keith Marshall  <keith@users.osdn.me>

	Initial commit.

	* locale-info.c: New file.
