Sat Dec 22 10:47:33 UTC 2007 Juergen Kahrs <jkahrs@users.sourceforge.net>

	Sync with savannah gawk cvsps 162.
	Final prep for 3.1.6 release.

Sun Aug 12 14:59:01 UTC 2007 Juergen Kahrs <jkahrs@users.sourceforge.net>

	Sync with savannah gawk cvsps 135.

	* arrayparm.c filefuncs.c fork.c ordchr.c readfile.c zaxxon.c:
	Upgrade to GPL v3.

Fri Apr 20 17:58:44 UTC 2007 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* gd.c: Victor Paesa improved error checking in opening files.

Thu Apr 12 14:03:11 UTC 2007 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c (mpfr_out_string): Replaced the use of __gmp_free_func
	with the official mpfr_free_str. Successfully tested on SuSE 10.2
	and Cygwin. Cygwin now builds correctly when configured with
	configure --enable-static-extensions .

Wed Mar 21 18:59:34 UTC 2007 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* xml-conv-enc: Patch to work on more platforms.  If ../gawk is
	not present, try to find gawk or nawk elsewhere in the PATH before
	falling back to awk.  When using the command-line "-v FILE=$i"
	argument, leave a space after "-v" for compatibility with
	nawk.  Also for solaris nawk compatibility, do not use gensub,
	and print integers in 2-byte pieces to avoid overflow problems
	with large integers.

Tue Mar 20 20:31:24 UTC 2007 Andrew J. Schorr <ajschorr@users.sourceforge.net>
        
	Commit Victor Paesa's libgd patch.
	* Makefile.am: Add conditional support for libgd depending on BUILD_GD.
	* gd.c, testgd.awk: New files implementing the GD extension.

Sun Jan 28 15:33:35 UTC 2007 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* xml-conv-enc: The encodings are stored in the source directory.
	So the loop over the encoding files has to search through
	`dirname $0`/encodings/.

Tue Jan 23 19:50:52 UTC 2007 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* Makefile.am: xml_enc_converted.touch
	Inserted $(srcdir) so that the configure option --srcdir works again.

Wed Mar 22 17:15:10 UTC 2006 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* xml_puller.c (start_doct_handler): The doctypeName argument
	must always be present, so there is no need to check for a
	NULL pointer.
	* xml_interface.c: Add a new XMLDECLARATION variable.
	(varinit): Add entry for XMLDECLARATION.
	(resetXMLvars): Reset XMLDECLARATION.
	(xml_get_record): For XML_PULLER_DECL events, set XMLDECLARATION to 1.
	For XML_PULLER_START_DOCT events, token->name is never NULL,
	since expat must pass doctypeName in such a case.

Sat Mar 18 23:31:33 UTC 2006 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Add sample.xml to EXTRA_DIST so it will be included
	in the distribution tarball.

Sat Mar 18 23:31:33 UTC 2006 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* sample.xml: Added new sample XML file for use with testxml2pgsql.awk.

Sat Mar 18 20:51:56 UTC 2006 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* testxml2pgsql.awk: Added new example code to show how to load
	XML data into a PostgreSQL database.

Sat Mar 18 20:42:48 UTC 2006 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* xml_interface.c (varinit): Fix comment to reflect that XMLPATH
	is treated specially.  Change NUM_RESET from NUM_SCALARS-1 to
	NUM_SCALARS-2.
	(resetXMLvars): If XMLPATH does not match our internal value,
	then update it to match (unless the current token is
	XML_PULLER_START_ELEMENT which will update it later anyway).
	(update_xmlpath): Break into 2 functions append_xmlpath and
	chop_xmlpath.  Change append_xmlpath to use erealloc instead of
	emalloc/memcpy/free.  And chop_xmlpath will be inline.
	(xml_get_record): Must pass some state to resetXMLvars so it can figure
	out if/how to update XMLPATH.  For XML_PULLER_START_ELEMENT tokens,
	call append_xmlpath instead of update_xmlpath, and call RESET_XMLPATH
	to set the visiable XMLPATH variable.  For XML_PULLER_END_ELEMENT
	tokens, call chop_xmlpath (but do not update the XMLPATH variable).

Fri Mar 17 20:05:04 UTC 2006 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Remove our definition of libdir (since pkgextensiondir
	is now defined in configure.ac).
	In the install rule, use pkgextensiondir instead of libdir.
	Fix a bug: add an uninstall rule to remove the shared libraries
	(previously, they were being left behind).

Thu Mar 16 18:10:07 UTC 2006 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* testpgsql.awk: New file to demonstrate how to use the postgresql
	extension.

Thu Mar 16 17:51:43 UTC 2006 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* xml_interface.c (file static, varinit, resetXMLvars): Remove
	obsolete variables: XMLVERSION, XMLENCODING, XMLDOCTPUBID, and
	XMLDOCTSYSID.
	(set_xml_attr): Stop calling dupnode, because we are no longer
	duplicating the XMLATTR setting in a global variable.
	(xml_get_record): For XML_PULLER_DECL events, eliminate the
	XMLVERSION and XMLENCODING variables (this information is now only
	in the XMLATTR array).  And add XMLATTR["STANDALONE"] set to
	"yes" or "no" when indicated.
	For XML_PULLER_START_DOCT events, eliminate the XMLDOCTPUBID and
	XMLDOCTSYSID variables (this information is now only in the XMLATTR
	array).  And add XMLATTR["INTERNAL_SUBSET"] when indicated, as a
	non-zero numeric value.

Wed Mar 15 16:47:02 UTC 2006 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* xml_interface.c (xml_load_vars): Fix comment about XMLCHARSET,
	and change code to initialize XMLCHARSET to call nl_langinfo only once.

Sun Mar 12 00:04:23 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* xml_interface.c: Changed initial value of variable XMLCHARSET.
	It is now set to nl_langinfo(CODESET) upon loading of XML.

Fr Feb 17 16:46:05 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* xml_interface.h: Added new variable XMLPATH.
	This variable is meant to contain the information about
	nesting of tags in the form '/top/child/grandchild'.
	Details are still subject to change.

Sun Feb 12 13:40:07 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c(dlload): Corrected arity of mpfr_lngamma, mpfr_erfc,
	mpfr_gamma, and mpfr_erf to 1 instead of 2.

Thu Feb  9 17:47:59 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* xml-conv-enc: This script uses an awk interpreter.
	If the newly built gawk executable is available in the top
	level directory, it will be used. Otherwise, the default
	awk will be used. Therefore, we cannot used gawk-specifica
	in the awk script and I replaced hex numbers with decimals.

Wed Feb  8 17:43:02 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c(do_mpfr_const_log2): Koichi Kimura found and
	Hirofumi Saito reported that mpfr_log2 was called instead of mpfr_const_log2.

Sun Jan 29 20:51:46 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c(mpfr_ordinary_op): Removed all remaining memory
	leaks. MPFR_EXACT had to be freed before a new assignment.

Sun Jan 29 19:32:29 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c(mpfr_ordinary_op): Reverted the previous change
	for the  memory leak. It did not work. Two memory leaks
	still exist in mpfr_ordinary_op.

Sun Jan 29 16:30:00 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c(mpfr_ordinary_op): Removed a memory leak. Others remain.
	* mpfr.c(convert_base): Corrected a lintwarn message.
	* mpfr.c: Corrected arity of most MPFR predicates to 0.

Sat Jan 28 16:45:32 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c(mpfr_ordinary_op): The "ternary" return value of
	each MPFR function is now visible to the user in the MPFR_EXACT
	variable.

	* mpfr.c: Added new functions do_mpfr_eint, do_mpfr_gamma,
	and do_mpfr_lngamma.

	* mpfr.c: MPFR versions earlier than 2.2.0 don't know some
	functions. Therefore, the presence and the content of the
	MPFR_VERSION macro is checked before use of the functions
	mpfr_atan2, mpfr_erfc, mpfr_eint and mpfr_lngamma.
	Thanks to Hirofumi Saito for finding this problem.

Wed Jan 25 20:01:32 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c: Added many MPFR predicates to the ordinary_op mechanism.

Tue Jan 24 18:33:59 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c: Added some more MPFR functions.

Mo Jan 23 22:17:52 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c: Replaced mpfr_constop, mpfr_unop and mpfr_binop with
	new function mpfr_ordinary_op. This new function implements
	optional arguments for all ordinary operations: The first
	one being the rounding mode, the second one being precision.
	New function mpfr_get_round for converting string values to
	int values.

Sun Jan 22 17:33:24 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c: Corrected some typos (comstop_t). Inserted some tabs.
	* mpfr.c(do_mpfr_sqr): This is an unary function, not a binary.
	* mpfr.c(convert_base): New function for converting back and
	forth between internal number base and external number base.
	* mpfr.c(do_mpfr_out_str): New function for printing numbers
	with a base different than the internally used base.
	* mpfr.c(do_mpfr_inp_str): New function for reading numbers
	with a base different than the internally used base.

Sat Jan 21 21:31:04 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c: Functions sqr and exp10 are now supported by MPFR.
	Made function xml_load_vars static to avoid name clash.

Sat Jan 21 18:16:52 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c: There is a bug in the old MPFR that comes with GMP 4.1.4.
	With GMP (in default configuration) and MPFR 2.2.0, the string
	conversion functions work correctly. Conversion of Inf and NaN
	also works now with foreign locales.

Do Jan 19 21:32:51 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c: Added support for some more MPFR functions.

Thu Jan 19 20:59:27 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* mpfr.c(mpfr_out_string): Cleaned up recognition of NaN
	and Inf. Only documented MPFR features used now.

Wed Jan 18 21:57:56 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* Makefile.am: Inserted new MPFR extension.
	* mpfr.c: New file implementing the interface to the MPFR lib.

Wed Jan 11 18:37:13 UTC 2006 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* xml-conv-enc: Function strtonum is unknown on some platforms.
	Replaced it with function mystrtonum from the GAWK Manual.

Tue Jan 10 22:28:59 UTC 2006 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* filefuncs.c (read_symlink): New function to read a symbolic link,
	based on the gnu xreadlink code.
	(do_stat): Use new read_symlink function to read symbolic link
	contents robustly.  Also, the error message is now a warning,
	instead of being fatal.

Wed Nov 16 20:30:06 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Add support for new "time" library.
	* time.c: Implement new shared library with "sleep" and "gettimeofday"
	functions.
	* testtime.awk: Test (and show how to use) the new time library calls
	(sleep and gettimeofday).

Mon Jun 20 12:48:09 UTC 2005 Glenn Zazulia <gnu@t1.zazu.com>

	* filefuncs.c (do_stat): Must check for error from readlink.

Thu Jun  2 14:26:38 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* pgsql.c (get_params): When extracting parameters for prepared
	statements, fix off-by-one problem: should have gawk subscript [1]
	map to parameter $1 in the SQL statement (so now we match the SQL API
	instead of the C API).  It should be more intuitive this way.

Mon Apr 18 21:17:47 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* pgsql.c: Improve unknown handle error messages.  Add several more
	function bindings: pg_sendqueryparams, pg_sendprepare,
	pg_sendqueryprepared, pg_execparams, pg_prepare, pg_execprepared.
	Change names to be more consistent: pg_fields_byname -> pg_fieldsbyname,
	and pg_getrow_byname -> pg_getrowbyname.  Use unsigned long
	values for handle counters.

Mon Apr 18 14:58:37 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* pgsql.c: Use new macro Tmp_number that simply casts the value to
	AWKNUM and calls tmp_number.  For some reason, tmp_number does not
	cast the value.  This would be a problem on a platform that does
	not have prototypes.

Mon Apr 18 13:37:54 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* pgsql.c: Rename pg_fetchrow as pg_getrow, and pg_fetchrow_byname
	as pg_getrow_byname.  This seems safer to avoid confusion with
	the SQL FETCH statement.

Sun Apr 17 19:17:16 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* pgsql.c (do_pg_disconnect, do_pg_clear): Since the strhash_delete
	callback function arguments have changed, we can just pass PQfinish
	and PQclear as the callback functions without interposing a silly
	helper function.
	(do_finish, do_clear): Remove obsolete delete callback helper functions.

Sat Apr 16 17:33:59 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* pgsql.c (process_result): For COPY IN and COPY OUT results,
	add some additional information to the result string showing the
	number of fields and the copy format (TEXT or BINARY).
	
Sat Apr 16 16:34:25 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* pgsql.c (do_pg_errormessage, do_pg_sendquery, do_pg_putcopydata,
	do_pg_putcopyend, do_pg_getcopydata, set_error, process_result,
	do_pg_getresult): New functions.
	(do_pgexec): Reimplement using new process_result function.
	(dlload): Declare new functions pg_errormessage, pg_sendquery,
	pg_getresult, pg_putcopydata, pg_putcopyend, and pg_getcopydata.

Fri Apr 15 16:18:11 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* pgsql.c (do_pg_reset): New function to call PQreset.
	(do_pg_exec): After a command fails, check connection status using
	PQstatus.  If the connection is bad, return "BADCONN" instead of "".
	(dlload): Add new function pg_reset.  Register some function aliases:
	pg_connectdb -> pg_connect, pg_finish -> pg_disconnect,
	pg_reconnect -> pg_reset.

Thu Apr 14 20:41:15 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* pgsql.c (dlload): Announce new functions pg_fields_byname and
	pg_fetchrow_byname.
	(do_pg_fields_byname, do_pg_fetchrow_byname): New functions to implement
	the new features.

Thu Apr 14 19:41:26 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* pgsql.c: New file to implement PostgreSQL interface using libpq.
	* Makefile.am: Build pgsql extension if BUILD_PGSQL is defined.

Thu Apr 14 18:45:28 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* xml_interface.c (xml_get_record): Should call
	unref(ERRNO_node->var_value) before assigning a new value.

Thu Apr 14 18:42:35 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* fork.c (do_waitpid): After getting pid argument, should call
	free_temp.

Thu Apr 14 17:55:29 UTC 2005 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* xml_enc_handler.c: Added support for older Expat versions
	(version 1.2 for example) by conditionally defining XML_STATUS_OK
	and XML_STATUS_ERROR.
	* xml_puller.h: Included the expat.h header (only) for Expat.
	xmlparse.h does not make sense anymore, not even with compilers
	which are older than gcc version 3.

Wed Apr 13 16:51:04 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* xml_puller.c (flush_pending): Fix bug: should return 0 on success.
	(XML_PullerNext): Replace "enum XML_Status" with "int" to be
	compatible with older versions of Expat.

Tue Apr 12 12:39:13 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* xml_puller.c, xml_interface.c: Should #include "xml_puller.h",
	not <xml_puller.h>.

Thu Apr  7 21:15:33 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Use EXTRA_DIST to get needed files in dist without
	including CVS subdirs.

Thu Apr  7 15:01:36 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Use CLEANFILES instead of supplying our own clean rule.

Tue Apr  5 23:10:19 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Change extension.list sed substitution to be compatible
	with MacOS sed.

Tue Apr  5 21:39:29 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* xml_interface.c (xml_load_vars): Add a comment indicating that it
	might be more robust to initialize XMLCHARSET to nl_langinfo(CODESET).

Tue Apr  5 12:06:46 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Minor improvements.

Tue Apr  5 03:07:22 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Add 2 new targets for static.link and extension.list to
	help build statically linked gawk in a more intelligent way.
	* .cvsignore: Add extension.list and static.link.

Mon Apr  4 21:00:38 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Use BUILD_XML to figure out whether to build the XML
	library, and use BUILD_STATIC_EXTENSIONS to figure out whether
	to install the libraries.
	* *.c: If BUILD_STATIC_EXTENSIONS is defined, then rename the
	initialization function from dlload to dlload_<library name>.
	* readfile.c: Make do_readfile scope static.

Thu Mar 31 17:27:01 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* xml_puller.c (XML_PullerCreate): Should not declare an extern function
	in the middle of a code block (gcc 2.95 cannot compile this).  Problem
	solved by enclosing this code block in curly braces.

Thu Mar 31 16:40:02 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Always build the xml library (so that top-level make
	can link it statically).  But install the shared library only
	when configured without --enable-xml.  Also, check the return
	code from xml-conv-enc.
	* .cvsignore: Add generated files xml_enc_registry.inc,
	xml_enc_tables.inc, and xml_enc_converted.touch.

Wed Mar 30 17:31:15 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* xml_puller.c (flush_pending): Return -1 for failure, 0 for success.
	If an iconv error occurs, fix the error row, column, and length,
	otherwise it will have the info for the subsequent event that
	is causing the flush.
	(token_get): If flush_pending fails, return NULL immediately.
	(add_pending): If current status indicates an error, do not do any
	processing.  Also, if flush_pending fails, return immediately.
	
Wed Mar 30 16:57:24 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Get encoding files to build properly.

Tue Mar 29 21:07:33 UTC 2005 Juergen Kahrs <jkahrs@users.sourceforge.net>

	Inserted an invocation of the script xml-conv-enc which
	takes all encodings and converts them to new files
	xml_enc_registry.inc and xml_enc_tables.inc. These new
	files are used (and compiled into) xml_enc_handler.c.

	* Makefile.am: New rule xml_enc_handler.c and changed rule libxml_la_SOURCES.

Tue Mar 29 20:43:59 UTC 2005 Juergen Kahrs <jkahrs@users.sourceforge.net>

	Added some files which are needed to convert character encodings
	which Expat does not know. See extension/encodings/README.

	* encoding.h:         A header file needed for binary encoding. 
	* encodings:          A directory containing descriptions of the encodings.
	* xml-conv-enc:       A script which converts encodings into C source files.
	* xml_enc_handler.c:  A C source file used by the xml_puller.

Mon Mar 28 22:19:34 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* fork.c (do_fork): Check whether PROCINFO_node is NULL before updating.

Mon Mar 28 21:32:57 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* xml_puller.[ch], xml_interface.c: Added (moved from toplevel
	directory).

Mon Mar 28 20:37:26 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: If BUILD_XMLGAWK is defined, do not compile xml.so
	as a shared library extension, since it is being compiled into
	the main gawk binary.

Mon Mar 28 19:16:16 UTC 2005 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* Makefile.am: Added -I$(top_srcdir)/intl to INCLUDE for MaxOSX.

Mon Mar 28 18:15:48 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* steps: Rename dl as zaxxon.
	* filefuncs.c: Do not include sys/sysmacros.h.

Mon Mar 28 17:44:40 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Rename libdl to libzaxxon to avoid confusion
	with system library libdl.  Do not install test libraries.
	* dl.c: Remove (renamed to zaxxon.c).
	* zaxxon.c: Add (renamed from dl.c).

Mon Mar 28 03:42:38 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Oops, should really use INSTALL_PROGRAM,
	that way "make install-strip" will work.  Add message showing
	where each library is being installed.

Mon Mar 28 03:27:55 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Use $(INSTALL) instead of $(install_sh) -c.
	
Mon Mar 28 02:01:40 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Add hooks to choose which libraries to
	install.  For now, install them all.

Mon Mar 28 01:53:35 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Use a custom install rule to install only
	the shared libraries with the names that we want.  I'm not sure
	whether this is 100% portable...

Sun Mar 27 20:52:13 UTC 2005 Juergen Kahrs <jkahrs@users.sourceforge.net>

	* Makefile.am: Now all extensions are compiled to shared libs.

Sun Mar 27 20:23:07 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: Fix installation directory, and remove -lexpat
	dependency.


Sun Mar 27 17:02:14 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>
	
	* Makefile: Removed.  Now using automake/libtool.

Sun Mar 27 17:02:14 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* Makefile.am: First pass at libtool Makefile.am.

Sun Mar 27 16:59:44 UTC 2005 Andrew J. Schorr <ajschorr@users.sourceforge.net>

	* .cvsignore: New file.
