summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2001-03-10Enabled support for alpha platformswulf1-2/+2
2001-03-07${MD5_FILE} -> ${DIGEST_FILE}wiz1-2/+2
2001-03-05Update of p5-pgsql to 1.9.0. Update provided by Damon Brodie injtb4-22/+21
PR pkg/11597. Revision history for Perl extension Pg. 1.9.0 Apr 04 2000 - remove compile errors with perl5.6 - remove old-style interface - change return value in case of failure from -1 to undef - for building the module it is required to set the environment variables POSTGRES_INCLUDE and POSTGRES_LIB 1.8.2 Mar 31 1999 - bug-fix in Makefile.PL for $POSTGRES_HOME not defined - bug-fix in doQuery() spotted by Christopher Hutton <crhutton@welcomecard.com> - minor changes to be compliant with libpq - use PQsetdbLogin (using the provided userid/password) instead of PQsetdb
2001-03-05Remove build system hack that causes build to fail for new libtool.skrll3-9/+23
2001-03-04turn KERBEROS into a binary switchassar1-2/+2
2001-02-26change default group from ingres to pgsql, to match behaviour of otherlukem1-2/+2
applications (uname == gname), and because we've removed the default ingres group anyway.
2001-02-25Cleanup MKDIR usage => INSTALL_*_DIRhubertf2-12/+12
XXX need to teach pkglint to be more picky about this
2001-02-23NOT_FOR_PLATFORM alpha, since IEEE math there isn't up to it.wiz1-1/+4
2001-02-21Upgrade to 3.2.9. Install C++ library as well (not java, since thisfvdl6-178/+371
depends on java being installed, it should probably be in a seperate pkg). Changelog is at http://www.sleepycat.com/update/3.2.9/if.3.2.9.html
2001-02-16Not needed any more -- COMMENTs are in Makefiles now.wiz1-1/+0
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz1-42/+44
While I'm here, unify category Makefiles to more standard style. (If you have tools depending on the previous form, please fix them.)
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz82-82/+85
2001-02-13Patch to fix alpha-related problems. Sent in private mail by Berndt Josefjlam1-0/+2112
Wulf <wulf@ping.net.au>. Fixes PR#10704.
2001-02-13Apply patch to fix alpha-related problems.jlam1-2/+10
2001-02-12Add `shutdown' KEYWORD to rc.d control script so the database properlyjlam1-1/+2
shuts down during shutdown.
2001-02-10Move HTML documentation under ${PREFIX}/share/doc/html.jlam2-62/+62
2001-02-10s/autoreconf/${LOCALBASE}/bin/autoreconf. This was apparently missed injlam1-3/+3
the previous sweep for such changes (perhaps other Makefile.common files also?).
2001-02-06Unify format of MESSAGEs, and include RCS Ids.wiz1-0/+1
2001-02-05Use full pathname "${LOCALBASE}/bin/auto..." in dependences and maketron1-3/+3
targets. This includes a fix for PR pkg/12125 by Tomasz Luchowski.
2001-01-29Add automatic ${VARIABLE} handling for MESSAGE files.wiz1-2/+2
Convert most MESSAGE files to new syntax (${VARIABLE} gets replaced, not @VARIABLE@, nor @@VARIABLE@@). By default, substitutions are done for LOCALBASE, PKGNAME, PREFIX, X11BASE, X11PREFIX; additional patterns can be added via MESSAGE_SUBST. Clean up some packages while I'm there; add RCS tags to most MESSAGEs. Remove some uninteresting MESSAGEs.
2001-01-26etc/rc.d cleanup: rename *.sh -> *hubertf2-4/+4
2001-01-24Depend on tcl>=8.3.2 instead of tcl-8.3.2 now that PKGNAME of tclhe1-2/+2
is bumped to tcl-8.3.2nb1.
2001-01-18Don't force '-O'. Noted by Adam Ciarcinski.wiz2-4/+4
2001-01-10Add support for NetBSD-*-powerpc to embedded mit-pthreads, and enablebriggs9-3/+665
this package for same.
2001-01-09It's "--with-named-curses-libs=...".bad1-2/+3
2001-01-09It's "-lcurses -ltermcap".bad1-2/+2
2001-01-04The way that shared objects were handled in the PLISTs and bsd.pkg.mk wasagc11-13/+47
out of date - it was based on a.out OBJECT_FMT, and added entries in the generated PLISTs to reflect the symlinks that ELF packages uses. It also tried to be clever, and removed and recreated any symbolic links that were created, which has resulted in some fun, especially with packages which use dlopen(3) to load modules. Some recent changes to our ld.so to bring it more into line with other Operating Systems also exposed some cracks. + Modify bsd.pkg.mk and its shared object handling, so that PLISTs now contain the ELF symlinks. + Don't mess about with file system entries when handling shared objects in bsd.pkg.mk, since it's likely that libtool and the BSD *.mk processing will have got it right, and have a much better idea than we do. + Modify PLISTs to contain "ELF symlinks" + On a.out platforms, delete any "ELF symlinks" from the generated PLISTs + On ELF platforms, no extra processing needs to be done in bsd.pkg.mk + Modify print-PLIST target in bsd.pkg.mk to add dummy symlink entries on a.out platforms + Update the documentation in Packages.txt With many thanks to Thomas Klausner for keeping me honest with this.
2001-01-04USE_LIBINTL & BUILD_DEPENDS instead of DEPENDS on gettext.wiz1-5/+3
2001-01-04Move quicklist from misc to databases -- previous import didn't do a thingwiz9-1/+85
since quicklist seems to have been here before.
2001-01-01Fix to compile with python 2.0.wiz1-3/+3
2000-12-28Updated to use python 2.0.wiz2-9/+9
2000-12-28Fix dependency on python to >=1.5wiz1-2/+2
2000-12-27Update jdbc-postgresql to version 7.0.3. Changes since 7.0.2 include:jwise1-2/+2
Tue Jun 06 12:00:00 BST 2000 petermount@it.maidstone.gov.uk - Added org/postgresql/DriverClass.java to the list of files removed by make clean (it's dynamically built) - Fixed Statement, so that the update count is valid when an SQL DELETE operation is done. - While fixing the update count, made it easier to get the OID of the last insert as well. Example is in example/basic.java Tue Jun 06 08:37:00 BST 2000 petermount@it.maidstone.gov.uk - Removed a hardwired 8K limit on query strings - Added some missing org.'s in Connection that prevented the use of the geometric types. Thu Jun 01 07:26:00 BST 2000 petermount@it.maidstone.gov.uk - Removed timezone in getTimestamp() methods in ResultSet. Mon May 15 22:30:00 BST 2000 peter@retep.org.uk - Fixed the message Makefile produces after compiling. It still said about the old Driver class, not the new package. Spotted by Joseph Shraibman <jks@p1.selectacast.net>
2000-12-27Excluded build on Alpha and Mips platforms due missing PostgreSQL supportwulf1-1/+6
2000-12-24Fix timezone return value in threads. From Thomas T. Thai in pkg/11256.skrll2-1/+27
2000-12-22Only install the postgresql modules, and not the setup module.jlam1-10/+6
2000-12-22Remove pgtools.py as it's not present.jlam1-2/+1
2000-12-17Move lots of packages to new time category; fix links; add time subcategorywiz1-2/+2
to main Makefile.
2000-12-17Update package and close PR pkg/11596david2-6/+6
2000-12-15add include/rrd.hwiz1-1/+2
2000-12-15Fix patch (Makefiles don't like leading whitespace)wiz2-9/+9
2000-12-12Unify Makefiles -- mostly headers: remove FreeBSD Ids.wiz1-2/+1
Consistent 4 character indentation of SUBDIR entries.
2000-12-11Rename this script to pgsql.sh, make this script a bit more completejlam3-47/+68
and robust, and add example command_args setting to allow TCP/IP connections to the PostgreSQL database.
2000-12-11It's unnecessary to substitute for @PREFIX@ in a DEINSTALL/INSTALL scriptjlam2-5/+3
as ${PKG_PREFIX} always contains that value.
2000-12-11Cosmetic adjustments.jlam6-60/+122
2000-12-11Honor CFLAGS passed in from environment during build.jlam2-6/+11
2000-12-08Note the packages that include this file so we note when other packages arejlam1-1/+7
update when this one is updated.
2000-12-07Remove unnecessary substitution of @PGHOME@ in pgsql.sh.tmpl.jlam1-2/+1
2000-12-07PGHOME is a subdir of ${PREFIX}, so pass -b ${PREFIX} to useradd insteadjlam4-12/+14
of directly specifying -d ${PGHOME}. Canonicalize usage of PGHOME while I'm at it. Fixes pkg/11660 by Ben Collver <collver@softhome.net>.
2000-12-07Update to 0.95mjl2-4/+4
- add Win32 port from Bob Kline . - applied patch from Rudy Lippan which fixes a memory-leak with failed connections. - applied patch from Hein Roehrig which fixes a bug with escaping a backslash except for octal presentation - applied patch from Francis J. Lacoste to enhance the table_attributes subroutine