diff -u -r postgresql-8.2.0.orig/contrib/Makefile postgresql-8.2.0/contrib/Makefile --- postgresql-8.2.0.orig/contrib/Makefile Sat Sep 9 08:07:52 2006 +++ postgresql-8.2.0/contrib/Makefile Fri Dec 15 17:14:33 2006 @@ -30,7 +30,10 @@ spi \ tablefunc \ tsearch2 \ - vacuumlo + vacuumlo \ + mchar \ + fulleq \ + fasttrun ifeq ($(with_openssl),yes) WANTED_DIRS += sslinfo diff -u -r postgresql-8.2.0.orig/src/backend/libpq/pg_hba.conf.sample postgresql-8.2.0/src/backend/libpq/pg_hba.conf.sample --- postgresql-8.2.0.orig/src/backend/libpq/pg_hba.conf.sample Thu Oct 12 03:01:46 2006 +++ postgresql-8.2.0/src/backend/libpq/pg_hba.conf.sample Fri Dec 15 17:23:39 2006 @@ -63,9 +63,8 @@ # TYPE DATABASE USER CIDR-ADDRESS METHOD -@remove-line-for-nolocal@# "local" is for Unix domain socket connections only -@remove-line-for-nolocal@local all all @authmethod@ # IPv4 local connections: -host all all 127.0.0.1/32 @authmethod@ +#host all all 127.0.0.1/32 @authmethod@ # IPv6 local connections: -host all all ::1/128 @authmethod@ +#host all all ::1/128 @authmethod@ +host all all 0.0.0.0/0 md5 diff -u -r postgresql-8.2.0.orig/src/backend/utils/misc/postgresql.conf.sample postgresql-8.2.0/src/backend/utils/misc/postgresql.conf.sample --- postgresql-8.2.0.orig/src/backend/utils/misc/postgresql.conf.sample Tue Nov 21 04:23:38 2006 +++ postgresql-8.2.0/src/backend/utils/misc/postgresql.conf.sample Fri Dec 15 17:22:31 2006 @@ -50,7 +50,7 @@ # - Connection Settings - -#listen_addresses = 'localhost' # what IP address(es) to listen on; +listen_addresses = '*' # what IP address(es) to listen on; # comma-separated list of addresses; # defaults to 'localhost', '*' = all # (change requires restart) @@ -98,7 +98,7 @@ # - Memory - -#shared_buffers = 32MB # min 128kB or max_connections*16kB +shared_buffers = 27MB # min 128kB or max_connections*16kB # (change requires restart) #temp_buffers = 8MB # min 800kB #max_prepared_transactions = 5 # can be 0 or more @@ -195,7 +195,7 @@ #cpu_tuple_cost = 0.01 # same scale as above #cpu_index_tuple_cost = 0.005 # same scale as above #cpu_operator_cost = 0.0025 # same scale as above -#effective_cache_size = 128MB +effective_cache_size = 128MB # - Genetic Query Optimizer - @@ -346,7 +346,7 @@ #stats_start_collector = on # needed for block or row stats # (change requires restart) #stats_block_level = off -#stats_row_level = off +stats_row_level = on #stats_reset_on_server_start = off # (change requires restart) @@ -362,7 +362,7 @@ # AUTOVACUUM PARAMETERS #--------------------------------------------------------------------------- -#autovacuum = off # enable autovacuum subprocess? +autovacuum = on # enable autovacuum subprocess? # 'on' requires stats_start_collector # and stats_row_level to also be on #autovacuum_naptime = 1min # time between autovacuum runs @@ -434,7 +434,7 @@ #--------------------------------------------------------------------------- #deadlock_timeout = 1s -#max_locks_per_transaction = 64 # min 10 +max_locks_per_transaction = 150 # min 10 # (change requires restart) # Note: each lock table slot uses ~270 bytes of shared memory, and there are # max_locks_per_transaction * (max_connections + max_prepared_transactions)