summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv3836-7679/+3839
2005-04-11Remove postgresql80-lib and postgresql80-docs.kristerw1-3/+1
2005-04-11If need_bsd_install=yes, then also set INSTALL accordingly in the samplejschauma1-1/+2
mk.conf
2005-04-11note postgresql80 update to 8.0.2 and -doc/-client removal.recht1-1/+6
2005-04-11postgresql80-docs has been merged into the client package.recht3-681/+0
(Forgot to remove this in the previous commit.)
2005-04-11catch up with PostgreSQL 8.0.2 and support Darwin .dylibrecht1-3/+21
2005-04-11update to PostgreSQL 8.0.2recht17-1393/+1936
While at it do some structual changes to packages and merge the lib and docs package has been merged into the client package. Also enable Rendezvous support on Darwin. Changes * Increment the major version number of all interface libraries (Bruce) This should have been done in 8.0.0. It is required so 7.4.X versions of PostgreSQL client applications, like psql, can be used on the same machine as 8.0.X applications. This might require re-linking user applications that use these libraries. * Add Windows-only wal_sync_method setting of "fsync_writethrough" (Magnus, Bruce) This setting causes PostgreSQL to write through any disk-drive write cache when writing to WAL. This behavior was formerly called "fsync", but was renamed because it acts quite differently from "fsync" on other platforms. * Enable the wal_sync_method setting of "open_datasync" on Windows, and make it the default for that platform (Magnus, Bruce) Because the default is no longer "fsync_writethrough", data loss is possible during a power failure if the disk drive has write caching enabled. To turn off the write cache on Windows, from the Device Manager, choose the drive properties, then Policies. * New cache management algorithm 2Q replaces ARC (Tom) This was done to avoid a pending US patent on ARC. The 2Q code might be a few percentage points slower than ARC for some work loads. A better cache management algorithm will appear in 8.1. * Planner adjustments to improve behavior on freshly-created tables (Tom) * Allow plpgsql to assign to an element of an array that is initially NULL (Tom) Formerly the array would remain NULL, but now it becomes a single-element array. The main SQL engine was changed to handle "UPDATE" of a null array value this way in 8.0, but the similar case in plpgsql was overlooked. * Convert \r\n and \r to \n in plpython function bodies (Michael Fuhr) This prevents syntax errors when plpython code is written on a Windows or Mac client. * Allow SPI cursors to handle utility commands that return rows, such as "EXPLAIN" (Tom) * Fix "CLUSTER" failure after "ALTER TABLE SET WITHOUT OIDS" (Tom) * Reduce memory usage of "ALTER TABLE ADD COLUMN" (Neil) * Fix "ALTER LANGUAGE RENAME" (Tom) * Document the Windows-only register and unregister options of pg_ctl (Magnus) * Ensure operations done during backend shutdown are counted by statistics collector This is expected to resolve reports of pg_autovacuum not vacuuming the system catalogs often enough -- it was not being told about catalog deletions caused by temporary table removal during backend exit. * Change the Windows default for configuration parameter log_destination to "eventlog" (Magnus) By default, a server running on Windows will now send log output to the Windows event logger rather than standard error. * Make Kerberos authentication work on Windows (Magnus) * Allow "ALTER DATABASE RENAME" by superusers who aren't flagged as having CREATEDB privilege (Tom) * Modify WAL log entries for "CREATE" and "DROP DATABASE" to not specify absolute paths (Tom) This allows point-in-time recovery on a different machine with possibly different database location. Note that "CREATE TABLESPACE" still poses a hazard in such situations. * Fix crash from a backend exiting with an open transaction that created a table and opened a cursor on it (Tom) * Fix array_map() so it can call PL functions (Tom) * Several "contrib/tsearch2" and "contrib/btree_gist" fixes (Teodor) * Fix crash of some "contrib/pgcrypto" functions on some platforms (Marko Kreen) * Fix "contrib/intagg" for 64-bit platforms (Tom) * Fix ecpg bugs in parsing of "CREATE" statement (Michael) * Work around gcc bug on powerpc and amd64 causing problems in ecpg (Christof Petig) * Do not use locale-aware versions of upper(), lower(), and initcap() when the locale is C (Bruce) This allows these functions to work on platforms that generate errors for non-7-bit data when the locale is C. * Fix quote_ident() to quote names that match keywords (Tom) * Fix to_date() to behave reasonably when CC and YY fields are both used (Karel) * Prevent to_char(interval) from failing when given a zero-month interval (Tom) * Fix wrong week returned by date_trunc('week') (Bruce) date_trunc('week') returned the wrong year for the first few days of January in some years. * Use the correct default mask length for class D addresses in INET data types (Tom)
2005-04-11Update php5 to 5.0.4. This is maintenance/bugfix release, full list of changesjdolecek7-26/+84
available at: http://www.php.net/ChangeLog-5.php#5.0.4
2005-04-11add patch-ab.nathanw1-1/+2
2005-04-11Unmix code and declarations, to placate c89 compilers.nathanw1-0/+21
(Patch submitted upstream)
2005-04-11Net_Socket and Net_SMTP were unbundled from PHP4 in 4.3.11, g/c the relatedjdolecek8-105/+10
conditionals and buildlink logic, and convert to standard DEPENDS
2005-04-11regen with RMD160 hashjdolecek1-1/+2
2005-04-11doesn't appear to be needed anymorejdolecek1-41/+0
2005-04-11Update php4 to 4.3.11.jdolecek10-181/+102
This is a maintenance release that in addition to over 70 non-critical bug fixes addresses several security issues inside the exif and fbsql extensions as well as the unserialize(), swf_definepoly() and getimagesize() functions. All Users of PHP are strongly encouraged to upgrade to this release. Bugfix release * Crash in bzopen() if supplied path to non-existent file. * DOM crashing when attribute appended to Document. * unserialize() float problem on non-English locales. * Crash in msg_send() when non-string is stored without being serialized. * Possible infinite loop in imap_mail_compose(). * Fixed crash in chunk_split(), when chunklen > strlen. * session_set_save_handler crashes PHP when supplied non-existent object ref. * Memory leak in zend_language_scanner.c. * Compile failures of zend_strtod.c. * Fixed crash in overloaded objects & overload() function. * cURL functions bypass open_basedir. PHP4 also doesn't bundle PEAR Net_Socket and Net_SMTP anymore now.
2005-04-11note pkglint/url2pkg bumps to remove bl3 supporttv1-1/+3
2005-04-11Remove autogenerated USE_BUILDLINK3 line. 1.28.tv2-5/+3
2005-04-11Remove USE_BUILDLINK3 support, and deprecate the name instead. 4.12.tv2-13/+8
2005-04-11Install mkcert to help with certificate creation. The script wasmartti3-3/+918
taken from the ap-ssl package (which is for apache 1.3.x).
2005-04-11Security fix for SA14551:salo3-6/+24
"A vulnerability in GNU Sharutils was reported, which can be potentially exploited by malicious, local users to conduct certain actions on a vulnerable system with escalated privileges." Patch from Debian. Bump PKGREVISION.
2005-04-11Note update of wl to 2.14.0.hira2-3/+3
2005-04-11Update wl to 2.14.0.hira3-7/+8
Changes (from NEWS): * Changes in 2.14.0 from 2.12.2 ** New folder type `access' is added. In `access' folder, sub-folders of the specified folder can be treated as one folder. ** Synchronization speed of the folder is improved. The function which calculates list diff is re-wrote and is faster than previous implementation, especially in the folders with large number of the messages. ** New event handling mechanism is incorporated. ** Improved the disconnected operations for IMAP draft saving. There was a bug of message numbering in the disconnected imap draft. It is fixed using new event handling mechanism. ** `Shimbun' summary buffers are updated dynamically. Some shimbun folder does not have correct information. In this version, they are corrected using the message body after retrieval. It is implemented with new event handling mechanism. ** Many bug fixes.
2005-04-11Updated md-whois to 4.7.2.reed1-1/+2
2005-04-11Add INSTALLATION_DIRS for bin and man/man1.reed1-1/+2
2005-04-11Update to md-whois-4.7.2. Suggested by Takahiro Kambe.reed2-7/+7
No changelog included. Many changes documented in separate debian-devel-changes emails via http://packages.qa.debian.org/w/whois.html. Last changes include: - whois.metu.edu.tr does not accept anymore RIPE-like queries. - Updated the .bg and .jp TLD servers. - Updated the IPv4 allocations.
2005-04-11Use &man.make.1; instead of make(1) and fix typo where examplereed1-3/+3
for LOCALBASE said DISTFILES. This is from Kibum Han in PR pkg/29940.
2005-04-11note update of netscaoe7 to 7.2jschauma2-3/+3
2005-04-11Update netscape7 to 7.2, latest stable version available.jschauma4-15/+15
Changes since 7.1 according to http://wp.netscape.com/eng/mozilla/ns7/relnotes/7.html: * Popup Window Controls have been improved to block mouseover pop-ups and limit the number of pop-ups when popup window controls preference is set to off. * Password Manager allows you to display saved passwords. * vCard support in Netscape Mail. * Improvements to Palm Sync. * Table Editing controls in Composer. * New Macromedia? Flash 7 plugin for Windows. * Improvements in browser rendering speed and application start-up. * Improvements in standards support.
2005-04-1158/8-60/8 -> APNIC; ride today's PKGREVISION bump.kleink2-15/+21
2005-04-11Note update of www/ruby-fcgi pacakge to 0.8.6.taca1-1/+2
2005-04-11Update ruby-fcgi to 0.8.6; several bug fixes.taca2-9/+8
Fri Apr 1 10:20:14 JST 2005 sugi@nemui.org * Include errno.h Fri Apr 1 08:09:13 JST 2005 aredridel@nbtsc.org * Report actual errors Adds reporting of errors fcgi experiences. Credit to David Heinemier Hansson for discovery. Fri Apr 1 08:08:07 JST 2005 aredridel@nbtsc.org * FHS Include Paths Wed Mar 30 21:45:11 JST 2005 sugi@nemui.org * 16k+request-memleak fix memory leak when 16k+/reqest. from http://enigo.com/projects/iowa/fcgipatch.html Wed Mar 30 21:43:02 JST 2005 sugi@nemui.org * fix-check_stream_error Simple fix in CHECK_STREAM_ERROR for Potential DoS see http://groups-beta.google.com/group/comp.lang.ruby/browse_thread/thread/f51e79974a454b70/54fe207411e9eb05 for details.
2005-04-11Note update of net/jwhois to 3.2.2nb15.taca1-1/+2
2005-04-11Change whois server for jp domain; whois.nic.ad.jp => whois.jprs.jp.taca3-15/+24
(whois.nic.ad.jp is still valid for IP address.) Bump PKGREVISION.
2005-04-11Note update of net/ftpproxy to 1.2.3.taca1-1/+2
2005-04-11Update ftpproxy package to 1.2.3.taca4-35/+17
pkgsrc fix: try to make it work on Solaris. Version 1.2.3 - -------------------------------- * Fixed bug in waitpid handling in daemon mode. * Added optional xferlog logging. * Added -q option to set the source IP of the outgoing control connection (which set also the IP for data connections).
2005-04-11Having never had anything to do with this package, correct ajwise1-2/+2
MAINTAINER=jwise@netbsd.org which appears to have been copied wholesale from the apache-ant15 package.
2005-04-11update optiona dictionary 'okinawa dictionary'taya2-9/+9
patch supplied from Yamashiro Jun. fix PR pkg/29930
2005-04-11remove -Wno-unused-parameter, which won't fly with older gccjschauma2-6/+6
2005-04-11+ gtk2+-2.6.6, krusader-1.60.0, qnetwalk-1.2 [pkg/29941], zebra-0.95.wiz1-2/+5
2005-04-11ensure that pkgsrc CFLAGS are used. Changes approved by recht.schwarz3-8/+24
2005-04-11Be more informative when cleaning packages and pre-requisites, and cleanagc1-3/+3
up the English in two informational messages. No functional changes.
2005-04-11updated nn to 6.6.5.schwarz2-3/+3
2005-04-11updated nn to 6.6.5. Changes approved by recht.schwarz4-18/+18
2005-04-11Updated gimp to 2.2.6adam2-3/+3
2005-04-11Changes 2.2.6:adam4-12/+13
- reverted change to the print plug-in Changes 2.2.5: - fixed double-click behaviour of GimpButton - properly handle 302 redirect output from wget in URL plug-in - fixed loading of layer masks in PSD plug-in - fixed bugs in PSD save plug-in - fixed Reset in Scale and Resize dialogs - fixed filename encoding issues when loading Script-Fu scripts - fixed i18n build quirks - improve autoscrolling with tablets in Windows - fixed setup of size entries in tool-options - when opening images as layers, do it interactively - fixed precondition checks in gimp_drawable_transform_scale - fixed handling of resolution unit in Print Size dialog - disable "gtk-alternative-button-order" setting because our code doesn't honor it - fixed behaviour of selection tool when dragging from top-right - speed up conversion of grayscale images to indexed colors - fixed bug in grayscale to indexed color conversion - don't offer empty palettes for conversion to indexed color - disable search in container tree-views since it interferes with global accelerators - corrected mousewheel section of default controllerrc - fixed build on amd64/gcc-4.0 - unset Keep Transparency from Color to Alpha plug-in. - fixed crash caused by Histogram dockable in RGB mode - fixed statusbar display for negative moves - fixed a couple of problems in the BMP plug-in - fixed bug in Resize dialog if previews are turned off - fixed disappearing previews in Rotate Colormap plug-in - fixed deletion of fractals in Fractal Explorer plug-in - fixed preview in Deinterlace plug-in - fixed crashes on exit in some locales - fixed installation directories for message catalogs - handle deletion of layers and channels that have a floating selection attached - plugged some smaller memory leaks - fixed preview in Gaussian Blur plug-in for zero radii - fixed a couple of problems in the Winicon plug-in - fixed bug in GIF loader that was triggered with a broken GIF - fixed crash in Ink tool - let the text tool remember the last-used font - quote the print command used in the Print plug-in
2005-04-11Note update of cgoban-java to 2.6.12rh1-1/+2
2005-04-11Update cgoban-java to 2.6.12. Changes are bugfixes only, most notablyrh2-6/+6
SGF files are now saved correctly again.
2005-04-11Fix imlib2 use through dlopen. Patch pointer provided by Charlie Allom.kim6-3/+227
Closes PR 29054.
2005-04-11Add and enable rake.minskim2-2/+4
2005-04-11Import rake.minskim4-0/+61
Rake is a simple ruby build program with capabilities similar to make. Rake has the following features: * Rakefiles (rake's version of Makefiles) are completely defined in standard Ruby syntax. No XML files to edit. No quirky Makefile syntax to worry about (is that a tab or a space?) * Users can specify tasks with prerequisites. * Rake supports rule patterns to sythesize implicit tasks. * Rake is lightweight. It can be distributed with other projects as a single file. Projects that depend upon rake do not require that rake be installed on target systems.
2005-04-11Update HOMEPAGE and fix a typo in COMMENT.minskim1-3/+3