Skip to content
This repository has been archived by the owner on Jan 3, 2018. It is now read-only.

Commit

Permalink
updated everything to 3.0.2 release available at SF
Browse files Browse the repository at this point in the history
  • Loading branch information
GerHobbelt committed Jun 25, 2012
1 parent 520dedd commit a428227
Show file tree
Hide file tree
Showing 18 changed files with 804 additions and 5,571 deletions.
590 changes: 206 additions & 384 deletions COPYING

Large diffs are not rendered by default.

File renamed without changes.
20 changes: 20 additions & 0 deletions ChangeLog
Expand Up @@ -64,3 +64,23 @@ libcsv version 3.0.0 released
* Added functions to change the memory allocation functions used, get the
size of the internal buffer, and get and set the size of the amount of
memory requested when the internal buffer gets too large.

Thu Apr 14 14:17:58 EDT 2011
libcsv version 3.0.1 released
* This version includes a fix for a defect where using csv_parse in
conjunction with the CSV_APPEND_NULL flag could result in an extraneous
byte being added to the end of the data before the nul-terminator was added.
Thanks to Evan Miller for finding and reporting this issue.
* The -fPIC switch, which is needed for several platforms, is now
included in the Makefile. If your compiler complains about this option,
try removing it or replacing it with the equivalent option to generate
position-independent code.

Tue May 1 11:20:47 EDT 2012
libcsv version 3.0.2 released
* This version addresses an issue encountered when parsing empty fields of
tab-delimited file (sourceforge Issue ID 3513234).
Thanks to Paul Fitzpatrick for reporting this and suggesting a fix.
* libcsv now contains a properly configured autotools build system.
Thanks to Christopher Howard <christopher.howard@frigidcode.com> who
did all of the legwork setting this up.
379 changes: 28 additions & 351 deletions INSTALL

Large diffs are not rendered by default.

20 changes: 17 additions & 3 deletions Makefile.am
@@ -1,5 +1,19 @@
lib_LTLIBRARIES = libcsv.la
libcsv_la_SOURCES = libcsv.c
include_HEADERS = csv.h
libcsv_la_LDFLAGS = -version-info 3:1:0
ACLOCAL_AMFLAGS = -I m4
libcsv_la_LDFLAGS = -version-info 3:2:0
libcsv_la_CFLAGS = -Wall -Wextra
libcsv_includedir = $(includedir)
nobase_libcsv_include_HEADERS = csv.h
dist_man_MANS = csv.3
EXTRA_DIST = FAQ \
README \
test_csv.c \
tests \
examples \
csv.pdf \
COPYING.LESSER
TESTS = check_csv
check_PROGRAMS = check_csv
check_csv_SOURCES = test_csv.c
check_csv_LDADD = -lcsv
ACLOCAL_AMFLAGS = -I m4

0 comments on commit a428227

Please sign in to comment.