diff options
author | zuntum <zuntum@pkgsrc.org> | 2003-04-14 17:33:16 +0000 |
---|---|---|
committer | zuntum <zuntum@pkgsrc.org> | 2003-04-14 17:33:16 +0000 |
commit | 474c64824066cfa2f6c64d8722ba500d141d7bbd (patch) | |
tree | 3a7aa9d5721406bd4130b1f67c0b7c3f30e6d555 /converters/xlreader/patches | |
parent | 911ec7a960fa97ec45633aae951cb44b345bc092 (diff) | |
download | pkgsrc-474c64824066cfa2f6c64d8722ba500d141d7bbd.tar.gz |
Initial import of converters/xlreader (version 0.9.0)
Read data from Excel spread sheets without Microsoft!
Provides an API to allow any application to read Excel
documents. Demo interface converts data to tab
delimited, CSV or SQL inserts. Written in C. Based on
the the Java version by Andrew Khan.
Provided by David Forrai <david.forrai@gemair.com> in PR#21103,
slightly modified by me. Thanks!
Diffstat (limited to 'converters/xlreader/patches')
-rw-r--r-- | converters/xlreader/patches/patch-aa | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/converters/xlreader/patches/patch-aa b/converters/xlreader/patches/patch-aa new file mode 100644 index 00000000000..abedb3f5f01 --- /dev/null +++ b/converters/xlreader/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.1.1.1 2003/04/14 17:33:16 zuntum Exp $ + +--- Makefile.orig 2001-10-01 03:18:22.000000000 +0000 ++++ Makefile +@@ -1,6 +1,4 @@ +-LDFLAGS=-L/usr/local/lib -lm +-CFLAGS=-ggdb -Wall +-CC=gcc ++LDFLAGS+= -lm + OBJ=interger.o book.o record.o sheet.o handler.o cell.o sstlist.o format.o formatting.o + HDR=biff.h interger.h record.h book.h sstlist.h format.h + |