summaryrefslogtreecommitdiff
path: root/configure.in
Commit message (Collapse)AuthorAgeFilesLines
* Remove leftovers from subproject removals. Fixes for Python and KerberosPeter Eisentraut2002-09-041-15/+9
| | | | configuration.
* Stamp configure.in with 7.3b1, not just 7.3. Seems Marc does thatBruce Momjian2002-09-041-2/+2
| | | | usually anyway.
* Brand 7.3. Ready for beta!Bruce Momjian2002-09-041-2/+2
|
* Remove all traces of multibyte and locale options. Clean up commentsPeter Eisentraut2002-09-031-8/+1
| | | | referring to "multibyte" where it really means character encoding.
* Add check for Ant version >= 1.5.Bruce Momjian2002-09-021-3/+6
|
* Update documentation for --with-perl.Bruce Momjian2002-08-301-2/+2
|
* Re-enable perl configure tests for psql help file generation.Bruce Momjian2002-08-301-1/+16
|
* perl5 interface moved to gborgMarc G. Fournier2002-08-301-16/+1
|
* Remove all traces of the ODBC driver, which is now on GBorg as the psqlodbcMarc G. Fournier2002-08-221-45/+1
| | | | project ...
* Okay, libpq++ is moved to GBorg, and all traces of it have been removedMarc G. Fournier2002-08-221-43/+1
| | | | | | | | from the core repository ... I haven't *moved* the libpq++ files out of the tree, mainly as we want to keep them in place for past branches ... Peter, I think I've covered all the files I need, and re-ran autoconf to make sure the configure file is in place properly ...
* Enable large file support.Peter Eisentraut2002-08-201-1/+6
| | | | Use off_t and size_t in pg_dump to handle file offset arithmetic correctly.
* Assemble portability modules into libpgport library.Peter Eisentraut2002-07-271-57/+31
| | | | Some makefile simplifications.
* Complete TODO item:Bruce Momjian2002-07-191-1/+8
| | | | * -Add BSD-licensed qsort() for Solaris
* Move libc replacement files from src/backend/port to src/port.Bruce Momjian2002-07-181-16/+16
|
* Improve getopt_long search, per Peter:Bruce Momjian2002-07-171-2/+2
| | | | AC_SEARCH_LIBS(getopt_long, [getopt])
* Move few remaining src/utils files to backend/port so everything is inBruce Momjian2002-07-161-2/+9
| | | | | | one place. Everything may be moved to src/utils eventually. Add DLLINIT variable to simplify makfiles.
* Add search for libgetopt.a in hopes of finding getopt_long().Bruce Momjian2002-07-151-9/+10
|
* Remove certain Makefile dependencies by using full pathnames inBruce Momjian2002-07-151-8/+8
| | | | configure.in.
* Move CXX platform-specific stuff into template files.Bruce Momjian2002-07-071-7/+7
|
* Change PL/Perl and Pg interface build to use configured compiler andPeter Eisentraut2002-05-281-2/+4
| | | | Makefile.shlib system, not MakeMaker.
* Change PL/Tcl build to use configured compiler and Makefile.shlibPeter Eisentraut2002-05-241-3/+9
| | | | | | | | | | system, not Tcl-provided one. Make sure export file, if any, is cleaned. Tcl configuration is now read directly in configure and recorded in Makefile.global. This eliminates some duplicate efforts and allows for easier hand-editing of the results, if necessary.
* Create an internal semaphore API that is not tied to SysV semaphores.Tom Lane2002-05-051-1/+23
| | | | | | As proof of concept, provide an alternate implementation based on POSIX semaphores. Also push the SysV shared-memory implementation into a separate file so that it can be replaced conveniently.
* Fix typo.Tom Lane2002-04-261-2/+2
|
* Add checking for syslog.hTatsuo Ishii2002-04-261-30/+8
| | | | | Enable multibyte support by default. Note that this is the first cut, and I'm gloing to remove #ifdef MULTIBYTE and others step by step...
* Sorry for the package, but the following patch need to be applied to getBruce Momjian2002-04-241-2/+2
| | | | | | the new verion compiled on SCO Openserver 5.0.5 and Unixware 7.1.1 Nicolas Bazin
* Provide new option "--enable-integer-datetimes". Defaults to disabled forThomas G. Lockhart2002-04-211-1/+10
| | | | now, but we may want otherwise on systems which support it.
* Remove --enable-syslog optionTatsuo Ishii2002-04-211-8/+2
|
* Allow detection of collateindex.pl in stylesheet directory or in path,Peter Eisentraut2002-04-141-8/+6
| | | | | | | | | which covers some recent installation schemes. Add Mandrake installation layout to directories to check for stylesheets. Allow documentation build to proceed if stylesheets were not found, in case the stylesheets might be found through the SGML catalog mechanism.
* Readline and Zlib now required by default. Add options --without-readlinePeter Eisentraut2002-04-101-31/+56
| | | | and --without-zlib to turn them off.
* Add make install-strip target.Peter Eisentraut2002-04-101-1/+2
|
* Locale support is on by default. The choice of locale is done in initdbPeter Eisentraut2002-04-031-11/+1
| | | | and/or with GUC variables.
* Fix broken PG_VERSION_STR.Tom Lane2002-04-011-2/+2
|
* Fix more random breakage manifesting on FreeBSD.Peter Eisentraut2002-03-301-2/+3
|
* Reorder some things so prerequisite macros don't get expanded implicitlyPeter Eisentraut2002-03-301-11/+12
| | | | within a shell conditional.
* Upgrade to Autoconf version 2.53. Replaced many custom macroPeter Eisentraut2002-03-291-205/+189
| | | | | | calls with new or now-built-in versions. Make sure that all calls to AC_DEFINE have a third argument, for possible use of autoheader in the future.
* MovePeter Eisentraut2002-03-131-2/+0
| | | | | | | | src/GNUmakefile.in to src/Makefile and src/backend/port/Makefile.in to src/backend/port/Makefile All configure substitutions are now done in Makefile.global.
* Change "head -1" to "sort q" as suggested for POSIX compatibility.Bruce Momjian2002-03-121-1/+1
|
* At this moment, --enable-debug adds debugging information to most of theBruce Momjian2002-03-051-1/+1
| | | | | | | | | | parts o f postgresql. The jdbc drivers are never compiled with debugging support. This p atch make sure that debugging information is added to the jdbc jar when the --en able-debug is added. This was usefull for me for debugging some java jdbc poolin g objects but this might perhaps be usefull for other people too? Dries Verachtert
* > Tatsuo Ishii wrote:Bruce Momjian2002-03-051-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > > > > It was made to cope with encoding such as an Asian bloc in 7.2Beta2. > > > > > > > > Added ServerEncoding > > > > Korean (JOHAB), Thai (WIN874), > > > > Vietnamese (TCVN), Arabic (WIN1256) > > > > > > > > Added ClientEncoding > > > > Simplified Chinese (GBK), Korean (UHC) > > > > > > > > > > > > > http://www.sankyo-unyu.co.jp/Pool/postgresql-7.2b2.newencoding.diff.tar.gz > > > > (608K) > > > > > > Looks good. I need some people to review this for me. > > > > For me they look good too. The only missing part is a > > documentation. I will ask him to write it up. If he couldn't, I will > > do it for him. > > > The diff is 3mb > > > but appears to address only additions to multibyte. I have attached a > > > list of files it modifies. Also, look at the sizes of the mb/ > > > directory. It is getting large: > > > > > > 4 ./CVS > > > 6 ./Unicode/CVS > > > 3433 ./Unicode > > > 6197 . > > > > Yes. We definitely need the on-the-fly encoding addition capability: > > i.e. CREATE CHRACTER SET in the future... > > -- > > Tatsuo Ishii > > > > Address chainge. http://www.sankyo-unyu.co.jp/Pool/postgresql-7.2.newencoding.diff.gz Add PsqlODBC and document ...etc patch. Eiji Tokuya
* Heimdal support (Kerberos V implementation from KTH)Peter Eisentraut2002-02-231-4/+21
|
* Set version to 7.3devel.Peter Eisentraut2002-02-181-1/+1
|
* Stamp configure/configure.in for 7.2, already did register.txt andREL7_2Bruce Momjian2002-02-031-1/+1
| | | | bug.template.
* let's roll up rc2 ..REL7_2_RC2PostgreSQL Daemon2002-01-251-1/+1
|
* Cope with gcc that outputs a multiline version string, per Trond.Tom Lane2002-01-241-1/+1
|
* okay, sorry for delay all ... here is the tag for RC1 ...REL7_2_RC1PostgreSQL Daemon2002-01-221-1/+1
|
* tag as beta 5 for *hopefully* a very very short beta cycle on this one?REL7_2_BETA5PostgreSQL Daemon2002-01-141-1/+1
|
* Add memcmp() test and new memcmp.c file, for SunOS. Tested by Tatsuo.Bruce Momjian2001-12-201-0/+3
|
* --with-pam was claiming to take an argument, but didn't. Help display fixed.Peter Eisentraut2001-12-131-12/+5
|
* tag it as b4, with all the changes that have gone on ...REL7_2_BETA4PostgreSQL Daemon2001-12-121-1/+1
|
* Add configure-time check whether sig_atomic_t is defined; if not,Tom Lane2001-12-031-1/+4
| | | | | provide a default definition equating it to 'int'. Should trigger only on machines with pre-ANSI-C header files, eg SunOS 4.1.x.