summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2000-08-28Add missing USE_PERL5.jlam1-4/+5
2000-08-28ssh 1.x ssh-keygen does not have -d for DSA keys - remove section thatabs1-5/+2
tries to crete DSA key if not present and gave error on every startup
2000-08-28Update p5-Tk to 800.022. This is the port of the perl interface tojlam8-1536/+18
Tk-8.0.5. Changes from p5-Tk-402.002 are too numerous to list, as it targets a different version of Tk.
2000-08-28Correct thinko which caused p5-Tk to not register installation correctly.jlam1-3/+3
"/X/" was mistakenly replaced with "/", which broke the translation of the packlist to a correct PLIST.
2000-08-28Fix broken depends on unproven-threads.jlam1-2/+2
2000-08-28Fix broken DEPENDS on netcdf.jlam1-2/+2
2000-08-28fix man page (misapplied patch; already fixed in cvs' CVS)wiz2-1/+23
2000-08-27Update ap-perl to 1.24. Changes from 1.19:jlam2-10/+10
* 'sub handler : method {}' is now treated as a method handler * variable $Apache::Server::ConfigTestOnly is set to 1 if Apache is running in configuration test mode (httpd -t) * add PerlAddVar directive, like PerlSetVar, but uses ap_table_add instead of ap_table_set * Apache::Table->unset can now be called with an array reference * Apache::PerlRun::flush_namespace fixes, so aliased (imported) code/hash/array/scalar are undefined without undef-ing the pointed-to data and without using B.pm, thanks to Richard Chen for the suggestion * document Apache::print's special behavior wrt references * fix core dump triggered by <Perl>do 'foo.pl'</Perl>, * pass $Config{ccflags} to apache for 5.6.0+ * fix Apache->httpd_conf, thanks to Will Trillich for the spot * fixed 'make clean' to remove FILES => passed to MakeMaker * add Apache::FILENO method for 5.6.0+ tied filehandle support thanks to Richard Titmuss for the spot * --disable-rule=EXPAT is passed to Apache's configure to avoid XML::Parser conflicts * fix PerlSetVar inheritance bug * set r->notes("error-notes") to $@ if $@ after a Perl*Handlers is run * added INSTALL.raven * $c->remote_ip($ip) now also sets conn->remote_addr to make IP-based access control work correctly * Apache::URI::port wasn't setting the port correctly * $Apache::Registry::NameWithVirtualHost fix take 2 (move is_virtual logic from mod_perl.c to Registry.pm) * added Apache::OPEN method for 5.6.0+ tied filehandle support * Apache::Table is now loaded by default (if enabled), rather than autoloading when first needed * $r->document_root can now be modified * upgrade license to apache software license version 1.1 * $r->the_request can now be modified * warn that dso+Perl malloc needs a Perl built with -Ubincompat5005 * add Apache::BINMODE stub for 5.6.0 tied filehandle support (fixes cgi.t #4) * add $r->server->loglevel() and relevant constants. * $Apache::Server::AddPerlVersion uses $^V for Perl/v5.6.0+ * reset the stack pointer after calling perl_require_module() in perl_call_handler(). this fix will most likely cure the reports of "Can't upgrade that kind of scalar at ..." * change $Apache::VERSION check to use a string instead of SvNV, which was troublesome with Perl 5.6.0 * Apache::src fixup to quiet warnings under Perl 5.004 * Apache::src::apxs fixups to quiet warnings if apxs doesnt exist or httpd is not dso enabled * fix #ifdef SGI_BOOST typo * proxy support fixed wrt RFC2068 * set Apache::Resource::DEFAULT_RLIMIT_AS (address space) to 64Mb * Bundle::Apache will now install Bundle::LWP before mod_perl * support Apache::FakeRequest::args in a list context * compile fixes for 5.6 + -Duse5005threads * log to parms->server instead of stderr if PerlRequire fails * make sure lib/Apache/MyConfig.pm is written before used * fixup the output of apxs -q CFLAGS to preserve quoting (again) * removed the generated apaci/mod_perl.config from MANIFEST * new variable $Apache::Server::StrictPerlSections, if true, will croak <Perl> section generates invalid Apache configuration syntax * new Apache::src->ccflags method to combine $Config{ccflags} and apxs -q CFLAGS * added Apache::src->apxs method * make use of $Config{shrpenv} to find CORE/libperl.so * fix Apache::Registry bug when filename starts with a 0 * Apache::Registry will restore $r->status to the original value * fixup the output of apxs -q CFLAGS to preserve quoting * dso fix fix: modules with END blocks calling xs code (e.g. DBI) would core dump because the xs .dso had been unloaded, now dso's are not unloaded until after END blocks are called. * force environ[] to be copied before any Perl code is loaded * localize $_ in Apache::send_cgi_header * fix precedence problem in StatINC.pm * if hash value has magicalness in <Perl>, invoke FETCH * sync with 1.3.12's virtual_host section logic for httpd -S + <Perl> * remove t/httpd symlink during 'make realclean' and when rebuilding * add Apache::src::otherldflags method * __THE__ dso fix: dlclose() xs shared objects and call perl_shutdown() before mod_perl's libperl.so is unloaded/reloaded by mod_so * add /D "_MSWSOCK_" to ApacheModulePerl.dsp * Apache::RegistryBB returns DECLINED instead of FORBIDDEN if -d $r->finfo * add Apache::Util::validate_password() * call (void)perl_request_rec(r) asap, instead of waiting till the response phase, e.g. so CGI.pm can be used before PerlHandler, without having to call Apache->request($r); * Apache::perl_hook() fixes for Perl*Api * save/restore $^W in Apache::PerlRun * fix Apache::Registry when $r->uri ends with a / * add virtualhost support to Apache::RegistryLoader * $Apache::Registry::NameWithVirtualHost fix * allow Apache::PerlRun::handler to be subclassed * fix $r->connection->remote_ip for SGI performance patches (#ifdef SGI_BOOST) * mod_perl.exp is now installed * pod fixups to avoid WARNING from newer pod2* * Apache::RedirectLogFix now uses $r->last * tweaks for sfio * update Apache::SIG docs * fix get_set_PVp in mod_perl_xs.h * tweaks to compile/run with 5.5.670 + -Dusethreads * $r->hostname now documented * Apache::File methods are now documented * avoid quoting <Perl> config if args_how == RAW_ARGS * PerlPassEnv maintains its value beyond the first request, * prevent possible core dump in $r->pnotes if get_module_config returns NULL * fix Apache::Status::status_cv_dump for Perl/5.6-dev * use perl_get_sv("]") instead of patchlevel for $AddPerlVersion * Apache::Util functions $r->unescape_uri, $r->unescape_uri_info, $r->size_string are now documented * $r->request_time is now documented * Look for the makepl_args.mod_perl file as .makepl_args.mod_perl in ./ and ../ too since the book says it works so. * PerlRestartHandler is now enabled w/ ALL_HOOKS=1 (or EVERYTHING=1) * $r->no_cache(1) will now set the r->headers_out "Pragma" and "Cache-control" to "no-cache" * `PerlSetEnv PERL5LIB ...' now works again * PerlFreshRestart semantics changed to preserve order of PerlModule's and not to reload modules while actually iterating over %INC * $r->current_callback now works properly when PerlHandler invokes subrequests * if an Apache::Table is NULL return undef (e.g. $r->notes during ChildInit) * ActivePerl compile patches * document that Apache 1.2.x is no longer supported * Apache::src now supported with USE_APXS=1 * disable experimental perlrunxs until future notice * add sanity check for libgdbm * change PL_siggv usage to gv_fetchpv("SIG", ...) for Perl 5.6-tobe * document $r->get_handlers, $r->set_handlers, $r->push_handlers * document PerlSetVar * document the fact that $r->dir_config handles keys in a case insensitive manner * avoid logging "rwrite returned -1" multiple times in the same request * bugfix in write_client() when running under APACHE_SSL * document the fact that $r->connection->user can be used to set the authenticated user name * document the fact that $r->uri sets/gets the URI minus the query string, not the complete URI * Apache::RegistryLoader::handler was rewritten to allow a better diagnostics of scripts preloading problems. * document the fact that $r->args can be used to set the query string as well as get it * add $r->connection->fileno, provides the client file descriptors. This can be used to detect client disconnect without doing any I/O, e.g. using IO::Select * if $r->bytes_sent has not been calculated, then do so before returning the value. * ensure that all -I directories printed by Apache::src actually exist * don't assume $uri =~ /$path_info$/ in Apache::Registry/PerlRun * fix segfault when using Limit in <Perl> sections * make $c->remote_host writeable * add per-server PerlSetVar variables, accessed using Apache->server->dir_config or $r->server->dir_config. $r->dir_config merges them with per-directory variables. * documentation typo * add $r->server->uid and $r->server->gid * add per-server configuration merge * `_' is no longer escaped in Apache::Registry package names * fix $ENV{PATH} corruption * mod_perl_version.h removed from MANIFEST * preload Apache::Constants::OPT_EXECCGI() for Apache::{Registry,PerlRun} * Apache::SizeLimit now uses $r->child_terminate instead of Apache::exit(-2) * get rid of various 5.005_60 warnings * add Status{Terse,TerseSize,Deparse,Fathom,OptionsAll} options to Apache::Status * adjust mod_perl.h for 5.005_59 perl_eval_{pv,sv} rename * fix flush_namespace undef logic in Apache::PerlRun * Tweak Apache::content to comply with media-types embedded in content-types (RFC 2616 section 3.7) * Removed and added a few modules from the Bundle file. * Renamed the Apache::StatINC parameters to StatINC_<something>. Changed StatINC_Debug to take a number as parameter instead of "on" to support "debug levels" * fix refcount bug in %VirtualHost [] values * $r->read will now properly check the return value of ap_setup_client_block() and return undef if != OK, e.g. if LimitRequestBody is exceeded * fix bug in register_cleanup() * added StatusLexInfo option to Apache::Status * turn off warnings in Apache::Status::as_HTML symdump code * tweak Apache::RegistryNG so it works with virtual includes * change Apache::File->tmpfile flags from O_WRONLY to O_RDWR * fix Apache::RegistryBB when $r->filename NOT_FOUND * cygwin port * Documented $r->pnotes * Change "setting auth_name" trace message so we don't get it without having enabled a MOD_PERL_TRACE level * s/class/pclass/g so we can compile w/ c++ * mod_perl will now save/restore SIGALRM * fix Apache::Status bug prototype check of 'use constant' subs * added set_byterange() and each_byterange() methods * added proper support for {Location,Directory,Files}Match in <Perl> sections * rework PerlFreshRestart to avoid core dump triggered w/ 5.005_03 * fix $Apache::Server::Starting under dso * use ap_bfileno() instead of r->connnection->client->fd directly * fix possible overwrite in perlio.c:sfapacheread() #ifdef USE_SFIO * dont use DEFAULT_PATH if r->subprocess_env->{PATH} is already set * ensure perl_setup_env() is called just once per-request * :common Apache::Constants are compiled at bootstrap time, so CVs are shared and AUTOLOAD is avoided, which was known to cause a spin while loading SERVER_ERROR for particular Perl errors * <Perl> sections now use 1.3.7-dev's cmd_parms->context to cure many known, old bugs, e.g. @DirectoryIndex outside of %Location, .htaccess and many more * fix bug where top-level PerlSetEnv's would be lost after 1st request * fix bug in Apache::ModuleConfig->get * fix rwrite error message * Change Apache::SizeLimit so that it supports Solaris 2.6 and above * Fixed apaci/load_modules.pl.PL to properly fixup log_agent and log_referer when loaded as DSOs.
2000-08-27Add dependency on p5-HTML-Tagset.jlam1-1/+3
2000-08-27Add and enable p5-HTML-Tagsetjlam1-1/+2
2000-08-27p5-HTML-Tagset - data tables useful in parsing HTMLjlam5-0/+26
2000-08-27Update p5-URI to 1.09. Changes from version 1.07:jlam2-4/+4
uri_unescape() did not work when given multiple strings to decode. Patch by Nicholas Clark <nick@ccl4.org>. ldap URIs now support _scope() and _filter() methods that don't have default values. Suggested by Graham Barr. Incorporated old rejected MSWin32 patch to t/old-base.t. Hope it works.
2000-08-27Update p5-HTML-Parser to 3.11. Changes from version 3.10:jlam2-4/+4
HTML::LinkExtor and eg/hrefsub now obtain %linkElements from the HTML::Tagset module.
2000-08-27Update to p5-gdbm-1.03 from the perl-5.6.0 distribution. This module wasjlam2-5/+5
previously incorrectly versioned at 5.4.4.
2000-08-27Add and enable p5-Devel-Peekjlam1-1/+2
2000-08-27p5-Devel-Peek: data debugging tool for XS programmersjlam5-0/+33
2000-08-27Update p5-Devel-DProf to 19990108. This version fixes compilation withjlam2-4/+6
perls newer than 5.004. Note conflict with perl-5.6.0.
2000-08-27Note conflict with perl-5.6.0 and always install under ${PERL5_SITELIB}.jlam3-1/+20
2000-08-27Remove some modules from the base distribution which are externallyjlam12-115/+169
available as other pkgsrc packages.
2000-08-27Add & enable arpdhubertf1-1/+7
2000-08-27arp daemon, e.g. to do proxy-arp for whole subnets, etc.hubertf9-0/+95
Added after it was mentioned on tech-net.
2000-08-27Update to 1.5. Changes since 1.2:wiz8-50/+45
** General changes - Screenshots can be saved now. - Fixed slowdown bug with flickering drive led. ** C128 changes - The Z80 emulation has been improved. CP/M will boot now. - The VDC can display flashing and reverse text attributes now. ** C64 changes - Fixed crash caused by VIC-II memory corruption. - Expert cartridge is emulated now. - Some NTSC fixes. Now the border looks a bit small, but most NTSC programs should work. - Fixed CIA TOD initialization. - Super Snapshot V5 and REX fastload carts are emulated now. - The REU emulation has been improved. - Sprites in non-visible parts of the screen should not crash the emulator anymore. - A sprite snapshot bug has been fixed. ** VIC20 changes - Fixed VIC crash. - Fixed VIC display bug. ** Unix changes - Palette changes work better now. - Added support for gettext based national language support. Initial german translation for Unix based UIs is provided. - NTSC timing is correct now (100% 60fps). - The emulator keeps running when menus are used. - Fixed some crashs and memory leaks in the XAW file selector widget. - New GNOME port of VICE. (not activated in package) - G64 images can be created now. ** Drive changes - Fixed a bug in the 1581 true drive emulation that prevented the use as drive #9. - Fixed a bug in the 8050 vdrive emulaton. - Fixed a bug that caused drive #8 to be diabled if file system access for drive #11 is disabled and all disks are detached. - Fixed IEC initialization bug that broke true drive emulation. - D71 BAM calculation has been fixed. - A drive RAM expansion is available now. - New 2040, 3040 and 4040 disk drive support. ** Tape changes - Now saving TAPs should work for big endian machines too. ** Miscellaneous changes - The REU can be used with Super Snapshot 5 or Expert Cartridge. - The monitor "z" command has been fixed. - Fixed some tape counter bugs. - Fixed a crash with ZIP archives. - Fixed a bug that prevented writing to gzipped disk images. - Fixed a crash if the image content lister is used on disk images with many files. - There is some experimental read only REL file support in the vdrive emulation now.
2000-08-27Add new section 5.3 which describes PLISTs for perl5 modules.jlam1-1/+18
2000-08-27Convert packages to use PERL5_PACKLIST (part 2). These are the database andjlam40-379/+102
Apache perl modules, and each compiled and installed/de-installed apparently correctly. As a side effect of the dynamic PLIST, we no longer need to to have separate -static and -shared PLISTs. It's now easier than ever to make a perl5 package for NetBSD :)
2000-08-27upgrade to 5.06. 5.06 integrates IPv6 patch to 5.05.itojun5-136/+14
2000-08-27enable "vtysh" build by make USE_ZEBRA_VTYSH (depends on readline).itojun4-9/+38
stabilize build by requiring gmake.
2000-08-27add comment - the .if statment is not friendly with cross builditojun1-1/+2
2000-08-27Forgot to remove this file as part of conversion to PERL5_PACKLIST.jlam1-4/+0
2000-08-27Forgot to add this file as part of conversion to PERL5_PACKLIST.jlam1-0/+11
2000-08-27Convert packages to use PERL5_PACKLIST (part 1). These were the easyjlam164-1373/+452
ones to do, and each compiled and installed/de-installed apparently correctly. As a side effect of the dynamic PLIST, we no longer need to have separate -static and -shared PLISTs. It's now easier than ever to make a perl5 package for NetBSD :)
2000-08-27Use PERL5 + cosmetic changes.jlam1-6/+6
2000-08-27Use new PERL5 variable instead of ${LOCALBASE}/bin/perl.jlam26-145/+137
2000-08-27Update to latest stable version, 1.0.3, and set ${IGNORE}, as this packagefredb2-6/+12
is not supposed to work with the Afterstep-1.8.0 that we have in the tree.
2000-08-27Changes for building dynamic PLIST for perl packages:jlam1-11/+39
* Add a PERL5 variable that is always defined, set to the path of a pkgsrc-installed perl5 binary (${LOCALBASE}/bin/perl). * Define three new variables PERL5_SITELIB, PERL5_SITEARCH, and PERL5_ARCHLIB that define special locations used by perl. In particular, it seems packlists are always found under PERL5_SITEARCH. * Substitute the above three variables when generating PLISTs, but stripping away the initial ${LOCALBASE}/ part. This is for perl packages which don't generate packlists because they don't use the perl Makefile generator during the build process. * Append to the PLIST any files listed in the packlists named by PERL5_PACKLIST. Also append statements to try removing the directories installed into by the packlist-ed files.
2000-08-26Updated UAE to version 0.8.14.kristerw4-20/+9
User-visible changes in 0.8.14: - More bug fixes: * CPU emulation problem that could have caused copy protection schemes to malfunction has been fixed. * Some AGA problems fixed (one of them visible in ECS modes). * UAE should work again on non-x86 systems. - By default the emulator will try to approximate an A500 in CPU speed. This setting existed before, but it's a bit more accurate now and on by default. - There is a new option to control the number of emulated disk drives. - Software autofire for the keyboard joystick replacements
2000-08-26fix owner.group of /var/dict/cannasakamoto2-2/+4
2000-08-26s/USE_PERL/USE_PERL5/veego4-8/+8
2000-08-26Bugfix: Make choosing `outputs.line' as volume control devicewiz2-1/+35
possible, even if `inputs.line' also exists and comes earlier (both were noted only as `line' before).
2000-08-26Update to procmail-3.15, inspired by D'Arcy J.M. Cain.wiz7-48/+66
Relevant changes: - Rewrite folder type parsing: corrects handling of MH and maildir style spools - v3.14 changed '!' actions too much: revert to v3.13 behavior but continue to split SENDMAILFLAGS - Contents of skipped nested blocks could affect 'E', 'e', 'a', and 'A' flags - Prevent peeking into buffers on "Out of memory" errors - Unquoted $\var expansions could alter the interpretation of the following whitespace - Prevent attempts to set LINEBUF to really huge values - Optimize SWITCHRC = $_ - Use a secure PATH when processing /etc/procmailrc - Use 2^31-1 as the maximum score even when sizeof(long)>4 Changes to formail: - Allow -n with -D and -s again -- corruption couldn't happen after all - Don't strip pre-colon whitespace until header is identified - Properly handle NULs in the body when generating an autoreply that keeps the body (could coredump) General: - Documented that $\var expansions are never split on whitespace - Removed ':' and '@' from list of characters that can appear in tempfile names - Called nice() when shouldn't have
2000-08-26Also use the solaris library naming on Solaris and not the linux one.veego2-3/+12
2000-08-26s/USE_PERL/USE_PERL5/jlam1-2/+2
2000-08-26repair -lXext lookup (not sure why it gets broken, the pkgsrc worked before...)itojun3-2/+19
From: Thomas Klausner <wiz@danbala.ifoer.tuwien.ac.at>
2000-08-26s/USE_PERL/USE_PERL5/jlam1-2/+2
2000-08-26Remove share/doc/get_ds7 on pkg_delete; also some cosmetic changes.jlam2-12/+15
2000-08-26Update to 0.95. Changes:hubertf2-12/+20
Allow only one file as argument, newfile, and assume oldfile as newfile.orig.
2000-08-26Correct unterminated cross-reference when building man pages.jlam2-1/+15
2000-08-26s/USE_PERL/USE_PERL5/jlam1-2/+2
2000-08-26Make this package work on at least -current/i386; remove BROKEN.wiz3-10/+19
2000-08-26update to CompuPic-5.1 build 1063wiz3-576/+355
2000-08-25add etc/rc.d/samba.sh.sample (no reason not to remove it)wiz1-23/+24