From: Kevin Rosenberg Date: Thu, 11 Feb 2010 23:03:48 +0000 (-0700) Subject: Version 5.0.3: Full foreign string internationalization support X-Git-Tag: v5.0.3^0 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=3d86a3b402ae495cddcc5999c5bdd7fe6f586d53 Version 5.0.3: Full foreign string internationalization support --- diff --git a/ChangeLog b/ChangeLog index aef72fc..c093212 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,10 @@ 2010-02-11 Kevin Rosenberg + * Version 5.0.3 * multiple-files: Further internationalization. Change UFFI:CONVERT-RAW-FIELD and UFFI:CONVERT-FROM-FOREIGN-STRINGS invocations to use the foreign character set encoding of the - database object. + database object. Requires UFFI v.1.8.6 + * Makefile.common: Fix OS_DARWIN64 setting 2010-02-11 Nathan Bird * MSSQL: better support for fddl 'date type. diff --git a/Makefile.common b/Makefile.common index 30be60e..455f5a4 100644 --- a/Makefile.common +++ b/Makefile.common @@ -5,7 +5,11 @@ DARWIN_LIBC=$(shell file /usr/lib/libc.dylib) OS_AIX=$(shell expr "$(UNAME)" : '.*AIX.*') OS_SUNOS=$(shell expr "$(UNAME)" : '.*SunOS.*') OS_DARWIN=$(shell expr "$(UNAME)" : '.*Darwin.*') -OS_DARWIN64=$(shell expr "$(DARWIN_LIBC)" : '.*x86_64.*') +ifneq ($(OS_DARWIN),0) + OS_DARWIN64=$(shell expr match "$(DARWIN_LIBC)" '.*x86_64.*') +else + OS_DARWIN64=0 +endif OS_CYGWIN=$(shell expr "$(UNAME)" : '.*CYGWIN.*') OS_LINUX=$(shell expr "$(UNAME)" : '.*Linux.*') OS_LINUX64=$(shell expr "$(UNAME_A)" : '.*Linux.*x86_64.*') diff --git a/db-mysql/Makefile b/db-mysql/Makefile index 9e2e291..4198ac8 100644 --- a/db-mysql/Makefile +++ b/db-mysql/Makefile @@ -49,30 +49,31 @@ else ifneq ($(OS_DARWIN64),0) cc $(CFLAGS) -arch x86_64 -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress $(source) -o $(dylib) cc -arch x86_64 -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress /usr/lib/libz.dylib -o z.dylib + @echo "D2:" $(OS_DARWIN64) else - ifneq ($(OS_DARWIN),0) - cc $(CFLAGS) -arch x86_64 -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress $(source) -o $(dylib) - cc -arch x86_64 -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress /usr/lib/libz.dylib -o z.dylib - else - ifneq ($(OS_CYGWIN),0) - gcc $(CFLAGS) -DWIN32 -c $(source) -o $(object) - ld -shared -soname=$(base) $(object) $(LDFLAGS) -o $(shared_lib) + ifneq ($(OS_DARWIN),0) + cc $(CFLAGS) -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress $(source) -o $(dylib) + cc -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress /usr/lib/libz.dylib -o z.dylib else - ifneq ($(OS_LINUX64),0) - gcc $(CFLAGS) -fPIC -c $(source) -o $(object) - ld -shared -soname=$(base) $(object) $(LDFLAGS) -o $(shared64_lib) - rm $(object) - @echo "Ensure that you have multiarch i386 build tools and libraries if you want to build 32-bit library" - -gcc $(CFLAGS32) -fPIC -c $(source) -o $(object) - -ld -shared -soname=$(base) $(object) $(LDFLAGS32) -o $(shared_lib) + ifneq ($(OS_CYGWIN),0) + gcc $(CFLAGS) -DWIN32 -c $(source) -o $(object) + ld -shared -soname=$(base) $(object) $(LDFLAGS) -o $(shared_lib) else - gcc $(CFLAGS) -fPIC -c $(source) -o $(object) - ld -shared -soname=$(base) $(object) $(LDFLAGS) -o $(shared_lib) + ifneq ($(OS_LINUX64),0) + gcc $(CFLAGS) -fPIC -c $(source) -o $(object) + ld -shared -soname=$(base) $(object) $(LDFLAGS) -o $(shared64_lib) + rm $(object) + @echo "Ensure that you have multiarch i386 build tools and libraries if you want to build 32-bit library" + -gcc $(CFLAGS32) -fPIC -c $(source) -o $(object) + -ld -shared -soname=$(base) $(object) $(LDFLAGS32) -o $(shared_lib) + else + gcc $(CFLAGS) -fPIC -c $(source) -o $(object) + ld -shared -soname=$(base) $(object) $(LDFLAGS) -o $(shared_lib) + endif endif endif endif endif -endif endif rm -f $(object) diff --git a/debian/changelog b/debian/changelog index 846ec32..23399bc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-sql (5.0.3-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Thu, 11 Feb 2010 15:18:04 -0700 + cl-sql (5.0.2-1) unstable; urgency=low * New upstream