cvs commit: src/usr.sbin/config mkmakefile.c

2008-06-29 Thread John Birrell
jb  2008-06-29 07:15:57 UTC

  FreeBSD src repository

  Modified files:
usr.sbin/config  mkmakefile.c 
  Log:
  SVN rev 180089 on 2008-06-29 07:15:57Z by jb
  
  Revice the way the CTF conversion is done per object. Avoid creating a second
  shell (which was the problem with the original implementation) and avoid
  letting make see an empty definition (which was the problem with the current
  implementation).
  
  Revision  ChangesPath
  1.94  +1 -1  src/usr.sbin/config/mkmakefile.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/netinet6 ip6_ipsec.c

2008-06-29 Thread Bjoern A. Zeeb
bz  2008-06-29 07:34:21 UTC

  FreeBSD src repository

  Modified files:
sys/netinet6 ip6_ipsec.c 
  Log:
  SVN rev 180090 on 2008-06-29 07:34:21Z by bz
  
  Try to fix errors introduced in svn180085/cvs rev. 1.10:
  
  * Include ip6_var.h for ip6stat.
  * Use the correct name under ip6stat: `ip6s_cantforward' instead
of its IPv4 counterpart.
  
  MFC after:  10 days
  
  Revision  ChangesPath
  1.11  +2 -1  src/sys/netinet6/ip6_ipsec.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/sparc64/include in_cksum.h

2008-06-29 Thread Christoph Mallon

Bruce Evans wrote:

Right.  Though I've never seen unnecessary's __volatiles significantly
affecting i386 code.  This is because the code in the asms can't be
removed completely, and can't be moved much either.  With out of order
execution, the type of moves that are permitted (not across 
dependencies)
  
^^

are precisely the type of moves that the CPU's scheduler can do or undo
no matter how the compiler orders the code.


I disagree. For example look at the use of in_addword() in 
dev/sk/if_sk.cv in line 2819:

 csum1 = htons(csum & 0x);
 csum2 = htons((csum >> 16) & 0x);
 ipcsum = in_addword(csum1, ~csum2 & 0x);
 /* checksum fixup for IP options */
 len = hlen - sizeof(struct ip);
 if (len > 0) {
   return;
 }

The calculation will be executed even if the following if (len > 0) 
leaves the function and the value of ipcsum is unused.
If in_addword() is not marked volatile it can be moved after the if 
and not be executed in all cases. csum1 and csum2 can be moved after 
the if, too.


No, volatile has no effect on whether the above calculation will be
executed, since the early return has no dependencies on the caclulation.


The volatile induces a dependency.


Old versions of gcc used to handle volatile like that, but this changed
in gcc-3 or earlier.  gcc.info now says:

% The `volatile' keyword indicates that the instruction has important
% side-effects.  GCC will not delete a volatile `asm' if it is reachable.
  ^^^


This is not about whether the code is reachable or not (it is 
reachable), it is about whether the result is used (i.e. whether the 
code is dead).



% (The instruction can still be deleted if GCC can prove that
% control-flow will never reach the location of the instruction.)  Note
% that even a volatile `asm' instruction can be moved relative to other
   
% code, including across jump instructions.  For example, on many targets
  


jump != conditional jump.
If it moves the *volatile* asm statement across the if, it would only 
appear on *some* execution paths, which is wrong. It is perfectly fine 
to move it, when the statement is not volatile, though.



Even if gcc didn't move the caclulation, then CPUs with out of order
execution might schedule it so that it is effectively never executed
(most likely by executing it in otherwise-unused pipelines while the
main pipeline returns).  This is valid for the same reasons that gcc
can move the volatile asms -- the return doesn't depend on the result
of the caclulation.


This is for the CPU to decide. If the assembler block really contains 
"important" stuff like memory barriers, writes to machine control 
registers etc., the CPU will not "effectively never execute" the code. 
The compiler does not know this, all it sees is the word "volatile".



The above C code is fairly bad, but generates not so bad code on i386:

% % movl%esi, %eax
% #APP
% xchgb %ah, %al# byte operations can be slow; this one not
# too bad, but I wonder if rorw $8 is better
# (rorl $16 is already used for corresponding
# 32-bit operations) where there is no xchg
# alternative
% #NO_APP


And this again is an example why not to use inline assembler, but let 
the compiler decide this:


unsigned short swap16(unsigned short x)
{
  return x >> 8 | x << 8;
}

is compiled to

swap16:
movl4(%esp), %eax
rolw$8, %ax
ret

The compiler is even able to do optimisations, which it absolutely 
cannot do, if inline assembler is used, example:


unsigned short id(unsigned short x)
{
  return swap16(swap16(x));
}

results in

id:
movl4(%esp), %eax
ret

Maybe the MD htons() macros should be replaced by MI code.


% shrl$16, %esi
% movl%esi, %edx
% #APP
% xchgb %dh, %dl# as above
% #NO_APP
% notl%edx# poor asm code -- the top 16 bits are unused
# except here to stall for merging them with
# the previous byte operation


The compiler simply does not know, that the inline assembler only 
operates on parts of the register. Another reason not to use inline 
assembler:


u_int g(u_short x)
{
  return ~swap16(x);
}

g:
movl4(%esp), %eax
rolw$8, %ax
movzwl  %ax, %eax # avoid stall
notl%eax
ret


Regards
Christoph
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: ports/www Makefile ports/www/tcldom Makefile distinfo pkg-descr

2008-06-29 Thread QA Tindy
On Sun, 29 Jun 2008 02:17:18 + (UTC)
Beech Rintoul <[EMAIL PROTECTED]> wrote:

> beech   2008-06-29 02:17:18 UTC
> 
>   FreeBSD ports repository
> 
>   Modified files:
> www  Makefile 
>   Added files:
> www/tcldom   Makefile distinfo pkg-descr 
>   Log:
>   TclDOM is a Tcl language binding for the W3C's DOM standard. DOM
>   provides a tree view of an XML document.
>   
>   TclDOM is a package with several implementations, including one
>   written in pure Tcl, one written in C based on TclDOMPro and
>   another that wraps the Gnome libxml2 library.
>   This port installs the TclDOMPro part.
>   
>   PR: ports/123954
>   Submitted by:   Frank Fenor 
>   
>   Revision  ChangesPath
>   1.2077+1 -0  ports/www/Makefile
>   1.1   +28 -0 ports/www/tcldom/Makefile (new)
>   1.1   +3 -0  ports/www/tcldom/distinfo (new)
>   1.1   +9 -0  ports/www/tcldom/pkg-descr (new)
> 
Hi,


You receive this email if you are either the maintainer of the port or if you
recently committed to it. If the error is already fixed please ignore this
email; if you submit a PR to fix it CC me and I'll commit it ASAP.

The builds are done under tinderbox-2.4.3, on 7-STABLE on amd64, with
tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with the
official up-to-date Ports Tree (for commit-triggered builds the files are
fetched via CVSWeb), with the following vars set:
NOPORTDOCS=yes,  NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes.

The error which triggered this email is bellow followed by the link to the 
full log and explanations about the testing process.


building tcldom-3.1 in directory /var/tinderbox/7-STABLE-FTP
maintained by: [EMAIL PROTECTED]
building for:  7.0-STABLE amd64
port directory: /usr/ports/www/tcldom
Makefile ident: $FreeBSD: ports/www/tcldom/Makefile,v 1.1 2008/06/29 02:17:18 
beech Exp $
prefixes: LOCALBASE=usr/local X11BASE=usr/local
NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes
build started at Sun Jun 29 02:18:18 UTC 2008

..


add_pkg tcl-8.4.19,1.tbz
adding dependencies
pkg_add tcl-8.4.19,1.tbz
skipping tcl-8.4.19,1, already added
===>  Installing for tcldom-3.1
===>   tcldom-3.1 depends on shared library: tcl84 - found
===>   Generating temporary packing list
===>  Checking if www/tcldom already installed
mkdir -p /usr/local/lib/tcldom2.0
install  -o root -g wheel -m 444 tcldom84.so.1 /usr/local/lib/tcldom2.0
install  -o root -g wheel -m 444 pkgIndex.tcl /usr/local/lib/tcldom2.0
===>   Running ldconfig
/sbin/ldconfig -m /usr/local/lib
===>   Registering installation for tcldom-3.1


===>  Building package for tcldom-3.1
Creating package /tmp/packages/All/tcldom-3.1.tbz
Registering depends: tcl-8.4.19,1.
Creating bzip'd tar ball in '/tmp/packages/All/tcldom-3.1.tbz'
Deleting tcldom-3.1


=== Checking filesystem state
list of extra files and directories in / (not present before this port was 
installed but present after it was deinstalled)
151235554 drwxr-xr-x2 root wheel 512 
Jun 29 02:18 usr/local/lib/tcldom2.0

build of /usr/ports/www/tcldom ended at Sun Jun 29 02:18:34 UTC 2008


http://t64.tecnik93.com/errors/7-STABLE-FTP/tcldom-3.1.log



These emails are generated in one of the following cases:
- an automated build was scheduled because the port was touched in CVS
- the periodic QA build has reached it.
- the port was scheduled because it is a dependency of a port from the cases
above.
There is no fixed interval for this; if other ports depend on it you will
receive this emails more often since testing those other ports is made
impossible by this port being broken. Efforts are made to restrict the number
of outgoing emails to one/port/week for QA or dependency builds (but not for
commit-triggered builds; if you commit 3 times in 5 minutes to the same port
and the first 2 versions fail you'll receive 2 emails).

When you fix install/plist errors please bear in mind that each of the 3 NO*
vars controls the installation of different type of files, so constructs like:
.ifndef NOPORTDOCS
@${MKDIR} ${DATADIR}
...
.endif
or
%%PORTDOCSEXAMPLESDIR%%/some_example_file
are WRONG.
Please use the right pairs like:
%%PORTDOCSDOCSDIR%%
%%PORTEXAMPLESEXAMPLESDIR%%
%%PORTDATADATADIR%%


Thanks for your work on making FreeBSD better,

-- 
IOnut - Un^d^dregistered ;) FreeBSD "user"
  "Intellectual Property" is   nowhere near as valuable   as "Intellect"
FreeBSD committer -> [EMAIL PROTECTED], PGP Key ID 057E9F8B493A297B
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all

Re: cvs commit: src/sys/sparc64/include in_cksum.h

2008-06-29 Thread Bruce Evans

On Sun, 29 Jun 2008, Christoph Mallon wrote:


Bruce Evans wrote:


I have to disagree. Where does the GCC documentation state, that "cc" has 
no effect on x86? It is the other way round: The compiler assumes, the 


Well, in gcc-1.40, gcc.info says nothing about "cc", apparently because
"cc" didn't exist in gcc-1.40.  gcc-1.40 had to assume that cc was
always clobbered.  I think there are enough old i386 asm statements


GCC 1.4? Would you please bury this corpse again? It smells. (;


I don't remember using gcc.1.4, but many of the basic asm statements in
FreeBSD and Linux have the same age as gcc-1.40.


since gcc doesn't really understand cc in asms).  (Linux-2.6.10/include/
asm-i386/*.h has 177 __asm__ statements (133 with volatile) with only
11 "cc"'s.  Examples of ones without "cc"'s are everything in string.h,
where things like scasb for strcmp() normally clobber "cc".)

Newer versions of gcc.info have to say to use it in clobber lists, to
support CPUs with a shorter history than i386 and to prepare for changing
the assumptions on i386.


Three fourth of the assembler statements needing volatile seems way to high 
to me.


Three fourths of asm statements would need cc clobbers with your rule, and
only 1 hundredth of them currently have them :-(.  I exaggerate slightly --
the ratios might be more like 2/4 and 1/10, depending on how common
arithmetic operations are in asm statements (they aren't in most asm
statements because C handles plain arithmetic operations well).  BTW, what
happens for floating point condition codes?  Nothing is documented, so we
have to guess that the cc clobber covers FP condition codes or that all
condition codes are assumed to be clobbered by all asms.

I did not find the strcmp() implementation, which uses scasb. I only 
found strcmp.S, which is not inline assembler and does not use scas either, 
which would have suprised me (nor cmpsb, which would be more logical).


Try linux-x.y.z/include/asm-i386/string.h.  Some of this has been imported
into FreeBSD, in i386-bitops.h in ext2fs.  File systems don't benefit from
this much micro-optimization (for i486's), but checksumming does.

Bruce
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/net/spserver Makefile distinfo pkg-plist ports/net/spserver/files patch-spserver_Makefile

2008-06-29 Thread Vanilla I. Shu
vanilla 2008-06-29 09:50:24 UTC

  FreeBSD ports repository

  Modified files:
net/spserver Makefile distinfo pkg-plist 
net/spserver/files   patch-spserver_Makefile 
  Log:
  Upgrade to 0.9.2.
  
  Revision  ChangesPath
  1.11  +1 -1  ports/net/spserver/Makefile
  1.8   +3 -3  ports/net/spserver/distinfo
  1.2   +8 -21 ports/net/spserver/files/patch-spserver_Makefile
  1.8   +1 -0  ports/net/spserver/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/print/cups-pdf Makefile distinfo

2008-06-29 Thread Martin Wilke
miwi2008-06-29 09:50:35 UTC

  FreeBSD ports repository

  Modified files:
print/cups-pdf   Makefile distinfo 
  Log:
  - Update to 2.4.8
  
  PR: 125060
  Submitted by:   Simon Olofsson <[EMAIL PROTECTED]> (maintainer)
  
  Revision  ChangesPath
  1.20  +1 -2  ports/print/cups-pdf/Makefile
  1.16  +3 -3  ports/print/cups-pdf/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/oops Makefile pkg-plist ports/www/oops/files oops.in oops.sh

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 09:53:47 UTC

  FreeBSD ports repository

  Modified files:
www/oops Makefile pkg-plist 
  Added files:
www/oops/files   oops.in 
  Removed files:
www/oops/files   oops.sh 
  Log:
  - fix plist for -DNOPORTDOCS
  - install rc script via USE_RC_SUBR
  - pet portlint a little
  - bump PORTREVISION
  
  Submitted by:   marck@ (maintainer)
  Prompted by:QA Tindy run
  
  Revision  ChangesPath
  1.44  +10 -11ports/www/oops/Makefile
  1.1   +47 -0 ports/www/oops/files/oops.in (new)
  1.5   +0 -47 ports/www/oops/files/oops.sh (dead)
  1.10  +2 -3  ports/www/oops/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/usr.sbin/pmcstat pmcstat.8

2008-06-29 Thread Joseph Koshy
jkoshy  2008-06-29 10:30:06 UTC

  FreeBSD src repository

  Modified files:
usr.sbin/pmcstat pmcstat.8 
  Log:
  SVN rev 180091 on 2008-06-29 10:30:06Z by jkoshy
  
  Document messages printed in verbose mode.
  
  Requested by:   Fabien Thomas 
  
  Revision  ChangesPath
  1.14  +36 -2 src/usr.sbin/pmcstat/pmcstat.8
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/net Makefile ports/net/jicmp Makefile distinfo pkg-descr ports/net/jicmp/files patch-Makefile.am

2008-06-29 Thread Martin Wilke
miwi2008-06-29 11:04:39 UTC

  FreeBSD ports repository

  Modified files:
net  Makefile 
  Added files:
net/jicmpMakefile distinfo pkg-descr 
net/jicmp/files  patch-Makefile.am 
  Log:
  A Java native interface (JNI) to ICMP (ping), formerly a part of the base
  OpenNMS package.
  
  WWW: http://www.opennms.org/index.php/Jicmp
  
  PR: ports/124990
  Submitted by:   Ryan T. Dean 
  
  Revision  ChangesPath
  1.2016+1 -0  ports/net/Makefile
  1.1   +36 -0 ports/net/jicmp/Makefile (new)
  1.1   +3 -0  ports/net/jicmp/distinfo (new)
  1.1   +11 -0 ports/net/jicmp/files/patch-Makefile.am (new)
  1.1   +4 -0  ports/net/jicmp/pkg-descr (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/databases Makefile ports/databases/jrrd Makefile distinfo pkg-descr ports/databases/jrrd/files patch-Makefile.am

2008-06-29 Thread Martin Wilke
miwi2008-06-29 11:08:45 UTC

  FreeBSD ports repository

  Modified files:
databasesMakefile 
  Added files:
databases/jrrd   Makefile distinfo pkg-descr 
databases/jrrd/files patch-Makefile.am 
  Log:
  A Java native interface (JNI) to RRDtool, formerly a part of the base
  OpenNMS package.
  
  WWW: http://www.opennms.org/index.php/Jrrd
  
  PR: ports/124982
  Submitted by:   Ryan T. Dean 
  
  Revision  ChangesPath
  1.692 +1 -0  ports/databases/Makefile
  1.1   +38 -0 ports/databases/jrrd/Makefile (new)
  1.1   +3 -0  ports/databases/jrrd/distinfo (new)
  1.1   +11 -0 ports/databases/jrrd/files/patch-Makefile.am (new)
  1.1   +4 -0  ports/databases/jrrd/pkg-descr (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/audio Makefile ports/audio/vagalume Makefile distinfo pkg-descr pkg-plist

2008-06-29 Thread Martin Wilke
miwi2008-06-29 11:10:29 UTC

  FreeBSD ports repository

  Modified files:
audioMakefile 
  Added files:
audio/vagalume   Makefile distinfo pkg-descr pkg-plist 
  Log:
  Vagalume is an GTK+-based client for the Last.fm online radio.
  
  Although it works in standard PCs, it is specially designed
  to work in the Maemo platform. It has access to virtually all
  the same functions as the official client, including scrobbling,
  tagging, loving, banning etc.
  
  WWW: http://vagalume.igalia.com/
  
  PR: ports/124882
  Submitted by:   Bernhard Fröhlich 
  
  Revision  ChangesPath
  1.968 +1 -0  ports/audio/Makefile
  1.1   +59 -0 ports/audio/vagalume/Makefile (new)
  1.1   +3 -0  ports/audio/vagalume/distinfo (new)
  1.1   +8 -0  ports/audio/vagalume/pkg-descr (new)
  1.1   +32 -0 ports/audio/vagalume/pkg-plist (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/games/linux-ut distinfo

2008-06-29 Thread Martin Wilke
miwi2008-06-29 11:23:23 UTC

  FreeBSD ports repository

  Modified files:
games/linux-ut   distinfo 
  Log:
  - Readded UTPGPatch451.tar.bz2 distfile (was dropped in the previous commit)
  
  PR: 125029
  Submitted by:   Alexander Logvinov <[EMAIL PROTECTED]>
  Approved by:scf@ (maintainer)
  
  Revision  ChangesPath
  1.4   +3 -0  ports/games/linux-ut/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/sparc64/include in_cksum.h

2008-06-29 Thread Bruce Evans

On Sun, 29 Jun 2008, Christoph Mallon wrote:


Bruce Evans wrote:

Right.  Though I've never seen unnecessary's __volatiles significantly
affecting i386 code.  This is because the code in the asms can't be
removed completely, and can't be moved much either.  With out of order
execution, the type of moves that are permitted (not across dependencies)

  ^^

are precisely the type of moves that the CPU's scheduler can do or undo
no matter how the compiler orders the code.


I disagree. For example look at the use of in_addword() in dev/sk/if_sk.cv 
in line 2819:

 csum1 = htons(csum & 0x);
 csum2 = htons((csum >> 16) & 0x);
 ipcsum = in_addword(csum1, ~csum2 & 0x);
 /* checksum fixup for IP options */
 len = hlen - sizeof(struct ip);
 if (len > 0) {
   return;
 }

The calculation will be executed even if the following if (len > 0) leaves 
the function and the value of ipcsum is unused.
If in_addword() is not marked volatile it can be moved after the if and 
not be executed in all cases. csum1 and csum2 can be moved after the if, 
too.


No, volatile has no effect on whether the above calculation will be
executed, since the early return has no dependencies on the caclulation.


The volatile induces a dependency.


Dependency on what?  Perhaps the only guarantee is that a volatile asm
with no other dependencies is executed at some point before the next
function call or return.  gcc.info doesn't guarantee anything except not
removing a volatile asm, but moving it far enough away to not execute it
before return would be equivalent to removing it.


Old versions of gcc used to handle volatile like that, but this changed
in gcc-3 or earlier.  gcc.info now says:

% The `volatile' keyword indicates that the instruction has important
% side-effects.  GCC will not delete a volatile `asm' if it is reachable.
  ^^^


This is not about whether the code is reachable or not (it is reachable), it 
is about whether the result is used (i.e. whether the code is dead).



% (The instruction can still be deleted if GCC can prove that
% control-flow will never reach the location of the instruction.)  Note
% that even a volatile `asm' instruction can be moved relative to other
   
% code, including across jump instructions.  For example, on many targets
  


jump != conditional jump.
If it moves the *volatile* asm statement across the if, it would only appear 
on *some* execution paths, which is wrong. It is perfectly fine to move it, 
when the statement is not volatile, though.


I don't see why a plain conditional jump would be restricted.  Only returns
and possibly function calls must be restricted, since the compiler can't
do any dependency analysis across returns so it must execute undead code
before return.

The above paragraph from gcc.info continues as follows:

% there is a system register which can be set to control the rounding
% mode of floating point operations.  You might try setting it with a
% volatile `asm', like this PowerPC example:
% 
% asm volatile("mtfsf 255,%0" : : "f" (fpenv));

% sum = x + y;
% 
% This will not work reliably, as the compiler may move the addition back

% before the volatile `asm'.  To make it work you need to add an
% artificial dependency to the `asm' referencing a variable in the code
% you don't want moved, for example:

Suppose that this example has an if statement:

asm volatile(...);
if (independent_var)
sum = x + y;
else
sum = y + z;

Here there is no reason for this simple if statement to prevent moving
the asm any more than the simple assignment, since nothing in any
clause of the if statement has any explicit dependencies on the asm,
just like the simple assignment has no explicit dependencies.


Even if gcc didn't move the caclulation, then CPUs with out of order
execution might schedule it so that it is effectively never executed
(most likely by executing it in otherwise-unused pipelines while the
main pipeline returns).  This is valid for the same reasons that gcc
can move the volatile asms -- the return doesn't depend on the result
of the caclulation.


This is for the CPU to decide. If the assembler block really contains 
"important" stuff like memory barriers, writes to machine control registers 
etc., the CPU will not "effectively never execute" the code. The compiler 
does not know this, all it sees is the word "volatile".


The above example shows that volatile is not enough for a memory
barrier.  A memory clobber is probably needed for barriers, but
interferes with optimization.  On ia64, barrier instructions seem to
just use volatile, while on i386 the only fairly explicit barrier
function is bus_space_barrier(), which uses a dummy loc

cvs commit: ports/devel/p5-RRDTool-OO Makefile distinfo

2008-06-29 Thread Martin Wilke
miwi2008-06-29 12:21:45 UTC

  FreeBSD ports repository

  Modified files:
devel/p5-RRDTool-OO  Makefile distinfo 
  Log:
  - Update to 0.22
  
  PR: 125042
  Submitted by:   Stefan Pauly <[EMAIL PROTECTED]> (maintainer)
  
  Revision  ChangesPath
  1.12  +1 -2  ports/devel/p5-RRDTool-OO/Makefile
  1.8   +3 -3  ports/devel/p5-RRDTool-OO/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/print/latex-pgf Makefile distinfo pkg-descr pkg-plist

2008-06-29 Thread Hiroki Sato
hrs 2008-06-29 12:29:07 UTC

  FreeBSD ports repository

  Modified files:
print/latex-pgf  Makefile distinfo pkg-descr pkg-plist 
  Log:
  Update to 2.00.
  
  PR: ports/124934
  
  Revision  ChangesPath
  1.13  +8 -1  ports/print/latex-pgf/Makefile
  1.11  +3 -3  ports/print/latex-pgf/distinfo
  1.4   +1 -1  ports/print/latex-pgf/pkg-descr
  1.8   +74 -177   ports/print/latex-pgf/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/conf NOTES

2008-06-29 Thread Philip Paeps
philip  2008-06-29 12:51:49 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_7)
sys/conf NOTES 
  Log:
  SVN rev 180092 on 2008-06-29 12:51:49Z by philip
  
  MFC r180077:
  
  Remove stray "miibus0" reference from ancient kernel config file times.
  
  Revision ChangesPath
  1.1454.2.10  +1 -1  src/sys/conf/NOTES
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/conf NOTES

2008-06-29 Thread Philip Paeps
philip  2008-06-29 12:54:39 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_6)
sys/conf NOTES 
  Log:
  SVN rev 180093 on 2008-06-29 12:54:39Z by philip
  
  MFC r180077:
  
  Remove stray "miibus0" reference from ancient kernel config file times.
  
  Revision ChangesPath
  1.1325.2.41  +1 -1  src/sys/conf/NOTES
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/slgtk Makefile distinfo pkg-descr pkg-plist

2008-06-29 Thread Martin Wilke
miwi2008-06-29 13:05:14 UTC

  FreeBSD ports repository

  Modified files:
x11-toolkits Makefile 
  Added files:
x11-toolkits/slgtk   Makefile distinfo pkg-descr pkg-plist 
  Log:
  The SLgtk package binds the GIMP Toolkit, also known as Gtk,
  to the S-Lang scripting language. It provides an importable module
  which makes most of Gtk and its constituent libraries callable directly
  from S-Lang scripts.
  
  With SLgtk the S-Lang programmer now has access to a powerful,
  cross-platform widget set for creating sophisticated
  graphical user interfaces (GUIs). The package also includes bindings
  to GtkExtra, which are used in the vwhere visualization and filtering guilet,
  as well as a gdk-pixbuf loader for the FITS image file format
  widely used within astronomy, and an easy-to-use but powerful
  image compositing, display, and output tool.
  
  WWW: http://space.mit.edu/home/mnoble/slgtk/
  
  PR: ports/125055
  Submitted by:   Alexey Shuvaev 
  
  Revision  ChangesPath
  1.480 +1 -0  ports/x11-toolkits/Makefile
  1.1   +65 -0 ports/x11-toolkits/slgtk/Makefile (new)
  1.1   +3 -0  ports/x11-toolkits/slgtk/distinfo (new)
  1.1   +14 -0 ports/x11-toolkits/slgtk/pkg-descr (new)
  1.1   +88 -0 ports/x11-toolkits/slgtk/pkg-plist (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/net if_loop.c

2008-06-29 Thread Ed Schouten
ed  2008-06-29 13:17:01 UTC

  FreeBSD src repository

  Modified files:
sys/net  if_loop.c 
  Log:
  SVN rev 180094 on 2008-06-29 13:17:01Z by ed
  
  Remove the unused softc from the lo(4) driver.
  
  Now that the pseudo-interface cloner has an internal list of instances,
  there is no need to create a softc. The softc only contains a pointer to
  the ifp, which means there is no valid reason to keep it. While there,
  remove the corresponding malloc-pool.
  
  Approved by:philip (mentor)
  
  Revision  ChangesPath
  1.117 +2 -20 src/sys/net/if_loop.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/devel Makefile ports/devel/dsss Makefile distinfo pkg-descr pkg-plist

2008-06-29 Thread Dmitry Marakasov
amdmi3  2008-06-29 14:08:29 UTC

  FreeBSD ports repository

  Modified files:
develMakefile 
  Added files:
devel/dsss   Makefile distinfo pkg-descr pkg-plist 
  Log:
  DSSS, the D Shared Software System, builds upon rebuild and intends
  to create a standardized system for building, installing, configuring,
  acquiring and using D software, licensed as Free and Open Source
  Software under the MIT license. One notable component of it is its
  net module, which provides an analogue to Perl's CPAN or Ruby's
  Gems for the D programming language.
  
  WWW: http://www.dsource.org/projects/dsss/
  
  PR: ports/124596
  Approved by:miwi (mentor)
  
  Revision  ChangesPath
  1.3121+1 -0  ports/devel/Makefile
  1.1   +40 -0 ports/devel/dsss/Makefile (new)
  1.1   +3 -0  ports/devel/dsss/distinfo (new)
  1.1   +8 -0  ports/devel/dsss/pkg-descr (new)
  1.1   +53 -0 ports/devel/dsss/pkg-plist (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/ruby-aws Makefile distinfo pkg-plist

2008-06-29 Thread Martin Wilke
miwi2008-06-29 14:19:25 UTC

  FreeBSD ports repository

  Modified files:
www/ruby-aws Makefile distinfo pkg-plist 
  Log:
  - Update to 0.3.3
  
  PR: 125095
  Submitted by:   IWATSUKI Hiroyuki <[EMAIL PROTECTED]> (maintainer)
  
  Revision  ChangesPath
  1.3   +3 -1  ports/www/ruby-aws/Makefile
  1.3   +3 -3  ports/www/ruby-aws/distinfo
  1.3   +10 -0 ports/www/ruby-aws/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/games/armagetron Makefile distinfo pkg-descr pkg-plist ports/games/armagetron/files patch-Makefile.global.in patch-Makefile.in patch-configure patch-src-engine_eVoter.cpp patch-src-e

2008-06-29 Thread Rong-En Fan
rafan   2008-06-29 15:21:08 UTC

  FreeBSD ports repository

  Modified files:
games/armagetron Makefile distinfo pkg-descr pkg-plist 
games/armagetron/files patch-configure 
   patch-src-engine_eVoter.cpp 
   patch-src-engine_eWall.h 
   patch-src-tron_gCycle.h 
  Added files:
games/armagetron/files patch-Makefile.in 
  Removed files:
games/armagetron/files patch-Makefile.global.in 
   patch-src-network_nPriorizing.h 
  Log:
  - Update to 0.2.8.2.1
  - Pass maintainership to submitter
  
  PR: ports/124017 (based on)
  Submitted by:   Ian Wagner 
  
  Revision  ChangesPath
  1.10  +14 -7 ports/games/armagetron/Makefile
  1.2   +3 -3  ports/games/armagetron/distinfo
  1.2   +0 -11 ports/games/armagetron/files/patch-Makefile.global.in 
(dead)
  1.1   +11 -0 ports/games/armagetron/files/patch-Makefile.in (new)
  1.2   +11 -31ports/games/armagetron/files/patch-configure
  1.2   +6 -6  ports/games/armagetron/files/patch-src-engine_eVoter.cpp
  1.2   +5 -6  ports/games/armagetron/files/patch-src-engine_eWall.h
  1.2   +0 -10 
ports/games/armagetron/files/patch-src-network_nPriorizing.h (dead)
  1.2   +12 -11ports/games/armagetron/files/patch-src-tron_gCycle.h
  1.2   +5 -5  ports/games/armagetron/pkg-descr
  1.2   +119 -78   ports/games/armagetron/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: doc/zh_TW.Big5/books/handbook Makefile book.sgml chapters.ent doc/zh_TW.Big5/books/handbook/jails chapter.sgml

2008-06-29 Thread Chin-San Huang
chinsan 2008-06-29 16:05:30 UTC

  FreeBSD doc repository

  Modified files:
zh_TW.Big5/books/handbook Makefile book.sgml chapters.ent 
  Added files:
zh_TW.Big5/books/handbook/jails chapter.sgml 
  Log:
  - Add handbook/jails completed translation.
  
  Submitted by:   whsyu
  Obtained from:  The FreeBSD Traditional Chinese Project
  https://opensvn.csie.org/traccgi/freebsddoc/wiki
  
  Revision  ChangesPath
  1.10  +1 -1  doc/zh_TW.Big5/books/handbook/Makefile
  1.8   +3 -0  doc/zh_TW.Big5/books/handbook/book.sgml
  1.5   +1 -1  doc/zh_TW.Big5/books/handbook/chapters.ent
  1.1   +815 -0doc/zh_TW.Big5/books/handbook/jails/chapter.sgml (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/graphics/gdchart Makefile pkg-plist

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 16:12:23 UTC

  FreeBSD ports repository

  Modified files:
graphics/gdchart Makefile pkg-plist 
  Log:
  - respect NOPORTDOCS and NOPORTEXAMPLES
  - fis plist dor -DNOPORTDOCS
  - bump PORTREVISION
  
  Prompted by:QA Tindy run
  
  Revision  ChangesPath
  1.19  +4 -2  ports/graphics/gdchart/Makefile
  1.7   +7 -7  ports/graphics/gdchart/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/py-nevow Makefile

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 16:29:28 UTC

  FreeBSD ports repository

  Modified files:
www/py-nevow Makefile 
  Log:
  Mark broken, can't import module web from twisted
  
  Revision  ChangesPath
  1.9   +2 -0  ports/www/py-nevow/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/contrib/gdtoa gethex.c

2008-06-29 Thread David Schultz
das 2008-06-29 16:35:33 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_7)
contrib/gdtoagethex.c 
  Log:
  SVN rev 180095 on 2008-06-29 16:35:33Z by das
  
  MFC r179918:
  
Bring in the vendor's fix for a bug in strtod() whereby
strtod("0xyz", &endp) resulted in endp pointing to "0xyz"
instead of "xyz".
  
  Revision ChangesPath
  1.1.1.4.2.1  +5 -2  src/contrib/gdtoa/gethex.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/mail/evolution-exchange Makefile

2008-06-29 Thread Joe Marcus Clarke
marcus  2008-06-29 16:41:02 UTC

  FreeBSD ports repository

  Modified files:
mail/evolution-exchange Makefile 
  Log:
  Clarify the IGNORE message when mapi.h exists.
  
  Requested by:   netchild
  
  Revision  ChangesPath
  1.44  +1 -1  ports/mail/evolution-exchange/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports MOVED ports/security Makefile ports/security/ca-roots Makefile pkg-descr pkg-plist ports/security/ca-roots/files ca-root.crt

2008-06-29 Thread Simon L. Nielsen
simon   2008-06-29 16:48:01 UTC

  FreeBSD ports repository

  Modified files:
.MOVED 
security Makefile 
  Removed files:
security/ca-rootsMakefile pkg-descr pkg-plist 
security/ca-roots/files ca-root.crt 
  Log:
  Retire the ca-roots ports, which expired long ago.
  
  The port is deprecated since it is not supported by the FreeBSD
  Security Officer anymore.  The reason for this is that the ca-roots
  port makes promises with regard to CA verification which the current
  Security Officer (and deputy) do not want to make.
  
  For people who need a general root certificate list see the
  security/ca_root_ns, but note that the difference in guarantees with
  regard to which CAs are included in ca_root_ns vs. ca-roots.  The
  ca_root_ns port basically makes no guarantees other than that the
  certificates comes from the Mozilla project.
  
  Note that the ca-roots MOVED file entry on purpose does not point at
  ca_root_ns due to the change in CA guarantees.
  
  With hat:   security-officer
  
  Revision  ChangesPath
  1.1637+2 -1  ports/MOVED
  1.979 +0 -1  ports/security/Makefile
  1.11  +0 -26 ports/security/ca-roots/Makefile (dead)
  1.5   +0 -4036   ports/security/ca-roots/files/ca-root.crt (dead)
  1.2   +0 -11 ports/security/ca-roots/pkg-descr (dead)
  1.3   +0 -5  ports/security/ca-roots/pkg-plist (dead)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/usr.sbin/cron/cron cron.8 cron.c cron.h do_command.c

2008-06-29 Thread Dmitry Morozovsky
marck   2008-06-29 16:56:18 UTC

  FreeBSD src repository

  Modified files:
usr.sbin/cron/cron   cron.8 cron.c cron.h do_command.c 
  Log:
  SVN rev 180096 on 2008-06-29 16:56:18Z by marck
  
  Add -m option to cron(8), overriding default mail recipient for cron mails,
  unless explicitly provided by MAILTO= line in crontab.  This feature can be
  useful in massive hosting environment, where most users do not care about
  autogenerated mails.
  
  Setting recipient to null string disables default mails at all.
  
  Approved by:yar
  MFC after:  4 weeks
  
  Revision  ChangesPath
  1.26  +19 -1 src/usr.sbin/cron/cron/cron.8
  1.20  +5 -2  src/usr.sbin/cron/cron/cron.c
  1.19  +4 -2  src/usr.sbin/cron/cron/cron.h
  1.29  +8 -12 src/usr.sbin/cron/cron/do_command.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/japanese/rogue_s Makefile pkg-plist ports/japanese/rogue_s/files patch-aa rogue_s.6

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 17:12:00 UTC

  FreeBSD ports repository

  Modified files:
japanese/rogue_s Makefile 
japanese/rogue_s/files patch-aa 
  Removed files:
japanese/rogue_s pkg-plist 
japanese/rogue_s/files rogue_s.6 
  Log:
  - respect NOPORTDOCS and NOPORTDATA
  - plist now embedded in Makefile
  - files/rogue_s.6 was renamed to files/rogue_s.6.in with some modification.
  - bump PORTREVISON
  
  PR: ports/125090
  Submitted by:   maintainer
  
  Revision  ChangesPath
  1.6   +27 -17ports/japanese/rogue_s/Makefile
  1.3   +1 -1  ports/japanese/rogue_s/files/patch-aa
  1.2   +0 -91 ports/japanese/rogue_s/files/rogue_s.6 (dead)
  1.2   +0 -12 ports/japanese/rogue_s/pkg-plist (dead)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/lib/libc/sys socket.2

2008-06-29 Thread David Schultz
das 2008-06-29 17:17:14 UTC

  FreeBSD src repository

  Modified files:
lib/libc/sys socket.2 
  Log:
  SVN rev 180097 on 2008-06-29 17:17:14Z by das
  
  Make it clearer that it is possible to disable the generation of
  SIGPIPE for individual sockets (PR: kern/118626).
  
  While here, s/insure/ensure/.
  
  Revision  ChangesPath
  1.32  +4 -4  src/lib/libc/sys/socket.2
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/lang/fpc-units Makefile

2008-06-29 Thread Jose Alonso Cardenas Marquez
acm 2008-06-29 17:43:10 UTC

  FreeBSD ports repository

  Modified files:
lang/fpc-units   Makefile 
  Log:
  - Fix LATEST_LINK value
  
  Revision  ChangesPath
  1.11  +1 -1  ports/lang/fpc-units/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/games/sauerbraten Makefile distinfo pkg-plist

2008-06-29 Thread Dmitry Marakasov
amdmi3  2008-06-29 17:46:39 UTC

  FreeBSD ports repository

  Modified files:
games/sauerbratenMakefile distinfo pkg-plist 
  Log:
  - Update to 20080617
  - Simplify do-install target (install all data, instead of picking specific 
extensions - no actual need for that)
  - Fix plist for WITHOUT_CLIENT and WITHOUT_DEDICATED cases
  
  PR: ports/124959
  Approved by:acm (maintainer; via irc), miwi (mentor)
  
  Revision  ChangesPath
  1.16  +6 -14 ports/games/sauerbraten/Makefile
  1.9   +3 -3  ports/games/sauerbraten/distinfo
  1.9   +884 -85   ports/games/sauerbraten/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: www/share/sgml events.xml

2008-06-29 Thread Murray Stokely
murray  2008-06-29 17:55:09 UTC

  FreeBSD doc repository

  Modified files:
share/sgml   events.xml 
  Log:
  Add O'Reilly OSCon 2008 in Portland.  There will again be a FreeBSD
  booth.
  
  Revision  ChangesPath
  1.53  +26 -1 www/share/sgml/events.xml
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/kern kern_cpuset.c src/sys/sys priv.h

2008-06-29 Thread Bjoern A. Zeeb
bz  2008-06-29 17:58:16 UTC

  FreeBSD src repository

  Modified files:
sys/kern kern_cpuset.c 
sys/sys  priv.h 
  Log:
  SVN rev 180098 on 2008-06-29 17:58:16Z by bz
  
  Add a new priv 'PRIV_SCHED_CPUSET' to check if manipulating cpusets is
  allowed and replace the suser() call. Do not allow it in jails.
  
  Reviewed by:rwatson
  
  Revision  ChangesPath
  1.11  +1 -1  src/sys/kern/kern_cpuset.c
  1.20  +1 -0  src/sys/sys/priv.h
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/graphics/gqview Makefile pkg-plist

2008-06-29 Thread Lars Engels
lme 2008-06-29 18:23:56 UTC

  FreeBSD ports repository

  Modified files:
graphics/gqview  Makefile pkg-plist 
  Log:
  - Fix plist with NOPORTDOCS
  - Change to SFE macro
  - Bump PORTREVISION
  
  Noticed by: IonBot
  
  Revision  ChangesPath
  1.69  +5 -6  ports/graphics/gqview/Makefile
  1.20  +49 -0 ports/graphics/gqview/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/kern kern_intr.c

2008-06-29 Thread Bjoern A. Zeeb
bz  2008-06-29 18:26:07 UTC

  FreeBSD src repository

  Modified files:
sys/kern kern_intr.c 
  Log:
  SVN rev 180099 on 2008-06-29 18:26:07Z by bz
  
  Remove an unneeded error variable to make clear that if reaching
  the end of the function we never return an error.
  
  Revision  ChangesPath
  1.164 +1 -3  src/sys/kern/kern_intr.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/amd64/include pmap.h

2008-06-29 Thread Alan Cox
alc 2008-06-29 18:35:00 UTC

  FreeBSD src repository

  Modified files:
sys/amd64/includepmap.h 
  Log:
  SVN rev 180100 on 2008-06-29 18:35:00Z by alc
  
  Increase the size of the kernel virtual address space to 6GB.  Until the
  maximum size of the kmem map can be greater than 4GB, there is little point
  in making the kernel virtual address space larger than 6GB.
  
  Tested by:  kris@
  
  Revision  ChangesPath
  1.141 +4 -5  src/sys/amd64/include/pmap.h
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/p5-HTTP-Body Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 18:57:16 UTC

  FreeBSD ports repository

  Modified files:
www/p5-HTTP-Body Makefile distinfo 
  Log:
  Update to 1.04
  
  Revision  ChangesPath
  1.11  +1 -1  ports/www/p5-HTTP-Body/Makefile
  1.9   +3 -3  ports/www/p5-HTTP-Body/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/databases/p5-Cache-Memcached-Managed Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 19:02:31 UTC

  FreeBSD ports repository

  Modified files:
databases/p5-Cache-Memcached-Managed Makefile distinfo 
  Log:
  Update to 0.20
  
  Revision  ChangesPath
  1.8   +3 -3  ports/databases/p5-Cache-Memcached-Managed/Makefile
  1.6   +3 -3  ports/databases/p5-Cache-Memcached-Managed/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/p5-Catalyst-Action-RenderView Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 19:07:46 UTC

  FreeBSD ports repository

  Modified files:
www/p5-Catalyst-Action-RenderView Makefile distinfo 
  Log:
  Update to 0.08
  
  Revision  ChangesPath
  1.6   +4 -1  ports/www/p5-Catalyst-Action-RenderView/Makefile
  1.5   +3 -3  ports/www/p5-Catalyst-Action-RenderView/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/p5-Catalyst-Devel Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 19:11:29 UTC

  FreeBSD ports repository

  Modified files:
www/p5-Catalyst-Devel Makefile distinfo 
  Log:
  Update to 1.07
  
  Revision  ChangesPath
  1.8   +1 -1  ports/www/p5-Catalyst-Devel/Makefile
  1.6   +3 -3  ports/www/p5-Catalyst-Devel/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/amd64/include pmap.h vmparam.h

2008-06-29 Thread Alan Cox
alc 2008-06-29 19:13:27 UTC

  FreeBSD src repository

  Modified files:
sys/amd64/includepmap.h vmparam.h 
  Log:
  SVN rev 180101 on 2008-06-29 19:13:27Z by alc
  
  Strictly speaking, the definition of VM_MAX_KERNEL_ADDRESS is wrong.  However,
  in practice, the error (currently) makes no difference because the computation
  performed by KVADDR() hides the error.  This revision fixes the error.
  
  Also, eliminate a (now) unused definition.
  
  Revision  ChangesPath
  1.142 +0 -1  src/sys/amd64/include/pmap.h
  1.52  +1 -1  src/sys/amd64/include/vmparam.h
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: www/share/sgml events.xml templates.events.xsl

2008-06-29 Thread Murray Stokely
murray  2008-06-29 19:25:35 UTC

  FreeBSD doc repository

  Modified files:
share/sgml   events.xml templates.events.xsl 
  Log:
  Add support for hardcoding the URL to the Y! upcoming page when the
  search result based on the name doesn't find the event.  Use this for
  OSCon and rmll.
  
  PR:   www/124611
  
  Revision  ChangesPath
  1.54  +3 -1  www/share/sgml/events.xml
  1.11  +8 -3  www/share/sgml/templates.events.xsl
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/p5-Catalyst-Manual Makefile distinfo pkg-plist

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 19:28:04 UTC

  FreeBSD ports repository

  Modified files:
www/p5-Catalyst-Manual Makefile distinfo pkg-plist 
  Log:
  Update to 5.7012
  
  Revision  ChangesPath
  1.7   +5 -1  ports/www/p5-Catalyst-Manual/Makefile
  1.6   +3 -3  ports/www/p5-Catalyst-Manual/distinfo
  1.6   +3 -0  ports/www/p5-Catalyst-Manual/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/p5-Catalyst-Plugin-Cache Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 19:32:13 UTC

  FreeBSD ports repository

  Modified files:
www/p5-Catalyst-Plugin-Cache Makefile distinfo 
  Log:
  Update to 0.06
  
  Revision  ChangesPath
  1.6   +3 -3  ports/www/p5-Catalyst-Plugin-Cache/Makefile
  1.4   +3 -3  ports/www/p5-Catalyst-Plugin-Cache/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/japanese/rogue_s/files rogue_s.6.in

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 19:38:23 UTC

  FreeBSD ports repository

  Added files:
japanese/rogue_s/files rogue_s.6.in 
  Log:
  - respect NOPORTDOCS and NOPORTDATA
  - plist now embedded in Makefile
  - files/rogue_s.6 was renamed to files/rogue_s.6.in with some modification.
  - bump PORTREVISON
  
  PR: ports/125090
  Submitted by:   maintainer
  
  Revision  ChangesPath
  1.1   +92 -0 ports/japanese/rogue_s/files/rogue_s.6.in (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/p5-Catalyst-Plugin-ConfigLoader Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 19:42:07 UTC

  FreeBSD ports repository

  Modified files:
www/p5-Catalyst-Plugin-ConfigLoader Makefile distinfo 
  Log:
  Update to 0.20
  
  Revision  ChangesPath
  1.12  +1 -1  ports/www/p5-Catalyst-Plugin-ConfigLoader/Makefile
  1.11  +3 -3  ports/www/p5-Catalyst-Plugin-ConfigLoader/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/p5-Catalyst-Plugin-FillInForm Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 19:44:14 UTC

  FreeBSD ports repository

  Modified files:
www/p5-Catalyst-Plugin-FillInForm Makefile distinfo 
  Log:
  Update to 0.09
  
  Revision  ChangesPath
  1.7   +1 -1  ports/www/p5-Catalyst-Plugin-FillInForm/Makefile
  1.4   +3 -3  ports/www/p5-Catalyst-Plugin-FillInForm/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/p5-Catalyst-Plugin-PageCache Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 19:47:12 UTC

  FreeBSD ports repository

  Modified files:
www/p5-Catalyst-Plugin-PageCache Makefile distinfo 
  Log:
  Update to 0.18
  
  Revision  ChangesPath
  1.10  +1 -1  ports/www/p5-Catalyst-Plugin-PageCache/Makefile
  1.7   +3 -3  ports/www/p5-Catalyst-Plugin-PageCache/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/p5-Catalyst-Plugin-Session-Store-DBI Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 19:48:52 UTC

  FreeBSD ports repository

  Modified files:
www/p5-Catalyst-Plugin-Session-Store-DBI Makefile distinfo 
  Log:
  Update to 0.13
  
  Revision  ChangesPath
  1.12  +1 -1  ports/www/p5-Catalyst-Plugin-Session-Store-DBI/Makefile
  1.9   +3 -3  ports/www/p5-Catalyst-Plugin-Session-Store-DBI/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/p5-Catalyst-Runtime Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 19:54:47 UTC

  FreeBSD ports repository

  Modified files:
www/p5-Catalyst-Runtime Makefile distinfo 
  Log:
  Update to 5.7014
  
  Revision  ChangesPath
  1.11  +3 -3  ports/www/p5-Catalyst-Runtime/Makefile
  1.10  +3 -3  ports/www/p5-Catalyst-Runtime/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/p5-Catalyst-View-Mason Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 19:56:56 UTC

  FreeBSD ports repository

  Modified files:
www/p5-Catalyst-View-Mason Makefile distinfo 
  Log:
  Update to 0.16
  
  Revision  ChangesPath
  1.9   +3 -3  ports/www/p5-Catalyst-View-Mason/Makefile
  1.6   +3 -3  ports/www/p5-Catalyst-View-Mason/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/www/p5-Catalyst-View-TT Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 19:58:06 UTC

  FreeBSD ports repository

  Modified files:
www/p5-Catalyst-View-TT Makefile distinfo 
  Log:
  Update to 0.27
  
  Revision  ChangesPath
  1.15  +1 -1  ports/www/p5-Catalyst-View-TT/Makefile
  1.11  +3 -3  ports/www/p5-Catalyst-View-TT/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/textproc/p5-FormValidator-Simple Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 20:00:14 UTC

  FreeBSD ports repository

  Modified files:
textproc/p5-FormValidator-Simple Makefile distinfo 
  Log:
  Update to 0.23
  
  Revision  ChangesPath
  1.18  +1 -1  ports/textproc/p5-FormValidator-Simple/Makefile
  1.14  +3 -3  ports/textproc/p5-FormValidator-Simple/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: ports/games/sauerbraten Makefile distinfo pkg-plist

2008-06-29 Thread QA Tindy
On Sun, 29 Jun 2008 17:46:39 + (UTC)
Dmitry Marakasov <[EMAIL PROTECTED]> wrote:

> amdmi3  2008-06-29 17:46:39 UTC
> 
>   FreeBSD ports repository
> 
>   Modified files:
> games/sauerbratenMakefile distinfo pkg-plist 
>   Log:
>   - Update to 20080617
>   - Simplify do-install target (install all data, instead of picking
> specific extensions - no actual need for that)
>   - Fix plist for WITHOUT_CLIENT and WITHOUT_DEDICATED cases
>   
>   PR: ports/124959
>   Approved by:acm (maintainer; via irc), miwi (mentor)
>   
>   Revision  ChangesPath
>   1.16  +6 -14 ports/games/sauerbraten/Makefile
>   1.9   +3 -3  ports/games/sauerbraten/distinfo
>   1.9   +884 -85   ports/games/sauerbraten/pkg-plist
> 
Hi,


You receive this email if you are either the maintainer of the port or if you
recently committed to it. If the error is already fixed please ignore this
email; if you submit a PR to fix it CC me and I'll commit it ASAP.

The builds are done under tinderbox-2.4.3, on 7-STABLE on amd64, with
tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with the
official up-to-date Ports Tree (for commit-triggered builds the files are
fetched via CVSWeb), with the following vars set:
NOPORTDOCS=yes,  NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes.

The error which triggered this email is bellow followed by the link to the 
full log and explanations about the testing process.


building sauerbraten-20080617 in directory /var/tinderbox/7-STABLE-FTP
maintained by: [EMAIL PROTECTED]
building for:  7.0-STABLE amd64
port directory: /usr/ports/games/sauerbraten
Makefile ident: $FreeBSD: ports/games/sauerbraten/Makefile,v 1.16 2008/06/29 
17:46:39 amdmi3 Exp $
prefixes: LOCALBASE=usr/local X11BASE=usr/local
NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes
build started at Sun Jun 29 17:48:26 UTC 2008

..

add_pkg
===>  Patching for sauerbraten-20080617
===>  Applying FreeBSD patches for sauerbraten-20080617
1 out of 1 hunks failed--saving rejects to src/Makefile.rej
=> Patch patch-src_Makefile failed to apply cleanly.
*** Error code 1

Stop in /a/ports/games/sauerbraten.

build of /usr/ports/games/sauerbraten ended at Sun Jun 29 19:57:55 UTC 2008


http://t64.tecnik93.com/errors/7-STABLE-FTP/sauerbraten-20080617.log



These emails are generated in one of the following cases:
- an automated build was scheduled because the port was touched in CVS
- the periodic QA build has reached it.
- the port was scheduled because it is a dependency of a port from the cases
above.
There is no fixed interval for this; if other ports depend on it you will
receive this emails more often since testing those other ports is made
impossible by this port being broken. Efforts are made to restrict the number
of outgoing emails to one/port/week for QA or dependency builds (but not for
commit-triggered builds; if you commit 3 times in 5 minutes to the same port
and the first 2 versions fail you'll receive 2 emails).

When you fix install/plist errors please bear in mind that each of the 3 NO*
vars controls the installation of different type of files, so constructs like:
.ifndef NOPORTDOCS
@${MKDIR} ${DATADIR}
...
.endif
or
%%PORTDOCSEXAMPLESDIR%%/some_example_file
are WRONG.
Please use the right pairs like:
%%PORTDOCSDOCSDIR%%
%%PORTEXAMPLESEXAMPLESDIR%%
%%PORTDATADATADIR%%


Thanks for your work on making FreeBSD better,

-- 
IOnut - Un^d^dregistered ;) FreeBSD "user"
  "Intellectual Property" is   nowhere near as valuable   as "Intellect"
FreeBSD committer -> [EMAIL PROTECTED], PGP Key ID 057E9F8B493A297B
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/lang/huc Makefile pkg-plist

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 20:02:51 UTC

  FreeBSD ports repository

  Modified files:
lang/huc Makefile pkg-plist 
  Log:
  - fix plist for -DNOPORTDOCS
  - bump PORTREVISION
  
  Prompted by:QA Tindy run
  
  Revision  ChangesPath
  1.5   +1 -1  ports/lang/huc/Makefile
  1.3   +29 -29ports/lang/huc/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/devel/p5-Moose Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 20:11:20 UTC

  FreeBSD ports repository

  Modified files:
devel/p5-Moose   Makefile distinfo 
  Log:
  Update to 0.51
  
  Revision  ChangesPath
  1.28  +1 -1  ports/devel/p5-Moose/Makefile
  1.26  +3 -3  ports/devel/p5-Moose/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/lang/nesasm Makefile pkg-plist

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 20:13:43 UTC

  FreeBSD ports repository

  Modified files:
lang/nesasm  Makefile pkg-plist 
  Log:
  - fix plist when -DNOPORTDOCS
  - bump PORTREVISION
  
  Prompted by:QA Tindy run
  Approved by:maintainer timeout on BotMail
  
  Revision  ChangesPath
  1.2   +1 -0  ports/lang/nesasm/Makefile
  1.2   +7 -7  ports/lang/nesasm/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/devel/p5-Sub-Exporter Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 20:14:33 UTC

  FreeBSD ports repository

  Modified files:
devel/p5-Sub-Exporter Makefile distinfo 
  Log:
  Update to 0.979
  
  Revision  ChangesPath
  1.15  +3 -3  ports/devel/p5-Sub-Exporter/Makefile
  1.13  +3 -3  ports/devel/p5-Sub-Exporter/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/lang/ocaml-doc Makefile

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 20:18:12 UTC

  FreeBSD ports repository

  Modified files:
lang/ocaml-doc   Makefile 
  Log:
  IGNORE with -DNOPORTDOCS
  
  Prompted by:QA Tindy run
  
  Revision  ChangesPath
  1.8   +4 -0  ports/lang/ocaml-doc/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/devel/p5-Test-WWW-Mechanize-Catalyst Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 20:18:49 UTC

  FreeBSD ports repository

  Modified files:
devel/p5-Test-WWW-Mechanize-Catalyst Makefile distinfo 
  Log:
  Update to 0.42
  
  Revision  ChangesPath
  1.12  +2 -1  ports/devel/p5-Test-WWW-Mechanize-Catalyst/Makefile
  1.9   +3 -3  ports/devel/p5-Test-WWW-Mechanize-Catalyst/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: doc/fr_FR.ISO8859-1/books/handbook/security chapter.sgml

2008-06-29 Thread Marc Fonvieille
blackend2008-06-29 20:23:04 UTC

  FreeBSD doc repository

  Modified files:
fr_FR.ISO8859-1/books/handbook/security chapter.sgml 
  Log:
  Add 2 new translated sect1.
  
  Revision  ChangesPath
  1.17  +332 -37   doc/fr_FR.ISO8859-1/books/handbook/security/chapter.sgml
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/databases/p5-Search-Xapian Makefile distinfo

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 20:23:54 UTC

  FreeBSD ports repository

  Modified files:
databases/p5-Search-Xapian Makefile distinfo 
  Log:
  Update to 1.0.6.0
  
  Revision  ChangesPath
  1.15  +1 -1  ports/databases/p5-Search-Xapian/Makefile
  1.12  +3 -3  ports/databases/p5-Search-Xapian/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/games/sauerbraten/files patch-src_Makefile

2008-06-29 Thread Dmitry Marakasov
amdmi3  2008-06-29 20:34:11 UTC

  FreeBSD ports repository

  Modified files:
games/sauerbraten/files patch-src_Makefile 
  Log:
  - Commit forgotten patch
  
  Reported by:itetcu (QA Tindy)
  Approved by:miwi (mentor)
  
  Revision  ChangesPath
  1.7   +8 -8  ports/games/sauerbraten/files/patch-src_Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/mail/mailfmt Makefile ports/mail/mailfmt/files patch-Makefile

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 20:46:24 UTC

  FreeBSD ports repository

  Modified files:
mail/mailfmt Makefile 
mail/mailfmt/files   patch-Makefile 
  Log:
  - fix plist with -DNOPORTDOCS
  - bump PORTREVISION
  
  Prompted by:QA Tindy run
  
  Revision  ChangesPath
  1.2   +1 -0  ports/mail/mailfmt/Makefile
  1.2   +7 -4  ports/mail/mailfmt/files/patch-Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/mail/mailsync Makefile pkg-plist

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 20:55:08 UTC

  FreeBSD ports repository

  Modified files:
mail/mailsyncMakefile pkg-plist 
  Log:
  - respect NOPORTEXAMPLES and fix plist
  - use SF macro
  - bump PORTREVISION
  
  Prompted by:QA Tindy run
  
  Revision  ChangesPath
  1.14  +4 -3  ports/mail/mailsync/Makefile
  1.4   +2 -2  ports/mail/mailsync/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/lib/libc/stdio vfprintf.c vfwprintf.c

2008-06-29 Thread David Schultz
das 2008-06-29 21:01:27 UTC

  FreeBSD src repository

  Modified files:
lib/libc/stdio   vfprintf.c vfwprintf.c 
  Log:
  SVN rev 180102 on 2008-06-29 21:01:27Z by das
  
  Begin de-spaghettifying the code that handles positional arguments.
  In particular, encapsulate the state of the type table in a struct,
  and add inline functions to initialize, free, and manipulate that
  state. This replaces some ugly macros that made proper error handling
  impossible.
  
  While here, remove an unneeded test for NULL and a variable that is
  initialized (many times!) but never used. The compiler didn't catch
  these because of rampant use of the same variable to mean different
  things in different places.
  
  This commit should not cause any changes in functionality.
  
  Revision  ChangesPath
  1.79  +153 -94   src/lib/libc/stdio/vfprintf.c
  1.30  +153 -94   src/lib/libc/stdio/vfwprintf.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/tools/regression/lib/libc/stdio Makefile test-print-positional.c

2008-06-29 Thread David Schultz
das 2008-06-29 21:03:14 UTC

  FreeBSD src repository

  Modified files:
tools/regression/lib/libc/stdio Makefile 
  Added files:
tools/regression/lib/libc/stdio test-print-positional.c 
  Log:
  SVN rev 180103 on 2008-06-29 21:03:14Z by das
  
  Add some regression tests for printf() with positional arguments.
  The first test comes from OpenBSD, and the others are additions or
  adaptations.
  
  This is based on OpenBSD's
  src/regress/lib/libc/sprintf/sprintf_test.c, v1.3.
  I deliberately did not use v1.4 because it's bogus.
  
  Revision  ChangesPath
  1.5   +1 -1  src/tools/regression/lib/libc/stdio/Makefile
  1.1   +132 -0
src/tools/regression/lib/libc/stdio/test-print-positional.c (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/amd64/include pmap.h

2008-06-29 Thread Ruslan Ermilov
On Sun, Jun 29, 2008 at 06:35:00PM +, Alan Cox wrote:
> alc 2008-06-29 18:35:00 UTC
> 
>   FreeBSD src repository
> 
>   Modified files:
> sys/amd64/includepmap.h 
>   Log:
>   SVN rev 180100 on 2008-06-29 18:35:00Z by alc
>   
>   Increase the size of the kernel virtual address space to 6GB.  Until the
>   maximum size of the kmem map can be greater than 4GB, there is little point
>   in making the kernel virtual address space larger than 6GB.
>   
>   Tested by:  kris@
>   
>   Revision  ChangesPath
>   1.141 +4 -5  src/sys/amd64/include/pmap.h
> 
Can you please draw a new layout, similar to the one made by Peter?

http://lists.freebsd.org/pipermail/freebsd-amd64/2005-July/005578.html


Cheers,
-- 
Ruslan Ermilov
[EMAIL PROTECTED]
FreeBSD committer
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/mail/mew2 Makefile pkg-plist

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 21:20:30 UTC

  FreeBSD ports repository

  Modified files:
mail/mew2Makefile pkg-plist 
  Log:
  - fix plsit with -DONOPORTSDOCS
  - bump PORTREVISION
  
  Submitted by:   QA Tindy run
  
  Revision  ChangesPath
  1.17  +1 -1  ports/mail/mew2/Makefile
  1.7   +19 -19ports/mail/mew2/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/mail/mixminion Makefile

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 21:41:04 UTC

  FreeBSD ports repository

  Modified files:
mail/mixminion   Makefile 
  Log:
  - fix typo and thus plist for -DNOPORTDOCS
  - OPTIONify
  - bump PORTREVISION
  
  Prompted by:QA Tindy run
  
  Revision  ChangesPath
  1.7   +7 -2  ports/mail/mixminion/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/audio Makefile ports/audio/squeezecenter-dynamicplaylist Makefile distinfo pkg-descr pkg-plist

2008-06-29 Thread Tim Bishop
tdb 2008-06-29 21:43:35 UTC

  FreeBSD ports repository

  Modified files:
audioMakefile 
  Added files:
audio/squeezecenter-dynamicplaylist Makefile distinfo 
pkg-descr pkg-plist 
  Log:
  The Dynamic Playlist plugin is a SqueezeCenter plugin that makes it
  easier for other plugins to implement different types of playlists.
  It shows all supported playlists below the same menu and has the
  advantage that the user doesn't have to know which plugin implements a
  specific interface.
  
  WWW: http://wiki.slimdevices.com/index.php/Dynamic_Playlist_plugin
  
  Revision  ChangesPath
  1.969 +1 -0  ports/audio/Makefile
  1.1   +33 -0 ports/audio/squeezecenter-dynamicplaylist/Makefile (new)
  1.1   +3 -0  ports/audio/squeezecenter-dynamicplaylist/distinfo (new)
  1.1   +7 -0  ports/audio/squeezecenter-dynamicplaylist/pkg-descr (new)
  1.1   +66 -0 ports/audio/squeezecenter-dynamicplaylist/pkg-plist (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/amd64/include pmap.h

2008-06-29 Thread Alan Cox

Ruslan Ermilov wrote:


On Sun, Jun 29, 2008 at 06:35:00PM +, Alan Cox wrote:
 


alc 2008-06-29 18:35:00 UTC

 FreeBSD src repository

 Modified files:
   sys/amd64/includepmap.h 
 Log:

 SVN rev 180100 on 2008-06-29 18:35:00Z by alc
 
 Increase the size of the kernel virtual address space to 6GB.  Until the

 maximum size of the kmem map can be greater than 4GB, there is little point
 in making the kernel virtual address space larger than 6GB.
 
 Tested by:  kris@
 
 Revision  ChangesPath

 1.141 +4 -5  src/sys/amd64/include/pmap.h

   


Can you please draw a new layout, similar to the one made by Peter?

http://lists.freebsd.org/pipermail/freebsd-amd64/2005-July/005578.html

 



Change the following line

8000 -    2GB kva

to


fffe8000 -    6GB kva

Regards,
Alan



___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/mail/mew3 Makefile pkg-plist

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 21:48:22 UTC

  FreeBSD ports repository

  Modified files:
mail/mew3Makefile pkg-plist 
  Log:
  - fix plist with -DNOPORTDOCS
  - bump PORTREVISION
  
  Prompted by:QA Tindy run
  
  Revision  ChangesPath
  1.19  +1 -1  ports/mail/mew3/Makefile
  1.7   +23 -23ports/mail/mew3/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/lib/libc/stdio Makefile.inc printf-pos.c printflocal.h vfprintf.c vfwprintf.c

2008-06-29 Thread David Schultz
das 2008-06-29 21:52:40 UTC

  FreeBSD src repository

  Modified files:
lib/libc/stdio   Makefile.inc vfprintf.c vfwprintf.c 
  Added files:
lib/libc/stdio   printf-pos.c printflocal.h 
  Log:
  SVN rev 180104 on 2008-06-29 21:52:40Z by das
  
  Reduce the level of duplication between vfprintf() and vfwprintf()
  by moving the positional argument handling code to a new file,
  printf-pos.c, and moving common definitions to printflocal.h.
  No functional change intended.
  
  Revision  ChangesPath
  1.39  +2 -1  src/lib/libc/stdio/Makefile.inc
  1.1   +788 -0src/lib/libc/stdio/printf-pos.c (new)
  1.1   +94 -0 src/lib/libc/stdio/printflocal.h (new)
  1.80  +1 -486src/lib/libc/stdio/vfprintf.c
  1.31  +3 -488src/lib/libc/stdio/vfwprintf.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/print/fontforge Makefile distinfo

2008-06-29 Thread Pietro Cerutti
gahr2008-06-29 21:54:20 UTC

  FreeBSD ports repository

  Modified files:
print/fontforge  Makefile distinfo 
  Log:
  - Chase freetype2 update
  
  PR: 124983
  Submitted by:   Naram Qashat <[EMAIL PROTECTED]> (maintainer)
  
  Revision  ChangesPath
  1.96  +2 -1  ports/print/fontforge/Makefile
  1.74  +3 -3  ports/print/fontforge/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/deskutils/notecase Makefile distinfo ports/deskutils/notecase/files patch-Makefile

2008-06-29 Thread Pietro Cerutti
gahr2008-06-29 21:56:01 UTC

  FreeBSD ports repository

  Modified files:
deskutils/notecase   Makefile distinfo 
deskutils/notecase/files patch-Makefile 
  Log:
  - Update to 1.9.3
  
  PR: 124987
  Submitted by:   Ganael Laplanche <[EMAIL PROTECTED]> (maintainer)
  
  Revision  ChangesPath
  1.9   +1 -2  ports/deskutils/notecase/Makefile
  1.6   +3 -3  ports/deskutils/notecase/distinfo
  1.6   +4 -13 ports/deskutils/notecase/files/patch-Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/audio Makefile ports/audio/squeezecenter-lazysearch Makefile distinfo pkg-descr pkg-plist

2008-06-29 Thread Tim Bishop
tdb 2008-06-29 21:56:21 UTC

  FreeBSD ports repository

  Modified files:
audioMakefile 
  Added files:
audio/squeezecenter-lazysearch Makefile distinfo pkg-descr 
   pkg-plist 
  Log:
  This is a SqueezeCenter plugin to add lazy search capabilities. Lazy
  searching allows for much faster entry of search text by allowing you
  to forget about multi-tapping and instead just press each of the
  remote control buttons once for each of the letters in the text,
  whatever position the letter appears in above the button.
  
  WWW: http://hickinbottom.demon.co.uk/lazysearch/
  
  Revision  ChangesPath
  1.970 +1 -0  ports/audio/Makefile
  1.1   +33 -0 ports/audio/squeezecenter-lazysearch/Makefile (new)
  1.1   +3 -0  ports/audio/squeezecenter-lazysearch/distinfo (new)
  1.1   +7 -0  ports/audio/squeezecenter-lazysearch/pkg-descr (new)
  1.1   +16 -0 ports/audio/squeezecenter-lazysearch/pkg-plist (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/amd64/include pmap.h

2008-06-29 Thread Ed Schouten
Alan,

* Ruslan Ermilov <[EMAIL PROTECTED]> wrote:
> Can you please draw a new layout, similar to the one made by Peter?
> 
> http://lists.freebsd.org/pipermail/freebsd-amd64/2005-July/005578.html

I'm not familiar with the design of amd64 or its page tables, but is
there some kind of overhead when all 512 GB's would be allocated as kva?

Yours,
-- 
 Ed Schouten <[EMAIL PROTECTED]>
 WWW: http://80386.nl/


pgp6PYX2QBOJV.pgp
Description: PGP signature


cvs commit: ports/audio Makefile ports/audio/squeezecenter-superdatetime Makefile distinfo pkg-descr pkg-plist

2008-06-29 Thread Tim Bishop
tdb 2008-06-29 21:58:55 UTC

  FreeBSD ports repository

  Modified files:
audioMakefile 
  Added files:
audio/squeezecenter-superdatetime Makefile distinfo pkg-descr 
  pkg-plist 
  Log:
  This is a SqueezeCenter plugin screensaver datetime replacement.
  Graphically displays current weather conditions and forecasts. Will
  also optionally display stock quotes and upcoming/active game
  information for MLB, NBA, NHL, NFL, and college football and
  basketball teams at user-configurable intervals.
  
  WWW: http://www.gregbrown.net/squeeze/superdatetime.htm
  
  Revision  ChangesPath
  1.971 +1 -0  ports/audio/Makefile
  1.1   +32 -0 ports/audio/squeezecenter-superdatetime/Makefile (new)
  1.1   +3 -0  ports/audio/squeezecenter-superdatetime/distinfo (new)
  1.1   +7 -0  ports/audio/squeezecenter-superdatetime/pkg-descr (new)
  1.1   +70 -0 ports/audio/squeezecenter-superdatetime/pkg-plist (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/audio Makefile ports/audio/squeezecenter-trackstat Makefile distinfo pkg-descr pkg-plist

2008-06-29 Thread Tim Bishop
tdb 2008-06-29 21:59:28 UTC

  FreeBSD ports repository

  Modified files:
audioMakefile 
  Added files:
audio/squeezecenter-trackstat Makefile distinfo pkg-descr 
  pkg-plist 
  Log:
  This is a statistic plugin for SqueezeCenter. SqueezeCenter normally
  stores statistics about the last time a track was played, when a
  specific track was added to the library and how many times a track has
  been played. The problem is that all of these statistics are cleared
  every time you perform a full rescan of SqueezeCenter.
  
  The TrackStat plugin solves this problem by making sure that the
  statistics survive a rescan. Besides this TrackStat also extends the
  statistics a bit, one example is that it doesn't count a track as
  played just because you listen to the first 2 seconds of it, you will
  have to play a certain amount of the track until it is played.
  TrackStat also makes it possible to put a rating on all your tracks by
  holding a number between 1-5 down on the now playing screen.
  
  The other main functionality the TrackStat plugins provides is various
  ways to browse your music based on the statistic information. The
  standard SqueezeCenter only makes it possible to show most played
  tracks. The TrackStat plugin makes it possible to show the statistics
  in a lot more ways. The purpose is simply to give you another way to
  select which music you like to play, for example like:
  
  * Find tracks you haven't played for a long time
  * Find tracks you have recently added to the library
  * Find top rated tracks
  * Find least played tracks
  * And a lot more...
  
  WWW: http://wiki.slimdevices.com/index.php/TrackStat_plugin
  
  Revision  ChangesPath
  1.972 +1 -0  ports/audio/Makefile
  1.1   +33 -0 ports/audio/squeezecenter-trackstat/Makefile (new)
  1.1   +3 -0  ports/audio/squeezecenter-trackstat/distinfo (new)
  1.1   +28 -0 ports/audio/squeezecenter-trackstat/pkg-descr (new)
  1.1   +181 -0ports/audio/squeezecenter-trackstat/pkg-plist (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/audio Makefile ports/audio/squeezecenter-transitionupdater Makefile distinfo pkg-descr pkg-plist

2008-06-29 Thread Tim Bishop
tdb 2008-06-29 21:59:50 UTC

  FreeBSD ports repository

  Modified files:
audioMakefile 
  Added files:
audio/squeezecenter-transitionupdater Makefile distinfo 
  pkg-descr pkg-plist 
  Log:
  This plugin looks at the songs before and after the current song in
  the playlist and determines whether an album is playing or if random
  tracks are playing. After that determination, it sets the player's
  transition behaviour (crossfade, fade, etc) appropriately. The
  transition behaviour for the album/random/default cases can be changed
  by modifying the values of the four global variables at the top of
  Transitions.pm. There is also a user configurable section for
  excluding specific genres from being processed for album/random
  detection. In these cases, the 'default' transition preference will be
  used (not in v1.5).
  
  WWW: http://www.sutula.us/james/slimserver/
  
  Revision  ChangesPath
  1.973 +1 -0  ports/audio/Makefile
  1.1   +32 -0 ports/audio/squeezecenter-transitionupdater/Makefile 
(new)
  1.1   +3 -0  ports/audio/squeezecenter-transitionupdater/distinfo 
(new)
  1.1   +12 -0 ports/audio/squeezecenter-transitionupdater/pkg-descr 
(new)
  1.1   +13 -0 ports/audio/squeezecenter-transitionupdater/pkg-plist 
(new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/audio/kirocker Makefile

2008-06-29 Thread Pietro Cerutti
gahr2008-06-29 22:00:22 UTC

  FreeBSD ports repository

  Modified files:
audio/kirocker   Makefile 
  Log:
  - Fix build
  
  PR: 124995
  Submitted by:   Jason E. Hale <[EMAIL PROTECTED]> (maintainer)
  
  Revision  ChangesPath
  1.2   +1 -1  ports/audio/kirocker/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/lib/libc/stdio printf-pos.c

2008-06-29 Thread David Schultz
das 2008-06-29 22:04:25 UTC

  FreeBSD src repository

  Modified files:
lib/libc/stdio   printf-pos.c 
  Log:
  SVN rev 180105 on 2008-06-29 22:04:25Z by das
  
  Factor out the code that builds the argument table. We don't need separate
  normal and wide character versions of it.
  
  No functional change.
  
  Revision  ChangesPath
  1.2   +47 -130   src/lib/libc/stdio/printf-pos.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/audio Makefile ports/audio/squeezecenter-sqlplaylist Makefile distinfo pkg-descr pkg-plist

2008-06-29 Thread Tim Bishop
tdb 2008-06-29 22:05:56 UTC

  FreeBSD ports repository

  Modified files:
audioMakefile 
  Added files:
audio/squeezecenter-sqlplaylist Makefile distinfo pkg-descr 
pkg-plist 
  Log:
  This plugin for SqueezeCenter makes it possible to create smart
  playlists. Although the standard SqueezeCenter doesn't support smart
  playlists by itself, together with iTunes and the standard
  SqueezeCenter iTunes integration, it is possible to use smart
  playlists defined in iTunes. The problem though is that the integrated
  iTunes smart playlists will not be recalculated until the next time
  you perform a rescan in SqueezeCenter. The SQL Playlist plugin takes
  care of this problem and implements native smart playlist in
  SqueezeCenter without any need to use iTunes. The smart playlists
  implemented in SQL Playlist will also be automatically re-calculated
  after each track played so they will be based on the latest statistic
  information.
  
  A smart playlist in SQL Playlist are continous and will run forever in
  the same way as the standard Random Mix plugin, you can optionally
  also choose that a smart playlist shouldn't repeat already played
  tracks and in that case the music will stop when all songs matching
  the playlist has been played.
  
  WWW: http://wiki.slimdevices.com/index.php/SQL_Playlist_plugin
  
  Revision  ChangesPath
  1.974 +1 -0  ports/audio/Makefile
  1.1   +34 -0 ports/audio/squeezecenter-sqlplaylist/Makefile (new)
  1.1   +3 -0  ports/audio/squeezecenter-sqlplaylist/distinfo (new)
  1.1   +20 -0 ports/audio/squeezecenter-sqlplaylist/pkg-descr (new)
  1.1   +75 -0 ports/audio/squeezecenter-sqlplaylist/pkg-plist (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/mail/silkymail Makefile

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 22:10:51 UTC

  FreeBSD ports repository

  Modified files:
mail/silkymail   Makefile 
  Log:
  Doesn't fetch; WWW domain is "parked"
  
  Prompted by:QA Tindy run
  
  Revision  ChangesPath
  1.4   +2 -0  ports/mail/silkymail/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/devel/p5-Test-WWW-Mechanize-Catalyst Makefile

2008-06-29 Thread Lars Balker Rasmussen
lbr 2008-06-29 22:11:44 UTC

  FreeBSD ports repository

  Modified files:
devel/p5-Test-WWW-Mechanize-Catalyst Makefile 
  Log:
  fix typo (thanks to Colin)
  
  Revision  ChangesPath
  1.13  +1 -1  ports/devel/p5-Test-WWW-Mechanize-Catalyst/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/mail/smtpd Makefile pkg-plist

2008-06-29 Thread Ion-Mihai Tetcu
itetcu  2008-06-29 22:19:20 UTC

  FreeBSD ports repository

  Modified files:
mail/smtpd   Makefile pkg-plist 
  Log:
  - fix plist with -DNOPORTDOCS
  - bump PORTREVISION
  
  Prompted by:QA Tindy run
  
  Revision  ChangesPath
  1.22  +1 -1  ports/mail/smtpd/Makefile
  1.5   +2 -2  ports/mail/smtpd/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/lib/libc/stdio printf-pos.c printflocal.h vfprintf.c vfwprintf.c

2008-06-29 Thread David Schultz
das 2008-06-29 22:54:26 UTC

  FreeBSD src repository

  Modified files:
lib/libc/stdio   printf-pos.c printflocal.h vfprintf.c 
 vfwprintf.c 
  Log:
  SVN rev 180106 on 2008-06-29 22:54:26Z by das
  
  Correctly handle malloc() failure.  While here, reduce the code size a
  bit by removing some calls to the inline function addtype().
  
  Revision  ChangesPath
  1.3   +142 -95   src/lib/libc/stdio/printf-pos.c
  1.2   +2 -2  src/lib/libc/stdio/printflocal.h
  1.81  +9 -3  src/lib/libc/stdio/vfprintf.c
  1.32  +9 -3  src/lib/libc/stdio/vfwprintf.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/devel/py-gobject Makefile ports/devel/py-gobject/files patch-gobject_gobjectmodule.c

2008-06-29 Thread Joe Marcus Clarke
marcus  2008-06-29 23:23:32 UTC

  FreeBSD ports repository

  Modified files:
devel/py-gobject Makefile 
  Added files:
devel/py-gobject/files patch-gobject_gobjectmodule.c 
  Log:
  Fix an argument size problem which led to a crash on 64-bit OSes.
  
  Reported by:Ashish Shukla आशीष शुक्ल <[EMAIL PROTECTED]>
  Obtained from:  http://bugzilla.gnome.org/show_bug.cgi?id=540696
  
  Revision  ChangesPath
  1.10  +1 -1  ports/devel/py-gobject/Makefile
  1.1   +11 -0 
ports/devel/py-gobject/files/patch-gobject_gobjectmodule.c (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: ports/emulators/wine Makefile

2008-06-29 Thread Gerald Pfeifer
On Mon, 16 Jun 2008, Aryeh M. Friedman wrote:
> http://xtruder.homelinux.net/%7Eambro/cursor-patches-0.9.58.patch
> 
> required to make many EA games work (I think it is needed for other 
> stuff also)... officially it is for rc1 but rc4 still needs it and it 
> works fine there... I don't think there are any plans to put it in the 
> actual 1.0 release due to winehq having more pressing issues.

I looked into this, and I do not have any plans of adding this to the
emulators/wine port.  Just days ago Wine 1.1 was released which indicates
how active this project still is, and I have got patches of mine accepted
and also seen FreeBSD-specific patches by our GSoC student accepted in
larger numbers this month, so adding a patch which has not made it into
the three for more than three months does not seem appropriate.

Gerald
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/math/gcalctool Makefile distinfo

2008-06-29 Thread Joe Marcus Clarke
marcus  2008-06-29 23:31:43 UTC

  FreeBSD ports repository

  Modified files:
math/gcalctool   Makefile distinfo 
  Log:
  Update to 5.22.3.
  
  Revision  ChangesPath
  1.71  +1 -2  ports/math/gcalctool/Makefile
  1.48  +3 -3  ports/math/gcalctool/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/multimedia/cheese Makefile distinfo pkg-plist

2008-06-29 Thread Joe Marcus Clarke
marcus  2008-06-29 23:42:48 UTC

  FreeBSD ports repository

  Modified files:
multimedia/cheeseMakefile distinfo pkg-plist 
  Log:
  Update to 2.22.3.
  
  Revision  ChangesPath
  1.6   +1 -2  ports/multimedia/cheese/Makefile
  1.4   +3 -3  ports/multimedia/cheese/distinfo
  1.3   +1 -0  ports/multimedia/cheese/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/lib/libc/stdio printf-pos.c

2008-06-29 Thread David Schultz
das 2008-06-29 23:46:06 UTC

  FreeBSD src repository

  Modified files:
lib/libc/stdio   printf-pos.c 
  Log:
  SVN rev 180107 on 2008-06-29 23:46:06Z by das
  
  Fix a bogon in the previous commit and add some missing error checks.
  
  Revision  ChangesPath
  1.4   +12 -9 src/lib/libc/stdio/printf-pos.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/x11 Makefile ports/x11/hotwire-shell Makefile distinfo pkg-descr pkg-plist ports/x11/hotwire-shell/files patch-hotwire__ui_renderers_file.py patch-setup.py

2008-06-29 Thread David Thiel
lx  2008-06-30 00:25:09 UTC

  FreeBSD ports repository

  Modified files:
x11  Makefile 
  Added files:
x11/hotwire-shellMakefile distinfo pkg-descr pkg-plist 
x11/hotwire-shell/files patch-hotwire__ui_renderers_file.py 
patch-setup.py 
  Log:
  Adding hotwire-shell, a python-based "hypershell".
  
  PR: ports/125105
  Submitted by:   [EMAIL PROTECTED]
  Reviewed by:lx
  
  Revision  ChangesPath
  1.684 +1 -0  ports/x11/Makefile
  1.1   +33 -0 ports/x11/hotwire-shell/Makefile (new)
  1.1   +3 -0  ports/x11/hotwire-shell/distinfo (new)
  1.1   +17 -0 
ports/x11/hotwire-shell/files/patch-hotwire__ui_renderers_file.py (new)
  1.1   +14 -0 ports/x11/hotwire-shell/files/patch-setup.py (new)
  1.1   +6 -0  ports/x11/hotwire-shell/pkg-descr (new)
  1.1   +447 -0ports/x11/hotwire-shell/pkg-plist (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/x11/hotwire-shell pkg-plist

2008-06-29 Thread David Thiel
lx  2008-06-30 00:43:45 UTC

  FreeBSD ports repository

  Modified files:
x11/hotwire-shellpkg-plist 
  Log:
  These should actually be @dirrmtry.
  
  PR: ports/125105
  
  Revision  ChangesPath
  1.2   +5 -5  ports/x11/hotwire-shell/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/mail/horde-ingo Makefile distinfo pkg-plist ports/mail/horde-ingo/files patch-lib_Script_procmail.php

2008-06-29 Thread Beech Rintoul
beech   2008-06-30 01:27:55 UTC

  FreeBSD ports repository

  Modified files:
mail/horde-ingo  Makefile distinfo pkg-plist 
mail/horde-ingo/files patch-lib_Script_procmail.php 
  Log:
  - Update to 1.2 (release)
  - Bump PORTEPOCH
  
  Revision  ChangesPath
  1.30  +2 -2  ports/mail/horde-ingo/Makefile
  1.13  +3 -3  ports/mail/horde-ingo/distinfo
  1.3   +7 -16 ports/mail/horde-ingo/files/patch-lib_Script_procmail.php
  1.16  +10 -1 ports/mail/horde-ingo/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: ports/mail/horde-imp Makefile distinfo pkg-plist

2008-06-29 Thread Beech Rintoul
beech   2008-06-30 01:59:01 UTC

  FreeBSD ports repository

  Modified files:
mail/horde-imp   Makefile distinfo pkg-plist 
  Log:
  - Upadte to 4.2 (release)
  - Bump PORTEPOCH
  
  Revision  ChangesPath
  1.57  +3 -3  ports/mail/horde-imp/Makefile
  1.21  +3 -3  ports/mail/horde-imp/distinfo
  1.20  +11 -30ports/mail/horde-imp/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


  1   2   >