Fixing makefile and version bump

git-svn-id: file:///var/svn/lua-iconv/trunk@65 9538949d-8f27-0410-946f-ce01ef448559
This commit is contained in:
Alexandre Erwin Ittner 2009-08-06 16:30:06 +00:00
parent 746bd38b96
commit 5fdb4e6ebe
4 changed files with 4 additions and 4 deletions

View File

@ -55,7 +55,7 @@ iconv.so: iconv.lo
install: iconv.so install: iconv.so
make test make test
install -D -s iconv.so $(INSTALL_PATH)/iconv.so install -D -s iconv.so $(DESTDIR)/$(INSTALL_PATH)/iconv.so
clean: clean:
$(RM) iconv.so iconv.lo $(RM) iconv.so iconv.lo

2
README
View File

@ -12,7 +12,7 @@ sequence of corresponding characters in another codeset. The codesets
are those specified in the iconv.new() call that returned the conversion are those specified in the iconv.new() call that returned the conversion
descriptor, cd. descriptor, cd.
Lua-iconv 5 *requires* Lua 5.1. If you are using Lua 5.0, please use the Lua-iconv 6 *requires* Lua 5.1. If you are using Lua 5.0, please use the
first release (lua-iconv-r1). first release (lua-iconv-r1).
Details regarding iconv may be obtained from: Details regarding iconv may be obtained from:

View File

@ -37,7 +37,7 @@
#include <errno.h> #include <errno.h>
#define LIB_NAME "iconv" #define LIB_NAME "iconv"
#define LIB_VERSION LIB_NAME " 5" #define LIB_VERSION LIB_NAME " 6"
#define ICONV_TYPENAME "iconv_t" #define ICONV_TYPENAME "iconv_t"

View File

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
PACKAGE=lua-iconv PACKAGE=lua-iconv
VERSION=5 VERSION=6
DIRNAME=$PACKAGE-$VERSION DIRNAME=$PACKAGE-$VERSION
TGZNAME=$DIRNAME.tar.gz TGZNAME=$DIRNAME.tar.gz