/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: edam
  • Date: 2010-07-29 20:56:19 UTC
  • Revision ID: edam@waxworlds.org-20100729205619-a9yo4uzu647nvnsj
- renamed database to connection to better identify what it is (would database_connection be better though?)
- moved basic_statement and basic_transaction to sqlite::detail
- made sqlite::threadsafe() return the threading mode int, not a bool
- renamed row::index() to row_number() so it isn't confused with column index
- added typedef for deferred_transaction
- added early rollback method to transaction_guard
- allowed transaction_guard::~transaction_guard() to throw exceptions, since when it needs to, we're really screwed anyway
- bugfix: query::reset() didn't reset the internal row counter
- added query::num_results()
- added docs/design-notes
- reimplemented query::iterator so that increment() (which performs a step() on the query) now caches the returned row to be returned during dereference() (previously it stashed details and returned new row!?)
- bugfix: resetting active queries during rollbacks would hang!

Show diffs side-by-side

added added

removed removed

1
 
# Makefile.in generated by automake 1.11 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11.1 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
38
38
subdir = .
39
39
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
40
40
        $(srcdir)/Makefile.in $(srcdir)/config.h.in \
41
 
        $(top_srcdir)/configure COPYING COPYING.LESSER TODO \
 
41
        $(top_srcdir)/configure COPYING COPYING.LESSER NEWS TODO \
42
42
        build-aux/config.guess build-aux/config.sub build-aux/depcomp \
43
43
        build-aux/install-sh build-aux/ltmain.sh build-aux/missing
44
44
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
144
144
LDFLAGS = @LDFLAGS@
145
145
LIBOBJS = @LIBOBJS@
146
146
LIBS = @LIBS@
 
147
LIBSQLITE3CC_INTERFACE = @LIBSQLITE3CC_INTERFACE@
147
148
LIBTOOL = @LIBTOOL@
148
149
LIPO = @LIPO@
149
150
LN_S = @LN_S@
223
224
top_build_prefix = @top_build_prefix@
224
225
top_builddir = @top_builddir@
225
226
top_srcdir = @top_srcdir@
226
 
SUBDIRS = src test
 
227
SUBDIRS = src include test
227
228
ACLOCAL_AMFLAGS = -I m4
228
229
all: config.h
229
230
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
297
298
#     (which will cause the Makefiles to be regenerated when you run `make');
298
299
# (2) otherwise, pass the desired values on the `make' command line.
299
300
$(RECURSIVE_TARGETS):
300
 
        @failcom='exit 1'; \
 
301
        @fail= failcom='exit 1'; \
301
302
        for f in x $$MAKEFLAGS; do \
302
303
          case $$f in \
303
304
            *=* | --[!k]*);; \
322
323
        fi; test -z "$$fail"
323
324
 
324
325
$(RECURSIVE_CLEAN_TARGETS):
325
 
        @failcom='exit 1'; \
 
326
        @fail= failcom='exit 1'; \
326
327
        for f in x $$MAKEFLAGS; do \
327
328
          case $$f in \
328
329
            *=* | --[!k]*);; \
486
487
          fi; \
487
488
        done
488
489
        -test -n "$(am__skip_mode_fix)" \
489
 
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
 
490
        || find "$(distdir)" -type d ! -perm -755 \
 
491
                -exec chmod u+rwx,go+rx {} \; -o \
490
492
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
491
493
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
492
494
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
530
532
distcheck: dist
531
533
        case '$(DIST_ARCHIVES)' in \
532
534
        *.tar.gz*) \
533
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
 
535
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
534
536
        *.tar.bz2*) \
535
 
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
 
537
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
536
538
        *.tar.lzma*) \
537
 
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
 
539
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
538
540
        *.tar.xz*) \
539
541
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
540
542
        *.tar.Z*) \
541
543
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
542
544
        *.shar.gz*) \
543
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
 
545
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
544
546
        *.zip*) \
545
547
          unzip $(distdir).zip ;;\
546
548
        esac