summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2003-08-25Several of the Makefile used in this package call 'make' directly. Ifjschauma8-25/+102
an operating system does not have a 'make' (ie only bmake), or if the OS supplied 'make' is sufficiently broken (Irix), this will cause the build to fail (interestingly enough apparently only if build as a dependency, not if build from this directory). Patch Makefiles to use @MAKE@, which then, after patching, is substituted with the actual ${MAKE} (can't use "MAKE= ${MAKE} -f Makefile.ssl"). While here, tweak Irix configure a bit.
2003-08-25Resurrect 'inline' as '__inline', which Irix MipsPro compiler knows.jschauma1-6/+6
Following suggestions by Martin Husemann and Todd Vierling.
2003-08-25The standard "root" group under Linux is "root" not "wheel".reed1-2/+2
PR #22566
2003-08-25update to tnftp-20030825; cygwin portability fixeslukem1-1/+2
2003-08-25update to tnftp-20030825; cygwin portability fixeslukem2-6/+6
2003-08-25add a "-r" flag that enables a "raw" mode - copy the data out in 2352mrg3-1/+74
sector chunks. this flag has already been included by the upstream and will be in the next release of bchunk.
2003-08-25Import of canonical tnftp 20030825 sources,lukem6-0/+6458
to make it easier to track new versions.
2003-08-25mention recent updates, and change the py-qt3 entry to appease thedrochner1-2/+6
changes2html script
2003-08-25update to the 20030815 shapshotdrochner2-5/+5
changes are basically bugfixes, and improvements in the FPGA synthesis area
2003-08-25Note renaming of nbgrepcjep1-1/+2
2003-08-25Remove nbgrep (obsoleted by bgrep). Add and enable grep.cjep6-78/+2
2003-08-25Reimport nbgrep as bgrep due to objections to nb convention.cjep5-0/+76
2003-08-25update to 1.8drochner5-132/+11
changes: - Updated for current autoconf/gcc build environment. - Some uninitialized memory references were found by 'valgrind'. - Slightly improved writeout/commit performance. - Explicitly yields to other threads during long running RVM operations. - More portable detection of fdatasync availability. - Some more memory initialization fixes, and passing an actual iov struct to readv/writev instead of something that looks like it.
2003-08-25update to 1.19drochner4-29/+13
changes (partial): - Updated for current autoconf/gcc build environment. - Some cleanups for the code generated by the rp2gen stub generator. - Hopefully improved 'timeout' behaviour on asynchronous links (ADSL). Fixes memory corruptions that typically hit during reintegration, andperformance problems when writing data to the servers. - Now internally supports >2GB files, however we're not really using this new capability in Coda yet. - Re-added a lost lseek that was causing truncated backup files. Small files that got piggybacked on the outgoing RPC2 packets were only sent to one server in a replicated group. The operation on the other servers fails and the client disconnected. The next time the servers are accessed this inconsistency was detected and automatically resolved. But doing it right in the first place is somewhat more efficient and reliable. The RPC2 random number generator was not initialized correctly. Not sure how much effect this had on connection handling and other places that liked random numbers to be unique. Removed MultiRPC pool allocator, now we can have more than 8 concurrent RPC operations. And because the per-user limit got removed in Coda-6.0.2, this is more likely to happen. A packet with random data could easily trigger an assertion in the MultiRPC decoding. Now we simply drop it and avoid the possible DoS. IPv6 support, it is just waiting for the right flag from userspace. As a result the 1.19 API is binary compatible for older clients and servers. Removed sftp listener and timeout threads. We always run what was previously called 'masqueraded'. This works fine as long as our peer uses rpc2-1.9 or later.
2003-08-25update to 1.10drochner3-7/+7
changes: - Updated for current autoconf/gcc build environment. - Some uninitialized memory references were found by 'valgrind'.
2003-08-25fix game saving/restoring (the usual "mkdir xxx/" nonsense)drochner2-1/+31
2003-08-25Revert the previous change. ONLY_FOR_PLATFORMS is already defined inkent1-3/+1
dependent package.
2003-08-25Conflicts with pth to make sure that libgcc does notkent1-1/+2
refer /usr/pkg/include/pthread.h
2003-08-25Add ONLY_FOR_PLATFORM.kent1-1/+3
2003-08-25Add KTERM_USE_WALLPAPER related distfiles.taca1-1/+5
2003-08-25update www/p5-HTML-Parser to 3.31heinz1-1/+2
2003-08-25Update to 3.31.heinz3-11/+12
Better compatibility with Mozilla/MSIE behaviour. ==== Changes since 3.27 ==== 2003-08-19 Gisle Aas <gisle@ActiveState.com> Release 3.31 The -DDEBUGGING fix in 3.30 was not really there :-( 2003-08-17 Gisle Aas <gisle@ActiveState.com> Release 3.30 The previous release failed to compile on a -DDEBUGGING perl like the one provided by Redhat 9. Got rid of references to perl-5.7. Further fixes to avoid warnings from Visual C. Patch by Steve Hay <steve.hay@uk.radan.com>. 2003-08-14 Gisle Aas <gisle@ActiveState.com> Release 3.29 Setting xml_mode now implies strict_names also for end tags. Avoid warning from Visual C. Patch by <gsar@activestate.com>. 64-bit fix from Doug Larrick <doug@ties.org> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195500 Try to parse similar to Mozilla/MSIE in certain edge cases. All these are outside of the official definition of HTML but HTML spam often tries to take advantage of these. - New configuration attribute 'strict_end'. Unless enabled we will allow end tags to contain extra words or stuff that look like attributes before the '>'. This means that tags like these: </foo foo="<ignored>"> </foo ignored> </foo ">" ignored> are now all parsed as a 'foo' end tag instead of text. Even if the extra stuff looks like attributes they will not be reported if requested via the 'attr' or 'tokens' argspecs for the 'end' handler. - Parse '</:comment>' and '</ comment>' as comments unless strict_comment is enabled. Previous versions of the parser would report these as text. If these comments contain quoted words prefixed by space or '=' these words can contain '>' without terminating the comment. - Parse '<! "<>" foo>' as comment containing ' "<>" foo'. Previous versions of the parser would terminate the comment at the first '>' and report the rest as text. - Legacy comment mode: Parse with comments terminated with a lone '>' if no '-->' is found before eof. - Incomplete tag at eof is reported as a 'comment' instead of 'text' unless strict_comment is enabled. 2003-04-16 Gisle Aas <gisle@ActiveState.com> Release 3.28 When 'strict_comment' is off (which it is by default) treat anything that matches <!...> a comment. Should now be more efficient on threaded perls.
2003-08-24Get correct checksumcjep1-2/+2
2003-08-24Note update of textproc/nbgrep to 20030825cjep1-1/+2
2003-08-24Update to 20030825.cjep2-5/+5
Various fixes including: * Fix grepping of standard input. * Fix -Z. * Correctly determine whether to output filenames when only one argument. * Make output with -A,-B,-C flags consistent with GNU grep.
2003-08-24Added level9-3.0, an interpreter for Level 9's text adventures.dillo1-1/+2
2003-08-24add and enable level9dillo1-1/+2
2003-08-24Initial import of level9-3.0, an interpreter for Level 9's text adventures.dillo5-0/+50
2003-08-24update kame patch; enables scroll wheel (btn4/5).itojun2-5/+5
2003-08-24Fixcjep1-2/+2
2003-08-24note addition of covered-0.2.1dmcmahill1-1/+2
2003-08-24add and enable covereddmcmahill1-1/+2
2003-08-24import covered-0.2.1dmcmahill5-0/+75
Covered is a Verilog code coverage analysis tool that can be useful for determining how well a diagnostic test suite is covering the design under test. Typically in the design verification work flow, a design verification engineer will develop a self-checking test suite to verify design elements/functions specified by a design's specification document. When the test suite contains all of the tests required by the design specification, the test writer may be asking him/herself, "How much logic in the design is actually being exercised?", "Does my test suite cover all of the logic under test?", and "Am I done writing tests for the logic?". When the design verification gets to this point, it is often useful to get some metrics for determining logic coverage. This is where a code coverage utility, such as Covered, is very useful. Please note that this package is for a stable release version. There is a seperate package (covered-current) which is made of development snapshots.
2003-08-24Note addition of nbgrepcjep1-1/+2
2003-08-24Add and enable nbgrep.cjep7-186/+2
Remove bsdgrep (obsoleted by nbgrep).
2003-08-24Initial import of nbgrep into the NetBSD packages collection ascjep5-0/+76
textproc/nbgrep. This version of grep is based on Jamie Howard's and Dag-Erling Coidan Smorgrav's grep. It is being developed for inclusion in NetBSD in the NetBSD othersrc module. Originally in pkgsrc-wip. Obsoletes textproc/bsdgrep.
2003-08-24On IRIX, we need to create a .libs directory, so that the linker doesn'tjschauma1-1/+6
fail. This makes this package compile and install cleanly under Irix. From PR pkg/22570 by Bas van Oostveen. Thanks!
2003-08-24update vmware-module3 to 3.2.1.3jdolecek3-7/+8
Changes since previous version: * make compilable with kernel >1.6V - the proc->lwp change was backed off * included files.vmware to distribution, to help easily compile the modules into kernel, rather than compiling than as LKM The proc->lwp backout fix for >1.6V contributed in pkg/22538 by Juergen Hannken-Illjes.
2003-08-24USE_GNU_ICONV as an interim measure to get this to build again onmarkd1-1/+2
NetBSD-current. Someone may be able to get this to use the native iconv but the configure script at least is very GNU iconv specific.
2003-08-24s/libconfig/libtool/markd1-2/+2
2003-08-24Comment out some entries of the PLIST if no shared libXv exists (ie XFree<4.3)markd2-17/+23
Should fix Hubert's bulk build.
2003-08-24py-soappy needs a threaded Python.recht2-2/+5
Noticed by hubertf's bulk build.
2003-08-24Sanity check that the package is actually installed by running pkg_info(1)jlam1-1/+7
before trying to create the binary package. This makes: cd pkgsrc/category/foo make install pkg_delete foo make package fail because package "foo" isn't actually installed, so no binary package can be built.
2003-08-24Note update of security/ruby-tcpwrap package to 0.6.taca1-1/+2
2003-08-24Update ruby-tcpwrap package to 0.6.taca2-6/+6
No documentation is given for changes. - improved portability; proper checking for libwrap. - add hosts_allow, hosts_deny and hosts_ctl methods. It should fix macppc bulk build problem. This packge was broken since ruby-tcpwrap-0.3's distfile's contet was changed.
2003-08-24Note update of databases/mysql-client and database/mysql-servertaca1-1/+3
to 3.23.49nb4.
2003-08-24Bump package revision of mysql-client and mysql-server withtaca2-4/+4
introducing MYSQL_CHARSET and MYSQL_EXTRA_CHARSET.
2003-08-24Add description of MYSQL_CHARSET and MYSQL_EXTRA_CHARSET.taca1-1/+14
Fix PR pkg/22560 by myself, OKed by wiz@.
2003-08-24Introduce MYSQL_CHARSET and MYSQL_EXTRA_CHARSET.taca1-1/+10
MYSQL_CHARSET is default charracter set of mysql, default is "latin1". MYSQL_EXTRA_CHARSET is additional charsets to be compiled in mysql, default is "all". Fix PR pkg/22560 by myself, OKed by wiz@.
2003-08-24gopher-3.0.6 update done.wiz1-1/+2