Bruce Momjian
2a754d70d7
Update pgtools README to be clearer about typdefs.
19 years ago
Bruce Momjian
ab895f3b40
Update pgindent with current typedefs.
19 years ago
Bruce Momjian
1f735c32b2
Add blank lines to pgindent.
19 years ago
Bruce Momjian
fdf5a5efb7
pgindent run for 8.3.
19 years ago
Tom Lane
07c23731f2
contrib/tsearch2 need not be special-cased any longer.
19 years ago
Bruce Momjian
049f6b9baa
Properly pass third argument to open() in fsync test program.
...
Hiroshi Saito
19 years ago
Marc G. Fournier
2a34c1f288
removed from CVS
19 years ago
Marc G. Fournier
b973530737
simple script to pull together a very small (<500k) tar file that builds
...
19 years ago
Tom Lane
dbaec70c15
Rename and slightly redefine the default text search parser's "word"
...
categories, as per discussion. asciiword (formerly lword) is still
ASCII-letters-only, and numword (formerly word) is still the most general
mixed-alpha-and-digits case. But word (formerly nlword) is now
any-group-of-letters-with-at-least-one-non-ASCII, rather than all-non-ASCII as
before. This is no worse than before for parsing mixed Russian/English text,
which seems to have been the design center for the original coding; and it
should simplify matters for parsing most European languages. In particular
it will not be necessary for any language to accept strings containing digits
as being regular "words". The hyphenated-word categories are adjusted
similarly.
19 years ago
Tom Lane
9a4b29d832
Teach pgxs.mk and Install.pm how to install files from a contrib module
...
into SHAREDIR/tsearch_data. Use this instead of ad-hoc coding in
dict_xsyn/Makefile. Should fix current ContribCheck failures on MSVC.
19 years ago
Tom Lane
cd8e1f50dd
Ooops, forgot about adding -DFRONTEND.
19 years ago
Tom Lane
041a8b37f5
Try to fix msvc build for recent initdb changes.
19 years ago
Bruce Momjian
fe385795a1
Add comment.
19 years ago
Bruce Momjian
41f8f37474
Add comment about cvs branch numbers.
19 years ago
Bruce Momjian
e77df38a0f
Add pgcvslog '-d' capability to allow stripping of commit messages that
...
have back branch activity. This will be useful for creating release
notes for major releases.
19 years ago
Magnus Hagander
2890c33084
Build two more .DEF files for ecpg instead of using default ones.
19 years ago
Magnus Hagander
bdf6b888a8
More detailed error msg (with stack trace) if a file copy fails.
19 years ago
Magnus Hagander
f83e44aecd
Use snprintf from libpgport in ecpg compatlib. Required since
...
we restricted exports from ecpglib.
19 years ago
Magnus Hagander
7b4453e5c1
Fix commandlines for final two ECPG regression tests
19 years ago
Magnus Hagander
c8792c86f2
Build DEF file for libecpg instead of generating a default one.
19 years ago
Magnus Hagander
6ddbc1164d
Make ECPG regression tests run with -c only for array_of_struct.pgc
...
on MSVC.
Fix strange nonstandard version of __stdcall specifyer in thread
tests on win32.
19 years ago
Magnus Hagander
ebade3f5bf
Fix typo
19 years ago
Bruce Momjian
8ddeb48cd5
Update pgcvslog text to simply "<branch>"
19 years ago
Bruce Momjian
2d5dfd9516
Fixup for new pgcvslog feature.
19 years ago
Bruce Momjian
7d4dd3ab41
Have pgcvslog mark back-branch commits with "<back-patch>".
19 years ago
Bruce Momjian
e6022e7470
In the release checklist, mention packagers will see the minor upgrade
...
numbering for additional functions.
19 years ago
Magnus Hagander
bdee83e7e4
Add chklocale.c to pgport files for msvc builds, per
...
buildfarm failures.
19 years ago
Andrew Dunstan
c0a8276061
exclude contrib/tsearch2 from regression tests.
19 years ago
Andrew Dunstan
3396d1c695
Turn build and vcregress .bat files into pure one line wrappers for
...
the perl scripts. Remove the now superfluous getregress.pl.
19 years ago
Tom Lane
314ed5de6d
Define the FRONTEND symbol in postgres_fe.h, which allows us to eliminate
...
duplicative -DFRONTEND flags from many Makefiles. We still need Makefile
control of the symbol in a few places that compile frontend-or-backend
src/port/ files, but it's a lot cleaner than before.
Hiroshi Saito
19 years ago
Magnus Hagander
149af068ff
Properly pass -c parameter to ecpg when building regression tests.
...
Per Michael.
19 years ago
Andrew Dunstan
e5b5739a2d
Use proper search for contrib makefiles in vcregress.pl
19 years ago
Andrew Dunstan
3f2a191b44
fix typo in vcregress.pl
19 years ago
Andrew Dunstan
aabb7000dc
Add perl replacements for build.bat and vcregress.bat. In due course
...
the .bat files will be altered to become tiny wrappers for these scripts,
and one or two other .bat files will disappear.
19 years ago
Andrew Dunstan
a8da5761a3
Restrict overly broad searches, and fix typo, in recent fix. Per Hannes Eder.
19 years ago
Andrew Dunstan
576b8903f7
Replace calls to external dir program with perlish globs and File::Find
...
calls. Fixes complaint fron Hannes Eder, whose environment found a different
dir program.
19 years ago
Bruce Momjian
dc29d703d8
Doc reminder that integer pg version also needs updating.
19 years ago
Bruce Momjian
22b613ebd9
Whitespace improvement.
19 years ago
Magnus Hagander
6ee3b2dfe4
Install dictionary sample files.
...
Per buildfarm and Teodor.
19 years ago
Bruce Momjian
1e0eeab155
Document an efficient way to create documentation for back branches.
19 years ago
Tom Lane
f243a1a1bd
Revert temporary patch that made synchronous_commit default to OFF.
19 years ago
Tom Lane
dd4594e332
Fix MSVC build (I think) for recent pg_proc.h column addition.
...
This business with two independent build systems does kinda suck.
19 years ago
Magnus Hagander
69e86a5daf
Exclude tsearch2 contrib tests in regression tests,
...
pending decision on exactly what will happen with
contrib/tsearch2 now that it's in core.
19 years ago
Magnus Hagander
90d9fc0aa9
Install stopword files
19 years ago
Magnus Hagander
3b1e04c3e9
Fix generation of snowball_create.sql on msvc builds.
19 years ago
Tom Lane
5c681ab1cb
Exclude snowball/libstemmer/ files from the set processed by pgindent.
...
There's not much point in prettifying machine-generated code, and it
seems best to keep these files exactly like upstream anyway. Also add
some notes about why various files are excluded.
19 years ago
Magnus Hagander
b913a94d0a
Build snowball DLL for tsearch-in-core.
...
(Still needs to build the .sql output files, but this handles the C part
of the build)
19 years ago
Tom Lane
140d4ebcb4
Tsearch2 functionality migrates to core. The bulk of this work is by
...
Oleg Bartunov and Teodor Sigaev, but I did a lot of editorializing,
so anything that's broken is probably my fault.
Documentation is nonexistent as yet, but let's land the patch so we can
get some portability testing done.
19 years ago
Tom Lane
b83bd31bd9
TEMPORARILY make synchronous_commit default to OFF, so that we can get more
...
thorough testing of async-commit mode from the buildfarm. This patch MUST
get reverted before 8.3 release!
19 years ago
Magnus Hagander
dff6797ce5
Disable warning 4090 = different const qualifiers on msvc since it
...
warns about things that aren't wrong.
19 years ago