summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-09-21Update to 1.6.0. This version corresponds to GNOME 2.8.0.jmmv4-35/+19
Overview of changes between 1.5.2 and 1.6.0 =========================================== * Add OpenType support for Hebrew [Dov Grobgeld] * Win32 bug and build fixes [Tor Lillqvist, Hans Breuer, John Ehresman] * Misc bug fixes [Behdad Esfahbod, Jatin Nansi] Overview of changes between 1.5.1 and 1.5.2 =========================================== * Support 'init' feature for Bengali [Sayamindu Dasgupta] * Allow 32-bit property fields in OpenType code * Optimize repeated property lookups in OpenType code * Misc bug fixes [Behdad, Keith Sharp, Morten Welinder] Overview of changes between 1.5.0 and 1.5.1 =========================================== * Add ellipsization support to PangoLayout * Add pango_context_get_font_map(). * Fix metrics for the Xft backend when a transform is in effect * Separate out backend-independent parts of pangoft2topgm for future rendering testbeds. * Code cleanups (use G_DEFINE_TYPE, make PangoMatrix parameters const) * Add a GType for PangoMatrix [Torsten Schoenfeld] * Misc bug fixes [Morten Welinder]
2004-09-21Update to 1.8.0. This version corresponds to GNOME 2.8.0.jmmv4-44/+47
While here, move documentation to share/doc, out of share/doc/html. Changes in version 1.8.0 ======================== * Add translations: Bosnian [Kenan Had\305\276iavdi\304\207], Norwegian [Kjartan Marass], Gujarati [Ankit Patel] * Update translations: Norwegian Nynorsk [\303\205smund Skj\303\246veland], Vietnamese [Nguy\341\273\205n Th\303\241i Ng\341\273\215c Duy], Turkish [Baris Cicek], German [Hendrik Richter], Greek [Nikos Charonitakis], Arabic [Arafat Medini], Brazilian Portuguese [Raphael Higino], Nepali [Pawan Chitrakar], Danish [Martin Willemoes Hansen], Albanian [Laurent Dhima], Finnish [Pauli Virtanen], Azerbaijani [M\311\231tin \306\217mirov] , Polish [Artur Flinta], Panjabi [AmanPreet Singh Alam], Serbian [Danilo \305\240egan], Mongolian [Sanlig Badral], Russian [Russian team <gnome-cyr@gnome.org>], Dutch [Timo Meinen], Ukranian [Maxim Dziumanenko], Canadian English [Adam Weinberger], Simplified Chinese [Funda Wang], Basque [I\303\261aki Larra\303\261aga] Changes in version 1.7.3 ======================== * Minor updates to documentation. * Update translations: Hindi [Guntupalli Karunakar], Czech [Miloslav Trmac], Portuguese [Duarte Loreto], Japanese [Takeshi AIHANA], British [David Lodge], Spanish [Francisco Javier F. Serrador], Korean [Changwoo Ryu], Albanian [Laurent Dhima] Changes in version 1.7.2 ======================== * Added new role ATK_ROLE_EMBEDDED.. (bug #147989) * Add support for AtkRectangle and correct definition of "bounds-changed" signal. * Update translations: Nepali [Pawan Chitrakar], Albanian [Laurent Dhima] Changes in version 1.7.1 ======================== * Allow locale dir to be not hardcoded into binary. (bug #1289006) * Add translations: Turkmen [M\303\274hemmet Amut] * Update translations: Hungarian [Andras Timar], Bulgarian [Rostislav Raikov] Changes in version 1.7.0 ======================== * Add "bounds-changed" signal for AtkComponent. (bug #140476) * Add new state ATK_STATE_TRUNCATED and new relation ATK_RELATION_PARENT_WINDOW_OF. (bug #133375)
2004-09-21Add 'ang' locale, initially used by eel2-2.8.0.jmmv11-11/+55
2004-09-21- Note snort update to 2.2.0adrianp1-1/+2
2004-09-21- Update snort to 2.2.0adrianp4-14/+139
- ok'ed snj@, wiz@ - Install database scripts which goes a part-way to addressing PR 18996 Updated database schema diagram from Chris Reid. Schema can be found in ./doc/snort_schema_v106.pdf Added --include-pcre* configuration option to help cross compiling. Thanks Erik de Castro Lopo. Fixed thresholding/suppression issue with queuing multiple events per packet. Thanks Andreas Ostling. When a rebuilt stream causes an alert, log out the original packets instead of the rebuilt packet. Thanks sekure@gmail.com for the report. Turned off http_inspect alerts that were causing false positives in the preset webserver profiles (Thanks Dan Roelker). Turn off encoding alerts in HTTP parameter field. The parameter field is still normalized, it just doesn't alert. This helps reduce alerts that are generated from complex parameter queries (Thanks Dan Roelker). Fixed memory leak in "fast" output. Thanks for your bug report sekure@gmail.com. Clear error code which under Windows was causing a subsequent false failure in parsing threshold rules. (Thanks to Rich Adamson) Further details can be found in Changelog and RELEASE.NOTES.
2004-09-21Updated wv to 1.0.2adam1-1/+2
2004-09-21Add a lock_file function that generates lockfiles that are usable onjlam1-1/+57
NFS-mounted directories.
2004-09-21Remove nonsensical BUILDLINK_TRANSFORM.jlam1-3/+1
2004-09-21Adapt to differences between the old buildlink3 wrapper scripts and thejlam1-3/+3
new wrapper scripts.
2004-09-21Initial commit of a new wrapper script framework that encapsulatesjlam55-2328/+3446
the non-buildlink-related code and moves it out of mk/buildlink3 into mk/wrapper. The buildlink3 code is modified to simply hook its transformations into the wrapper script framework. The wrapper script framework has some new features: * Support automatically passing "ABI" flags to the compiler and linker depending on the value of ${ABI}. Currently supports the SunPro compiler with ${ABI} == 64 and the MIPSPro compiler with ${ABI} as any of 32, n32, o32, and 64. * making UnixWare GCC accept -rpath options and silently converting them into an appropriate LD_RUN_PATH * Add cmd-sink-interix-gcc and cmd-sink-interix-ld that errors out when it sees -fpic/-fPIC and -shared/-Bshareable, respectively (requested by <tv>). * Much improved debugging output. It's possible to output the wrapper work log in-line with normal output by setting WRAPPER_LOG to "stderr". Important differences in behaviour from the old buildlink3 code include: * Only move the -l options to the end of the command line, leaving the -L options in-place. * Extend the autodetection of the libtool mode to detect "compile" and "uninstall". * Fix problem noted in both PR pkg/24760 and PR pkg/25500, where -L/usr/lib/* was being mangled improperly. * Remove the top-level "buildlink" target; instead, make buildlinking occur as part of the "wrapper" target. * mangle and sub-mangle are only meant to transform directories in -I, -L, and rpath options, so remove the lines in buildlink3/gen-transform.sh that transformed bare directories. * Add the ability for the libtool wrapper to be called just to unwrap an existing libtool archive by running: libtool --mode=unwrap -o libfoo.la The old --fix-la syntax no longer works. 20040818 ======== * Initial release of a new wrapper script framework that encapsulates the non-buildlink-related code and moves it out of mk/buildlink3. These features include: * making MIPSpro accept GCC options * making MIPSpro "ucode" accept GCC options * making SunPro accept GCC options * making "ld" accept -Wl,* options and silently removing the "-Wl," * (NEW) making UnixWare GCC accept -rpath options and silently converting them into an appropriate LD_RUN_PATH One major benefit of this is that the buildlink3 code is now much tighter and easier to understand since it concerns itself solely with buildlink-related details. I haven't yet optimized the wrapper cache, so the new wrapper scripts may take slightly longer to execute than the old buildlink3 wrapper scripts, but I'll be improving this over time. 20040821 ======== * Move the inclusion of $cmd_sink outside of the main loop in wrapper.sh so that the $cmd_sink script can be used to globally scan and process the arguments. Move the LD_RUN_PATH code to a cmd-sink-unixware-gcc script. Garbage-collect the now unused export_vars-related code. * Add cmd-sink-aix-xlc for AIX xlc that munges -Wl,-R* into an appropriate -blibpath option. * Add cmd-sink-interix-gcc and cmd-sink-interix-ld that errors out when it sees -fpic/-fPIC and -shared/-Bshareable, respectively (requested by <tv>). * Move the code that converts full paths to shared libraries into the "-Ldir -llib" equivalents from the buildlink3 code into wrapper/logic. Remove the same from bsd.buildlink3.mk and gen-transform.sh. * Move the code that checks for absolute rpaths from the buildlink3 code into wrapper/arg-source. Remove the same from bsd.buildlink3.mk and gen-transform.sh. * Only move the -l options to the end of the command line, leaving the -L options in-place. * Add more debugging code. 20040824 ======== * Fix quoting problems after arguments are transformed. Remove the hack that was inserted that magically made almost everything work because we do it the right way now. * Move the inclusion of $logic outside of the main loop in wrapper.sh so that the $logic script doesn't have to worry about underflowing the argument buffer. * Encapsulate the loop in wrapper.sh that fills the argument buffer entirely within the arg-source script. * Move from the logic script into the arg-source script the transformations that merge or split arguments. * Fix bug where skipargs was effectively being ignored if it was more than 1. * Handle the whitespace in transformations in the logic script that turn one library option into multiple library options, e.g. "-lreadline" -> "-ledit -ltermcap". * Allow you to specify an environment variable WRAPPER_SKIP_TRANSFORM for whether you wish to skip the transformation step in the logic script. This is intended for testing purposes. * Added check_prog() and init_lib() functions to the shell code library to make it more reusable outside of the wrapper framework. * Allow the msg_log() function to output to "stdout" or "stderr". If you want to have all of the logging appear on the screen, then you can now set WRAPPER_LOG=stderr. * Make some of the script components not overridable on a per-wrapper basis. * Add a gen-transform.sh script that generates transformation sedfiles. The "transform" script is used to transform arguments, while the "untransform" script is used to unwrap files. Move the no-rpath logic from buildlink3/gen-transform.sh into wrapper/gen-transform.sh since it's not buildlink3-specific. * Check for a non-empty blibpath before adding the option in cmd-sink-aix-xlc. * Extend the autodetection of the libtool mode to detect "compile" and "uninstall". * Add a cmd-sink-libtool script that doesn't pass linker options to libtool unless we're in "link" mode. * Set _USE_RPATH to "yes" for UnixWare so that the wrappers will see the rpath options and convert them to a LD_RUN_PATH definition. * Add more debugging code. 20040826 ======== * Rewrite buildlink3/gen-transform.sh to produce more precise sed commands. Drop some unused commands from the mini-language, and add a few more that are more restrictive in their scope. * Fix problem where repeated options weren't properly handled by some of sed commands. It's not enough that they're "global replace", since some patterns match separator characters before and after each option. We must repeat those patterns twice to catch all instances correctly. * Fix problem noted in both PR pkg/24760 and PR pkg/25500, where -L/usr/lib/* was being mangled improperly. * Remove the top-level "buildlink" target; instead, make buildlinking occur as part of the "wrapper" target. * Add more debugging code. 20040828 ======== * Added a head_queue function to shell-lib that returns the head of the named queue without popping it off the front of the queue. * Strip consecutive, repeated library options from the command line when we read it in the logic script. * Be more careful about not underflowing the argument buffer. 20040906 ======== * shell-lib was moved into pkgsrc/mk/scripts; correct references to that file in the wrapper code. * Use opt-sub instead of sub-mangle when protecting -I/usr/include/* and -L/usr/lib/* from buildlink transformations. This avoids adding lines that look like "-I-I..." in the transformation sedfiles. * mangle and sub-mangle are only meant to transform directories in -I, -L, and rpath options, so remove the lines in buildlink3/gen-transform.sh that transformed bare directories. * Fix bug in strip-slashdot where the "." wasn't backquoted and thus matched all characters instead of only the "." character. * Change the libtool wrapper to use a modified buildcmd script that doesn't rearrange any of the arguments. This should fix spurious problems where libtool doesn't understand how to parse the command line when the -l options are moved to the end of the argument list. * Fix bug in the logic script where the $cachearg and $cachedarg weren't being properly set at all times, which caused the cache to contain the wrong transformed argument. 20040907 ======== * Support automatically passing "ABI" flags to the compiler and linker depending on the value of ${ABI}. Currently supports the SunPro compiler with ${ABI} == 64 and the MIPSPro compiler with ${ABI} as any of 32, n32, o32, and 64. * Move back the code that splits absolute paths to shared libraries from arg-source back into logic. This allows us to correctly skip splitting those paths based on the previous option. Also add a sanity check that the library name in the split argument doesn't contain a "/" since shell globs are not as precise as REs. * Don't transform the path given after --dynamic-linker (used by GNU ld for ELF linkage). * Add the ability for the libtool wrapper to be called just to unwrap an existing libtool archive by running: libtool --mode=unwrap -o libfoo.la 20040914 ======== * Add a loop in libtool-fix-la to ensure that all of the options listed in the dependency_libs lines of *.lai files are processed. This fixes a buildlink3 leakage bug. * Merge the gen-transform.sh scripts between buildlink3 and wrapper and place them all in wrapper. This makes sense since the commands simply allow for many types of transformations, which buildlink3 takes advantage of, but there is nothing inherently buildlink-ish about those commands. * Don't directly manipulate SUBST_SED.unwrap. Instead, create the value of SUBST_SED.unwrap by combining several other variables (currently just _UNWRAP_SED) to ensure that the correct ordering is preserved. * Correct some confusing debugging messages.
2004-09-21Changes 1.0.2:adam3-15/+14
* Fix iDEFENSE buffer overrun security problem (thanks to Matthias for heads-up)
2004-09-21Update aide06 to 0.6nb1agc1-1/+2
Give a bit of leeway in the atime time calculation - the problem is that, on a large SMP bulk build machine, and occasionally on smaller less busy machines, we can get a false-postive message in the aide output because the atime on a group of files can be one second later than "cur_time", the current time as returned to aide. So allow for one second's difference in the time calculation.
2004-09-21Give a bit of leeway in the atime time calculation - the problem isagc3-2/+18
that, on a large SMP bulk build machine, and occasionally on smaller less busy machines, we can get a false-postive message in the aide output because the atime on a group of files can be one second later than "cur_time", the current time as returned to aide. So allow for one second's difference in the time calculation. Bump package revision.
2004-09-21If we're on Linux, build-depend on archivers/zip so the jars canjschauma1-1/+3
be built correctly. Suggested by pancake at phreaker dot net in PR pkg/26979.
2004-09-21Update DESCR, requested and supplied by Christoph Egger.wiz1-10/+14
2004-09-21Added entry for updating gcc34shannonjr1-1/+2
2004-09-21Upgrade from 3.4.1 to 3.4.2. gcc 3.4.2 is a bug fix release containing fixesshannonjr3-13/+12
for regressions in GCC 3.4.1 relative to previous releases of GCC.
2004-09-21Note update of proftp to version 1.2.10.cube2-3/+3
2004-09-21Update to version 1.2.10. From PR 27012 by pancake at phreaker dot net.cube3-10/+13
1.2.10 - Released 04-Sep-2004 -------------------------------- - Bug 2440 - Unable to use PAM authentication properly. Use a "*" after the module name in an AuthOrder directive to indicate that an auth module is authoritative. - Bug 2441 - AIX5 portability bug with mod_auth_unix, mod_auth_file. - Bug 2442 - Segfault in FreeBSD PAM library with long login names. - Bug 2445 - AuthUserFile in <Global> context overrides <VirtualHost> setting. - Bug 2444 - Use of sendfile() does not interoperate well with RFC2228 security mechanisms. Using sendfile(2) to send data bypasses the handling of the data by RFC2228 security mechanisms (such as those provided by mod_tls). So if security mechanisms are detected, do not use sendfile(). - Scrub the ScoreboardFile for stale sessions in inetd mode. - Bug 2427 - proftpd gets a memory fault when run from ssh batch mode. 1.2.10rc3 - Released 13-Jul-2004 -------------------------------- - Fixed typo that prevented 1.2.10rc2 from compiling. 1.2.10rc2 - Released 13-Jul-2004 --------------------------------- - Bug 2396 - NLST command doesn't understand options. This was caused by the solution for Bug 2322. However, it is not a popular solution, so NLST will once again handle options, but only the relevant options. - Bug 2034 - Add support for a "graceful shutdown" signal. See contrib/mod_ctrls_admin.html#shutdown for details. - Bug 2400 - <Class> search order is wrong. The documentation correctly stated that <Class> sections are matched in order of definition, but the code has the match order in the reverse order of definition. - Bug 2401 - MaxClientsPerClass only checks first directive in config file. - Bug 2399 - Rename start/stop control actions to up/down. - Bug 2082 - Add mod_rewrite "replaceall" builtin function. See the RewriteMap documentation for more details. - Bug 2403 - Sending SIGHUP to proftpd stops it when using Classes. The fix for Bug #2400 could result in an infinite loop during a SIGHUP. - Bug 2405 - "LIST *" should not list dotfiles. - Bug 2366 - Add support for -h list option. - Bug 2332 - SO_OOBINLINE error after upgrading proftpd from 1.2.6 to 1.2.9. This is due mostly to a change in the logging; a check for error values and logging of them was added. The setting of this particular socket option has been moved earlier in the session, as it was found that short-lived TCP connections, as from monitoring systems, would cause this error. - Bug 2407 - mod_auth_file does not allow for proper cascading of "end" and "set" auth requests. - Bug 2410 - CreateHome always copies skel directory. - Bug 2336 - Use of /dev/log on Solaris leads to kernel memory leak. ProFTPD's use of the /dev/log device on Solaris was tickling a Solaris kernel bug that caused the Solaris kernel to leak memory. - Added a TimeoutLinger directive to complement the --enable-timeout-linger configure option. - Bug 2125 - -vv command line switch should list versions of modules. - Bug 2420 - Name field is not escaped before querying database. The mod_quotatab module was not properly escaping the name string it used when looking up records from SQL databases. - Bug 2424 - SQLDefaultHomedir overrides column value. - Bug 2411 - Caching effects cause RNTO to fail if AllowOverwrite is off and target path does not exist. - Bug 2422 - %v not working in SQLNamedQuery. - Bug 2418 - chmod returns 550 with filename containing multiple spaces. - Bug 2431 - mod_sql does not use UID/GID properly in cache lookups. - Bug 2303 - Problem evaluating multiple <Class> rules. - Bug 2419 - Ability to disable TLSRequired on per-user basis (e.g. for anonymous logins). - Bug 2438 - Display variable %z not expanded properly. - Bug 2439 - <Limit CWD> doesn't work. 1.2.10rc1 - Released 28-Apr-2004 --------------------------------- - Bug 2135 - Add ability to handle passphrase-protected server keys. mod_tls can now properly prompt for passphrases for protected server certificate keys when the daemon is starting up. - Bug 2086 - Add limits for PORT, PASV. This means that now one can use <Limit> to place access controls on the PORT and PASV commands. This applies to the EPRT and EPSV commands as well. - Bug 2174 - mod_auth_unix should not act authoritatively. This was causing problems when using mod_auth_unix.c and the AuthOrder configuration directive. - Bug 2098 - Added SetEnv and UnsetEnv configuration directives. - Bug 2271 - Improper autoconf check for getaddrinfo() on Tru64 UNIX 5.1. The getaddrinfo symbol is a macro, not a function, on that platform. - Bug 2255 - RADIUS Service-Type should reflect attribute expectations. - Added Event API. - Bug 2272 - Address/port collision check needs to handle DefaultAddress. - Bug 2072 - Add Controls API. This API includes a new program, ftpdctl, that is used to communicate directly with the proftpd daemon via a new core module, mod_ctrls. For this new functionality to be used, proftpd must be configured using the added --enable-ctrls option. - Bug 2015 - Add AND, OR keywords to Allow/DenyUser directives. The AllowUser, DenyUser, AllowGroup, and DenyGroup directives now take an optional keyword that indicates what type of expression they are: AND, OR, or regex. By default, AllowUser and DenyUser are OR expressions, and AllowGroup and DenyGroup are AND expressions. For example: AllowUser regex ^ftp DenyUser AND dave,bob AllowGroup OR web,doc These demonstrate that the optional keyword modifier must be the first parameter in the configuration directive. - Bug 2046 - Change RFNR and RNTO logging class to WRITE. This means that ExtendedLogs that use the WRITE logging class will now include the RNFR and RNTO commands. - Mac OS X 10.3 portability fixes. - Bug 2274 - Default server only binds to one IP address of host if the --enable-ipv6 configure option is used. ProFTPD will now properly bind to all addresses for the default "server config" server. - Bug 2048 - Add ability to get configuration file values from environment. For example, you can now have the following in your proftpd.conf: DefaultAddress %{env:PR_DEFAULT_ADDR} which indicates to ProFTPD's configuration parser to get the value of the PR_DEFAULT_ADDR environment variable, and substitute it in, e.g.: PR_DEFAULT_ADDR=1.2.3.4 ./proftpd ... If the indicated environment variable is not present, the value is substituted with the empty string. - Bug 1635 - Older systems' chown(1) does not support -h option. The solution is to prevent this error from stopping the 'make install' process, as it is a harmless error on such systems. - Bug 2290 - gmtime() static storage may be overwritten by modules. - Bug 2288 - ServerFQDN set to 255.255.255.255 and not hostname. - Added mod_quotatab to the contrib area. - Bug 2300 - poll() returns 1 and read returns 0, resulting in an inifinite loop. The actual bug was caused by a goto that was being inappropriately used; a return value was not being checked to see if it was an error value. - Bug 2305 - Compile Problems since > 1.2.9 Fix the build under Solaris - ftpdctl needs to be linked against libsocket and libnsl. - Bug 2267 - Broken IP subnet matching. Added new ACL parsing/matching code. - Bug 2307 - MySQL 4.1.1 API change causes mod_sql_mysql compilation failure. - Bug 2319 - Build scripts have owner-only execute permission. This was causing problems whenever a user other than the owner of the files attempted to build proftpd. - Bug 2320 - autoconf check for socklen_t doesn't work on FreeBSD 4.8-RELEASE. The fix is to include <sys/types.h>, if present, sooner in the check. - Bug 1925 - Clean up of Class code. The Class and Classes directives are now deprecated. See README.classes for more details. - Bug 2295 - mod_tls returns multiline response to AUTH commands. - Bug 2322 - NLST -a returns listing formatted for LIST -a. RFC959 does not explicitly allow dash-style options for LIST or NLST, although many clients attempt to use them. De facto FTP server behaviors handle options for LIST; options for NLST will be explicitly rejected. - Bug 2315 - Overlapping virtual server causes error. If a <VirtualHost> was configured to handle the same IP address and port as the "server config" server, the wrong server configuration was being removed. - Bug 2324 - Directories whose names contain whitespace are inaccessible. - Bug 2306 - ftpcount output should handle case of no users. When no clients are connected, ftpcount now displays "0 users". - Bug 2337 - TLSRenegotiate parameters not processed correctly. - Bug 2340 - Problem with parallel builds. Proper dependencies added when building ftpwho and ftptop. - Bug 2327 - SQLNegativeCache causes unnecessary errors in server logging. - Bug 2237 - HiddenStores does not check for existing file in edge case. - Bug 2171 - Add delete options to ftpasswd. The ftpasswd script now supports the --delete-user and --delete-group options. - Bug 2105 - Remove Authoritative directives. The AuthPAMAuthoritative directive, and the "*" syntax of SQLAuthenticate, have been deprecated. - Bug 1696 - Include directive should support directories. The Include directive now functions just like Apache's Include directive, including handling glob characters. - Bug 2311 - MaxClients counts unauthenticated users. According to the documentation, the MaxClients configuration directive should only count authenticated clients. - Bug 2339 - STAT command doesn't follow RFC959. Previously, ProFTPD did not support use of the STAT command during file transfers. This functionality is now implemented. Sites wishing to prevent this can limit use of the STAT command by using <Limit STAT>. - Bug 2257 - Add SITE SYMLINK command to mod_site. Rather than adding this command to the mod_site module, a new module, mod_site_misc, has been added to the contrib area. The mod_site_misc module implements SITE SYMLINK, and a few other SITE commands. See contrib/mod_site_misc.html for details. - Bug 2355 - Send error message to client when 'TLSRequired on' is in effect. Previously, if SSL/TLS was configured to be required for both control and data channels, if the client did not perform the SSL/TLS handshake for a data transfer, the connection would hang. Now, an error message is sent to the client if no handshake is done. - Bug 2353 - REST doesn't handle offsets greater than 2 GB. - Bug 2357 - ftptop should use COLS for determining display width. - Bug 2321 - FTP permission checks inconsistent for DELE and RMD/XRMD when symlink is in directory path. This bug affected the RNFR command as well. - Bug 2361 - Second USER command causes problems with chrooted session. - Bug 2363 - ABOR response RFC 959 compliance. The 226 response was being sent before closing the data connection; RFC 959 implies that the data connection is closed first. - Bug 2369 - EPSV should not send network address when MasqueradeAddress is used. RFC 2428 does not address the case where a server may wish to return an address in the EPSV response that differs from the control connection address, as is done in a PASV response for forwarding devices (e.g. NAT, firewall). Until the proper behavior can be determined, do not honor MasqueradeAddress for EPSV. - Bug 2367 - LIST *.* strange behaviour. The builtin listing mechanism was inadvertently recursing into globbed directories when recursion was not actually requested. - Bug 2371 - ftpasswd should have option to compare password against value in passwd file. ftpasswd now supports a --not-previous-password option. - Added a `howto' directory under `doc/', for mini-HOWTOs. - Bug 2221 - proftpd on hp-ux 11.22. The default data type of socklen_t on HP-UX 11 is problematic; many system calls expect an int, and the default type is a size_t. This mismatch causes problems for 64-bit builds. - Bug 2385 - Renames fail with error "Invalid cross-device link". - Bug 2383 - mod_ctrls.c: ctrls_listen(): Invalid size in bind() argument. The size of struct sockaddr_un is not consistent across platforms. - Bug 2387 - PRIVS_USER macro should set effective GID to user's primary GID. - Added a `modules/' directory under `doc/', for core module documentation. Currently there are HTML docs for mod_auth_file, mod_cap, and mod_ctrls. - Bug 2317 - Wrong order of privs calls on HP generates "unable to setregid()" error.
2004-09-21Note koffice update.markd2-3/+3
2004-09-21Update koffice to 1.3.3markd2-8/+8
Changes: KOffice Libraries KOfficeCore: * Support MS-DOS EPS files directly without stripping them internally. * Display errors when the part cannot be loaded - e.g. due to an undefined symbol. This fixes the long-standing "program exits with error code 1 and no warning" problem. KOfficeUI: * Fixed initial active tab in the opening dialog, to also remember when "Open Recent File" was used last. KoText library features (shared between KWord and KPresenter): * Fixed date format not available for some date variables * Match words to auto-correct in a case-sensitive way to allow entries to have upper case letters. * Do not use a different size for bullets/numbers in front of paragraphs starting with bold or italic. * Fixed copy/pasting of lines containing tabs (not all lines would be pasted) * Indic/Malayalam support, with thanks to Rajeev J Sebastian. All Applications * Fixed handling of remote KOffice files in Konqueror. * Fixed race condition when using dcopstart. KWord * Fix all 3 style menus for any translation * Fix loading of tabulators in old KWord documents * Restart numbering starting a new list KSpread * Fix special paste from cell with formula * Fix "Expense Report" template * Fix untranslatable strings in function descriptions Filters KWord's OOWriter export filter: * Fix generation of spaces KPresenter's OOImpress import filter: * Fix crash when we load presentation background page * Import help line * Import animation order * Import setting * Import transparency for object KPresenter's OOImpress export filter: * Export settings into settings.xml (Snap drawing line) * Fix generate list of picture * Export transparency attribute * Fix header into content.xml KSpread's OOCalc export filter: * Fix save manifest.xml into META-INF/ * Implement save settings into settings.xml (active table, cursor position) KSpread's GNUmeric export filter: * Fix writting * Generate UTF-8 * Fix export of sheets with more than 255 rows or columns KSpread's MS Excel import filter: * Fix generating numbers, especially if the decimal symbol is a comma KSpread's CSV export filter: * Fix export of sheets with more than 255 rows or columns KSpread's HTML export filter: * Fix export of sheets with more than 255 rows or columns
2004-09-21Updated automake to 1.9.2:wiz4-8/+8
Bugs fixed in 1.9.2 (10th anniversary release): * Sort rm commands output for mostlyclean-generic, clean-generic, distclean-generic and maintainer-clean-generic, so that the produced Makefile is not sensible to the way Perl sorts its hashes. * Support `+' in the name of directories given to `include'. * Preserve spaces in the arguments of `compile'. * `missing' will no longer try to emulate a tool that is run with `--version' or `--help' as argument. * Noteworthy manual update: - There is a new chapter about the history of Automake.
2004-09-21+ automake-1.9.2, ettercap-0.7.1, evolution-2.0.0, getmail-4.2.0,wiz1-8/+9
imp-3.2.6, libtool-1.5.10, proftpd-1.2.10 [pkg/27012], treecc-0.3.2 [pkg/27013]. - tla-1.2.1 (thanks, Marc!).
2004-09-21Update mail/clamsmtp to 0.8.xtraeme5-11/+22
Changes: 0.8 - clamsmtpd now uses a configuration file - Transparent proxy support [Andreas Steinmetz] - Compile option -Wall only enabled on debug builds - Sample script changed due to configuartion file - Fixed other minor bugs
2004-09-21libmikmod updated to 3.1.11.1.wiz1-1/+2
2004-09-21Update to 3.1.11.1:wiz2-7/+12
Summary of changes between libmikmod 3.1.11 and libmikmod 3.1.11-a ======================================================================== libmikmod-3.1.11-a was released on 05/03/2004 Most of my work and attention goes on the 3.2.x series, but I still receive occasional bug reports and patchs for the 3.1.11 version. There are not enough changes to make a full release, but many people may find this patch useful. BUGFIXES - libmikmod playback now works correcly on amd64 (type size problem) - fixed warning issued by automake >= 1.8 - config.sub and config.guess updated Summary of changes between libmikmod 3.1.10 and libmikmod 3.1.11 (Thiers): ========================================================================== libmikmod 3.1.11 was released on 01/21/2004. This is a small maintenance release. I know there are not many changes, but since it has been a very long time since the last one, and meanwhile libmikmod changed maintaner, I think it is justified. THANKS - Ingo Saitz, the maintainer of the mikmod packages for debian, for bugfixes. - Frank Loemker, for the lcc-win32 stuff and fixes for the direct sound driver. BUGFIXES - Playback problems in MODs of length >128. This fixes the file beatwave.mod. Thanks to Emmanuel Coirier for pointing this out. - Applied debian patches: - Fix for broken volume fadeouts of IT instruments - Fixed configure test for pthread - devfs support for Linux OSS - Makefile for lcc-win32. To compile libmikmod with lcc-win32 a rather new version is needed. I currently use version 3.7 compiled on Jan 20 2002. A version half a year old did not work. To compile - check that you have the lcc bin directory in the PATH (and no other compiler bin dirs), - change to libmikmod-3.1.11/win32, - check Makefile.lcc for any needed changes, and - use make -f Makefile.lcc. - Different fixes for the direct sound driver: - Pausing did only work for half of the buffer. - Restarting the player did not work as the output thread was removed in DS_PlayStop(). - Removed busy waiting for end of thread. - Sound output is started immediately on the first call to DS_Update() to be consistent with other non threaded drivers. - Different small clean ups. - In MikMod_Reset() the raw output driver driver did not use the filename set via the cmdline.
2004-09-21Remove "bidwatcher" version 1.3.16 after the package was updated.tron1-2/+1
2004-09-21Note update of "bidwatcher" package to version 1.3.16.tron1-1/+2
2004-09-21Update "bidwatcher" to version 1.3.16. Changes since version 1.3.15:tron3-38/+21
- Parse eBay pages properly again - A parsing error leading to a segmentation fault is fixed (patch from Klaus Singvogel) - Get the snipe key 60 seconds before sniping because this key becomes stale. - Snipes do not try to get a snipe key at startup or setup. - Set the proxy during startup. Otherwise a "Network error" is issued at startup behind a proxy. - Workaround a bug with german umlauts and other ascii > 127 in the details windows. They are simply removed. - Recognize shifting end times of auctions. - User listings: - The auction-id was read as "unsigned long" (4 Byte) instead of "unsigned long long" (8 Byte). Due to that truncation some auction-ids were not handled correctly. - Ebay places linebreaks at the worst places in its pages: the parser did not remove them all. So the auction id was not found. - Obtain snipe-key just when necessary, not earlier. - New feature: Snipe groups
2004-09-21Correct typo. From PR 27010 by Cesar Catrian C.cube1-2/+2
2004-09-21note update of verilog-current to 20040915dmcmahill1-1/+2
2004-09-21update to verilog-current-20040915. Changes in this snapshot:dmcmahill2-5/+5
The big news is that module instance arrays now work. Gate and UDP instance arrays have worked for a while, but module instance arrays were more tricky because of the scope arrys they create. The issues have been dealt with, and module instance arrays are now supported. An interesting but subtle set of bugs in the evaluation of ternary expressions has been fixed. The problems expressed themselves when the condition expression was constant. Degenerate wait statements now work properly. The @* syntax apparently missed sensitivities in l-value expressions of assignment statements. This led to subtle bugs in carefully crafted bits of code. Verilog attributes are properly parsed in a few more contexts. Also, some specify syntax cases have been fixed. Some minor spelling and documentation errors have been fixed, along with assorted compiler warnings.
2004-09-21note update of fastcap to 2.0.19920918dmcmahill1-1/+2
2004-09-21update to fastcap-2.0.19920918. Old distfile was no longer available.dmcmahill3-33/+28
New version is the same code but with a newer and less restrictive license. Also update the homepage.
2004-09-21+raine-0.41.1; sml-nj-110.49 is in pkgsrc-wip; -thunderbird (thanks, taya!).wiz1-4/+3
2004-09-21physfs updated to 1.0.0.wiz2-6/+4
2004-09-21Update to 1.0.0:wiz7-34/+20
12292003 - Updated CodeWarrior projects from CW6 to CW7, and made a bunch of patches to get the Mac Classic target building again. Removed zlib114 from CVS repository. Updated OS/2 build batch file. Added Z_PREFIX define to Unix builds that use internal zlib. Patched up some (outdated?) Visual C project files for zlib121. Patched Doxyfile and physfs.h for newer Doxygen. Fixed OS/2 build script. Tweaked Project Builder files to at least compile. Added some last minute BeOS and Cygwin build fixes. Updated Visual Studio projects and tweaked some Makefile.am crap. Made changes so Visual Studio files would pack with DOS endlines and... Upped version to 1.0.0 (woohoo!). 12222003 - Fixed a search-and-replace mistake in win32.c that preventing compiling on Windows. (thanks, Brian!) Converted VC6 .dsp to use zlib121; made Z_PREFIX=1 enabled by default to avoid link clashes; put zlib files in separate logical folder in .dsp project; updated zlib121/zconf.h to address remaining symbols that were still causing link warnings. 12182003 - WAD archiver now puts maps into subdirectories, making them accessible to the application. (Thanks, Travis!) RPM spec and Makefile.am* now package zlib_license_change.txt (Thanks, Edward!) 12142003 - Added Doom WAD support (Thanks, Travis!) 12082003 - Fixed some win32.c deficiencies that Robby Dermody pointed out (thanks!) 12072003 - Upgraded internal zlib to 1.2.1 (thanks, Adam!) Other Unix build fixes. 11112003 - Patches to make OS/2 support compile again. 11092003 - Added __PHYSFS_platformStrnicmp(), and made qpak.c case-insensitive. 09122003 - Happy September. Actually released current tree as 0.1.9. 08262003 - Added MiNT support to build process and fixed cross-compiling (thanks Patrice Mandin!) 08092003 - Some Windows build fixes (thanks, Brian Hook!) 07232003 - Upped version to 0.1.9. 07202003 - Switched to zlib license (see new LICENSE text in root of source tree, and zlib_license_switch.txt for details). Had to remove archivers/qpak.c, the Ruby bindings from the extras directory, and the Russian and Spanish translations, since those contributors couldn't be contacted. If they show up, we'll readd them to the project, otherwise we'll eventually replace their work...everyone else signed on for the change. Committed a patch to convert all tabs to spaces (Thanks, James!). Added patch to zip.c to fix crash (thanks, dillo!). Reimplmented qpak.c, by welding together bits of grp.c and zip.c. Ed contacted me, so I could readd his contributions post-license change...I'm going to keep the new qpak.c, but I've readded his Ruby bindings and Russian translations. 06112003 - Patches to globbing.c to handle corner cases (thanks, Bradley!). 06102003 - Added globbing.c to "extras" directory. 05232003 - Rewrote MacOSX/Darwin CD-ROM detection code to use IOKit, which is much much more accurate than the previous code. Updated configure.in and Makefile.am.newautomake for some MacOSX stuff. 05222003 - Fixed win32 crash if PHYSFS_init() is called with a NULL. 05182003 - PocketPC fixes (thanks, David Hedbor!) 05162003 - Compiler warning cleanup in HOG and MVL archivers (Thanks, Bradley!) 04082003 - Minor changes to extras/abs-file.h (Thanks, Adam!) 03302003 - Fixed seeking in uncompressed ZIP entries, and handle a misbehaviour in Java's JAR creation tools. Thanks to "Tree" for pointing these bugs out. Added HOG and MVL archive support for Descent I and II (Thanks, Bradley Bell!). Added example code to do case-insensitive file searches ("extras/ignorecase.*"). 03192003 - Fixed problem in PHYSFS_mkdir() when dirs to be created already exist. Fixed problem where PHYSFS_mkdir() incorrectly tripped an alarm in __PHYSFS_verifySecurity(). 03122003 - Attempt at cleaning up some type correctness for VC++6. Made QPAK archiver case-insensitive (since Quake2 has problems without it). 01302003 - Added buffering API to OS/2 build's exported symbol list. Updated CWProjects.sit and made several fixes to get physfs building on MacOS Classic again. 01282003 - Fixed seeking in buffered files opened for read. 01072003 - .NET assembly and C# wrapper by Gregory S. Read in the extras dir.
2004-09-21fix-mime-charset updated to 0.5.3.wiz2-3/+3
2004-09-21Update to 0.5.3:wiz2-5/+5
2003-09-09 Version 0.5.3 * toLower() function did nothing. Fixed.
2004-09-21capc-calc updated to 2.11.10.wiz2-3/+3
2004-09-21Update to 2.11.10, and drop maintainership.wiz3-8/+11
This release adds changes to better support compiling under cygwin, improved custom function support, including the addition of the pmodm127 example and config("compile_custom") and config("allow_custom") calls, and a missing display help file. It fixes configuration state hashing, document typos, calc -d (to disable printing of the leading ~), and some compilation warnings reported under OS X.
2004-09-20biew updated to 5.6.1.wiz2-5/+4
2004-09-20Update to 5.6.1:wiz2-6/+7
Changes in 5.6.1: This release fixes a bug which blocked dialog's item selection. Changes in 5.6.0: + Java disassembler + New feature: "Tabbed" browsing. (Now you may access F1-F10 actions through TAB key) + Textmode syntax highlighing + New submodes of binmode + AVR disassembler by Stephan Linz + Enable SSE3 for Athlon64 (due Intel Extended Memory 64 Technology) + New feature: input viewer * Fixed Bug 234729(debian.org): Hexadecimal dump is not hex, but binary (if hexmode was forced by -h key in command line) * Fixed Bug 235005(debian.org): Missing values in hex listing (was detected when width of terminal window was 106 chars) * Fixes by Alex: * Fixed bug of block-device opening * Fixed case sensitive search in hexmode * Fixed old and evil bug of not repainting of low part of window under some terminals. + Add russian locales support in linux/unix systems * Fixing multiple QNX related bugs + Added support for QNX 6 Neutrino * QNX6 related fixes and improvements + Added mouse wheel support for Win2k+ * Some MSWin related fixes by Oblomov Sergey * Fixed correct elf32 reading after applying 64-bit support * Other minor/major fixes.
2004-09-20libcddb updated to 0.9.5.wiz2-3/+3
2004-09-20Update to 0.9.5:wiz4-29/+9
CHANGES 0.9.4 -> 0.9.5 * It is now possible to query CD entries if you only know the track length. Previous versions of libcddb needed the track offsets from the CD. Track offsets will be calculated automatically when a length is specified and the offset is missing. This is less precise than using the actual frame offsets. So whenever possible use the offsets instead. * Fixed some possible buffer overflows. The internal buffer size has also been increased from 257 to 1024 bytes. It is now also possible to change this buffer size in the cddb_cmd.h. * Updated regression tests with less strict testing. Changes in the queried CDDB entries should no longer trigger a test failure. * Improved support for Win32 platforms (thx to Rocky Bernstein). * improved support for Mac OS X (thx to Rocky Bernstein and Derk-Jan Hartman). * It is now possible to specify the CD-ROM device to be used in the example program. pkgsrc change: Add TEST_TARGET.
2004-09-20Note libidn and libntlm updates.wiz2-4/+4
2004-09-20Update to 0.5.5:wiz3-7/+7
* Version 0.5.5 (released 2004-09-13) ** Hide accidentally exported variable g_utf8_skip, by marking it as static. ** Various fixes. ** API and ABI is backwards compatible with the previous version. g_utf8_skip: REMOVED. (But never meant to be used.) * Version 0.5.4 (released 2004-08-08) ** Translation updates. ** API and ABI is backwards compatible with the previous version. * Version 0.5.3 (released 2004-08-05) ** Fix crash in `idn --tld' command line tool. ** API and ABI is backwards compatible with the previous version. * Version 0.5.2 (released 2004-07-14) ** Java "make install" rules are now DESTDIR compatible. ** API and ABI is backwards compatible with the previous version.
2004-09-20Update to 0.3.3:wiz3-7/+7
* 18 September 2004 Revision 0.3.3 ** Use const for buildSmbNtlmAuthRequest() and buildSmbNtlmAuthResponse(). ** Source code is indented according to GNU Coding Standard.
2004-09-20libsamplerate updated to 0.1.2.wiz2-3/+3
2004-09-20Update to 0.1.2:wiz3-7/+7
Version 0.1.2 (2004-09-12) * Fixed where callback based API wasn't being reset properly. * Minor bug fixes. Version 0.1.1 (2004-07-17) * Fixed bug in callback based API. * Fixed a bug brought tp light by agressive optimisations of gcc-3.4. * Minor bug fixes.