/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,
298
298
#     (which will cause the Makefiles to be regenerated when you run `make');
299
299
# (2) otherwise, pass the desired values on the `make' command line.
300
300
$(RECURSIVE_TARGETS):
301
 
        @failcom='exit 1'; \
 
301
        @fail= failcom='exit 1'; \
302
302
        for f in x $$MAKEFLAGS; do \
303
303
          case $$f in \
304
304
            *=* | --[!k]*);; \
323
323
        fi; test -z "$$fail"
324
324
 
325
325
$(RECURSIVE_CLEAN_TARGETS):
326
 
        @failcom='exit 1'; \
 
326
        @fail= failcom='exit 1'; \
327
327
        for f in x $$MAKEFLAGS; do \
328
328
          case $$f in \
329
329
            *=* | --[!k]*);; \
487
487
          fi; \
488
488
        done
489
489
        -test -n "$(am__skip_mode_fix)" \
490
 
        || 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 \
491
492
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
492
493
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
493
494
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
531
532
distcheck: dist
532
533
        case '$(DIST_ARCHIVES)' in \
533
534
        *.tar.gz*) \
534
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
 
535
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
535
536
        *.tar.bz2*) \
536
 
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
 
537
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
537
538
        *.tar.lzma*) \
538
 
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
 
539
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
539
540
        *.tar.xz*) \
540
541
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
541
542
        *.tar.Z*) \
542
543
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
543
544
        *.shar.gz*) \
544
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
 
545
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
545
546
        *.zip*) \
546
547
          unzip $(distdir).zip ;;\
547
548
        esac