diff options
Diffstat (limited to 'extension')
-rw-r--r-- | extension/.gitignore | 3 | ||||
-rw-r--r-- | extension/ChangeLog | 9 | ||||
-rw-r--r-- | extension/Makefile.am | 2 |
3 files changed, 13 insertions, 1 deletions
diff --git a/extension/.gitignore b/extension/.gitignore new file mode 100644 index 00000000..ee95901f --- /dev/null +++ b/extension/.gitignore @@ -0,0 +1,3 @@ +# ignore files created by libtool +*.l[oa] +.libs diff --git a/extension/ChangeLog b/extension/ChangeLog index 251f86c8..2287434e 100644 --- a/extension/ChangeLog +++ b/extension/ChangeLog @@ -1,3 +1,12 @@ +2012-03-25 Andrew J. Schorr <aschorr@telemetry-investments.com> + + * .gitignore: New file to ignore files created by libtool (including + binaries and associated metadata). + +2012-03-21 Andrew J. Schorr <aschorr@telemetry-investments.com> + + * Makefile.am (INCLUDES): Remove -I$(top_srcdir)/intl. + 2012-03-20 Andrew J. Schorr <aschorr@telemetry-investments.com> * Makefile.am: New file to build and install shared libraries. diff --git a/extension/Makefile.am b/extension/Makefile.am index 27bdff4e..fc806796 100644 --- a/extension/Makefile.am +++ b/extension/Makefile.am @@ -23,7 +23,7 @@ ## Process this file with automake to produce Makefile.in. -INCLUDES = -I.. -I$(top_srcdir) -I$(top_srcdir)/intl +INCLUDES = -I.. -I$(top_srcdir) lib_LTLIBRARIES = \ libarrayparm.la \ |