dc799a2326
per maintainer update request by PR#45076. --- Release version 3.80 15.12.2010 ------------------------------------- 1. Fix bug with preserving indices 2. Replace sprintf with strcat in ClassDescriptor constructor to avoid problems in SymbianOS 3. Fix problem with std_tmp_allocator in xml.cpp --- Release version 3.81 29.03.2011 ------------------------------------- 1. Change return type of select method to be able to selcet more than 2Gb records 2. Patch of SubSQL HTML dump done by Christen Volker improving visualisation of large arrays 3. Visual Studio 10 compatibilty fixes --- Release version 3.82 06.05.2011 ------------------------------------- 1. Fix bug with scheduled incremental backup 2. Fix namespace support
34 lines
926 B
Text
34 lines
926 B
Text
$NetBSD: patch-aa,v 1.2 2011/06/18 02:45:13 obache Exp $
|
|
|
|
install as usual manner.
|
|
|
|
--- Makefile.in.orig 2011-02-28 08:41:44.000000000 +0000
|
|
+++ Makefile.in
|
|
@@ -7,6 +7,8 @@ exec_prefix = @exec_prefix@
|
|
VPATH = @srcdir@
|
|
LIBTOOL = ./libtool
|
|
INSTALL = @INSTALL@
|
|
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
+INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
# Coment this for AIX/xlC 5.0
|
|
LIBEXT=la
|
|
@@ -155,16 +157,11 @@ testleak: testleak.o $(GB_LIB)
|
|
|
|
install: subsql $(GB_LIB) $(CLI_LIB)
|
|
mkdir -p $(includedir)
|
|
- cp $(INCS) $(CLI_INCS) $(includedir)
|
|
+ $(INSTALL_DATA) $(INCS) $(CLI_INCS) $(includedir)
|
|
mkdir -p $(libdir)
|
|
$(LIBTOOL) --mode=install $(INSTALL) $(GB_LIB) $(CLI_LIB) $(libdir)
|
|
mkdir -p $(bindir)
|
|
- if test -x .libs/subsql ; then \
|
|
- cp .libs/subsql $(bindir); \
|
|
- else \
|
|
- cp subsql $(bindir); \
|
|
- fi
|
|
-# strip $(bindir)/subsql
|
|
+ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) subsql $(bindir)
|
|
|
|
clean:
|
|
rm -f *.o *.lo core *~
|