On Mon, Nov 14, 2005 at 07:29:56PM +, John Baldwin wrote:
> Log:
> MFC: Sync this driver up with HEAD including bus-dma support and some other
> cleanups such as removing some more old cruft and using kernel functions
> like m_defrag() and m_devget() rather than homerolling our own.
Yo
bms 2005-12-12 20:54:53 UTC
FreeBSD ports repository (src committer)
Modified files:
devel/picasm Makefile pkg-plist
Log:
Include device definitions in installation.
Use DATADIR, DOCSDIR and EXAMPLESDIR macros in plist.
Submitted by: Christopher Hall
PR:
bms 2005-12-12 20:55:27 UTC
FreeBSD ports repository (src committer)
Modified files:
devel/picasm Makefile
Log:
This port now needs a new maintainer.
Revision ChangesPath
1.10 +1 -1 ports/devel/picasm/Makefile
bms 2005-12-12 21:11:06 UTC
FreeBSD ports repository (src committer)
Modified files:
net-mgmt/annextools Makefile
Log:
Fix MASTER_SITES.
Revision ChangesPath
1.5 +1 -5 ports/net-mgmt/annextools/Makefile
___
c
bms 2005-12-12 21:11:23 UTC
FreeBSD ports repository (src committer)
Modified files:
net-mgmt/annextools Makefile
Log:
This port needs a new maintainer.
Revision ChangesPath
1.6 +1 -1 ports/net-mgmt/annextools/Makefile
_
bms 2005-12-12 21:18:24 UTC
FreeBSD ports repository (src committer)
Modified files:
net/wmwave Makefile distinfo
Log:
Fix MASTER_SITES.
Revision ChangesPath
1.8 +2 -1 ports/net/wmwave/Makefile
1.3 +3 -2 ports/net/wmwave/distinfo
bms 2005-12-12 21:18:44 UTC
FreeBSD ports repository (src committer)
Modified files:
net/wmwave Makefile
Log:
This port needs a new maintainer.
Revision ChangesPath
1.9 +1 -1 ports/net/wmwave/Makefile
__
bms 2005-12-12 21:47:07 UTC
FreeBSD ports repository (src committer)
Modified files:
devel/p4vMakefile distinfo.i386 pkg-message
pkg-plist.i386
Log:
Update to r05.1.
Submitted by: Henrik Andersen
Revision ChangesPath
1.
bms 2005-12-12 21:53:40 UTC
FreeBSD ports repository (src committer)
Modified files:
audio/gaim-festival Makefile
devel/gdbmodsMakefile
devel/cvstracMakefile
devel/ifd-test Makefile
graphics/s3switchMakefile
devel/p5-PCSC-Card
bms 2005-12-12 22:03:46 UTC
FreeBSD ports repository (src committer)
Modified files:
net/ntraceroute Makefile distinfo
Log:
Update to 6.4.0. Portlint cleanups.
Revision ChangesPath
1.2 +5 -3 ports/net/ntraceroute/Makefile
1.2 +3 -2 po
bms 2005-12-13 00:13:51 UTC
FreeBSD ports repository (src committer)
Modified files:
net/libpcap Makefile distinfo
net/tcpdump Makefile distinfo
Removed files:
net/tcpdump/filesextra-patch-extract.h
extra-patch-ieee802_11
bms 2006-01-25 07:00:31 UTC
FreeBSD ports repository (src committer)
Modified files:
net/tcpdump Makefile
Log:
Fix tcpdump dependency on libpcap.
LIB_DEPENDS should only be used if shared libraries were built by the
libpcap port. Currently only static librarie
On Fri, Mar 17, 2006 at 08:17:43PM +, Gleb Smirnoff wrote:
> MFC:
> - Introduce ifmedia_baudrate(), which returns correct baudrate of the
> given media status. [1]
> - Utilize ifmedia_baudrate() in miibus_statchg() to update
> ifp->if_baudrate.
Thanks. If I ever get round to c
bms 2006-05-14 14:11:54 UTC
FreeBSD src repository
Modified files:
tools/regression/netinet/ipsockopt ipsockopt.c
Log:
Add multicast group join/leave functionality to IPv4 regression
test suite.
Revision ChangesPath
1.5 +68 -10src/tools/regression/neti
bms 2006-05-14 14:13:30 UTC
FreeBSD src repository
Modified files:
share/man/man4 ip.4
Log:
Don't quote IP_MAX_MEMBERSHIPS as 20 any more.
Revision ChangesPath
1.47 +2 -3 src/share/man/man4/ip.4
___
cvs-a
bms 2006-05-14 14:22:49 UTC
FreeBSD src repository
Modified files:
sys/netinet in.h ip_output.c ip_var.h
Log:
Fix a long-standing limitation in IPv4 multicast group membership.
By making the imo_membership array a dynamically allocated vector,
this minimizes d
On Sun, May 14, 2006 at 02:22:49PM +, Bruce M Simpson wrote:
> By making the imo_membership array a dynamically allocated vector,
> this minimizes disruption to existing IPv4 multicast code. This
> change breaks the ABI for the kernel module ip_mroute.ko, and may
> cause a
[Cc: to Pavlin]
On Sun, May 14, 2006 at 02:22:49PM +, Bruce M Simpson wrote:
> By making the imo_membership array a dynamically allocated vector,
> this minimizes disruption to existing IPv4 multicast code. This
> change breaks the ABI for the kernel module ip_mroute.ko
Something like this:
%%%
--- ip_mroute.c.origMon May 15 09:52:41 2006
+++ ip_mroute.c Mon May 15 09:54:01 2006
@@ -2115,6 +2115,7 @@
ip_output(m, NULL, &vifp->v_route, IP_FORWARDING, NULL, NULL);
else {
struct ip_moptions imo;
+ struct in_multi *imm[2];
int e
bms 2006-05-18 19:51:08 UTC
FreeBSD src repository
Modified files:
sys/netinet ip_mroute.c
Log:
Initialize the new members of struct ip_moptions as
a defensive programming measure.
Note that whilst these members are not used by the ip_output()
path, we are p
On Sat, May 20, 2006 at 02:27:22PM +, Alexander Leidinger wrote:
> Change kdump to print more useful information, i.e. it changes from
...
I can't believe how seriously cool this is. Thank you!
BMS
___
cvs-all@freebsd.org mailing list
http://lists
bms 2006-08-25 12:47:58 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
usr.bin/logger logger.1 logger.c
Log:
MFC: Add a new command-line option, -P, which allows the user to specify
an arbitrary port to which syslog messages are to be sent.
bms 2006-08-25 12:55:50 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sbin/reboot reboot.c
Log:
MFC: Block a variety of signals which may affect reboot(8), before killing
init(8), to avoid losing a race to them and dying before being able
t
bms 2006-08-25 13:01:33 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/dev/usb uscanner.c
Log:
MFC: Add identifier for the Epson CX3650 all-in-one scanner function.
This enables the scanner function on these devices to be detected
and pr
Julian Elischer wrote:
As I mentioned before, I am slightly uncomfortable with the
implementation of this
change as it puts protocol specific items into the protocol
independent mbuf header.
The fact that 99.99% of network traffic coming in and out of a
machine uses this protocol
at the the m
bms 2006-09-22 12:16:47 UTC
FreeBSD ports repository (src committer)
Modified files:
net Makefile
Added files:
net/xorp Makefile distinfo pkg-descr pkg-plist
net/xorp/files xorp.rc.sample
Log:
Add a port of the eXtensible Open Ro
bms 2006-09-22 12:17:02 UTC
FreeBSD ports repository (src committer)
Modified files:
.modules
Log:
xorp --> ports/net/xorp
Revision ChangesPath
1.16252 +1 -0 CVSROOT/modules
___
cvs-all@freeb
bms 2006-09-22 15:34:17 UTC
FreeBSD src repository
Modified files:
sys/kern uipc_socket.c
Log:
Fix a case where socket I/O atomicity is violated due to not dropping
the entire record when a non-data mbuf is removed in the soreceive() path.
This only triggers a
bms 2006-09-23 09:40:02 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_4)
sys/net bridge.h
Log:
Add a sysctl net.link.ether.bridge.hwassmask which lets administrators
mask hardware checksums on bridge interface members.
PR: k
bms 2006-09-23 16:26:31 UTC
FreeBSD src repository
Modified files:
sys/netinet tcp_input.c
Log:
Always set the IP version in the TCP input path, to preserve
the header field for possible later IPSEC SPD lookup, even
when the kernel is built without 'options INET6
bms 2006-09-23 19:27:40 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_4)
sys/net bridge.c
Log:
Add a sysctl net.link.ether.bridge.hwassmask which lets administrators
mask hardware checksums on bridge interface members.
PR: k
bms 2006-09-23 21:12:23 UTC
FreeBSD src repository
Modified files:
usr.sbin/tcpdump/tcpslice gwtm2secs.c search.c tcpslice.c
Log:
Fix our ancient tcpslice for >2GB limits.
PR: bin/13691
MFC after: 1 week
Submitted by: Bruce A. Mah
Revision Ch
bms 2006-09-24 09:16:27 UTC
FreeBSD src repository
Modified files:
usr.sbin/tcpdump Makefile
Log:
Disconnect tcpslice from build.
Reviewed by:sam, bmah
Revision ChangesPath
1.3 +1 -1 src/usr.sbin/tcpdump/Makefile
___
bms 2006-09-24 09:18:37 UTC
FreeBSD src repository
Removed files:
usr.sbin/tcpdump/tcpslice Makefile gwtm2secs.c search.c
tcpslice.1 tcpslice.c tcpslice.h
util.c
Log:
De-orbit burn tcpslice.
Reviewed by:sa
bms 2006-09-24 19:21:41 UTC
FreeBSD ports repository (src committer)
Modified files:
net/xorp Makefile
Log:
Fix build; including --without-snmp confuses the top-level configure
script.
Revision ChangesPath
1.2 +0 -2 ports/net/xorp/Makefile
bms 2006-09-25 10:11:16 UTC
FreeBSD src repository
Modified files:
sys/netinet in_var.h ip_output.c
Log:
Account for output IP datagrams on the ifaddr where they originated from,
*not* the first ifaddr on the ifp. This is similar to what NetBSD does.
PR:
bms 2006-09-25 10:12:07 UTC
FreeBSD src repository
Modified files:
sys/netinet ip_output.c ip_var.h
Log:
Forced commit to note this change should be MFCed.
MFC after: 1 week
Revision ChangesPath
1.265 +0 -0 src/sys/netinet/ip_output.c
bms 2006-09-25 11:48:08 UTC
FreeBSD src repository
Modified files:
sys/netinet in_var.h
Log:
Spleling
Submitted by: pjd
Revision ChangesPath
1.58 +1 -1 src/sys/netinet/in_var.h
___
cvs-all@freeb
bms 2006-09-25 11:53:55 UTC
FreeBSD src repository
Modified files:
sys/netinet ip_carp.c
Log:
Fix an incompatibility between CARP and IPv4 multicast routing, whereby
the VRRPv2 advertisements will originate from the wrong source address.
This only affects kernels
bms 2006-09-25 13:02:00 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/netinet ip_carp.c
Log:
MFC: Fix an incompatibility between CARP and IPv4 multicast routing, whereby
advertisements originate from the wrong source address. This only af
bms 2006-09-25 13:02:58 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/netinet in_var.h ip_output.c
Log:
MFC: Account for output IP datagrams on the ifaddr where they will
be sent from, not the first ifaddr on the ifp.
PR:
bms 2006-09-25 18:20:56 UTC
FreeBSD src repository
Modified files:
sbin/ifconfigaf_inet6.c
Log:
Fix a typo in af_inet6.c such that IPv6 addresses may be deleted
from interfaces.
PR: bin/102701
Submitted by: George Mitchell
MFC after: 3 da
bms 2006-09-26 18:28:38 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/netinet ip_output.c
Log:
Back out rev 1.242.2.13 as it introduces a potentially expensive hash lookup
to the ip output path. A better way needs to be found to resolve t
bms 2006-09-28 10:04:08 UTC
FreeBSD src repository
Modified files:
sys/netinet in.c in_var.h
Log:
The IPv4 code should clean up multicast group state when an interface
goes away. Without this change, it leaks in_multi (and often ether_multi
state) if many clonabl
bms 2006-09-28 12:21:09 UTC
FreeBSD src repository
Modified files:
sys/netinet ip_mroute.c
Log:
Fix the IPv4 multicast routing detach path. On interface detach whilst
the MROUTER is running, the system would panic as described in the PR.
The fix in the PR is a
bms 2006-09-28 13:00:51 UTC
FreeBSD src repository
Modified files:
.UPDATING
Log:
Note the removal of tcpslice
Revision ChangesPath
1.457 +3 -0 src/UPDATING
___
cvs-all@freebsd.org mailing li
bms 2006-09-28 21:29:10 UTC
FreeBSD ports repository (src committer)
Modified files:
net Makefile
Added files:
net/mrouted Makefile distinfo pkg-descr
net/mrouted/filesmrouted.in patch-Makefile patch-main.c
Log:
Add new port of mroute
bms 2006-09-28 21:29:29 UTC
FreeBSD ports repository (src committer)
Modified files:
.modules
Log:
mrouted --> ports/net/mrouted
Revision ChangesPath
1.16298 +1 -0 CVSROOT/modules
___
cvs-all
bms 2006-09-28 22:04:54 UTC
FreeBSD ports repository (src committer)
Modified files:
net-mgmt Makefile
Added files:
net-mgmt/mtrace Makefile distinfo pkg-descr
net-mgmt/mtrace/files patch-Makefile patch-mtrace.c
Log:
Add new port of mtrace, multic
bms 2006-09-28 22:05:32 UTC
FreeBSD ports repository (src committer)
Modified files:
.modules
Log:
mtrace --> ports/net-mgmt/mtrace
Revision ChangesPath
1.16299 +1 -0 CVSROOT/modules
___
cvs-
SUZUKI Shinsuke wrote:
suz 2006-09-29 04:24:50 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/net if_loop.c
Log:
MFC Rev 1.111
(fixed a bug that local IPv6 traffic (to an address configured on an
interface other than lo0) does
bms 2006-09-29 10:39:23 UTC
FreeBSD src repository
Modified files:
.ObsoleteFiles.inc UPDATING
usr.sbin Makefile
Log:
Remove mrouted and its utilities from the base system.
They may now be obtained from ports.
Discussed with: fenner
bms 2006-09-29 10:40:53 UTC
FreeBSD src repository
Removed files:
usr.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE
VERSION callout.c cfparse.y config.c
defs.h dvmrp.h icmp.c igmp.c igmpv2.h
ine
bms 2006-09-29 11:14:06 UTC
FreeBSD ports repository (src committer)
Modified files:
net Makefile
Added files:
net/pimddMakefile distinfo pkg-descr pkg-plist
net/pimdd/files patch-Makefile patch-config.c
patch
bms 2006-09-29 11:14:15 UTC
FreeBSD ports repository (src committer)
Modified files:
.modules
Log:
pimdd --> ports/net/pimdd
Revision ChangesPath
1.16305 +1 -0 CVSROOT/modules
___
cvs-all@fre
Ruslan Ermilov wrote:
...
Not all of them should be tweaked, but certainly most of them.
Don't underestimate the power of grep(1)!
I'm on it. mrouted may now be obtained from ports/net/mrouted.
All the best,
BMS
___
cvs-all@freebsd.org mailing li
bms 2006-09-29 15:45:11 UTC
FreeBSD src repository
Modified files:
etc/defaults rc.conf
etc/rc.d mrouted
share/man/man4 ip6.4
share/man/man4/man4.i386 wl.4
share/man/man5 rc.conf.5
sys/netinet ip_mroute.c ip_mroute.
Gleb Smirnoff wrote:
Afaik, /etc/rc.d/mrouted must be deleted and the port should install
their own /usr/local/etc/rc.d/mrouted.
This would be inconsistent with mroute6d, therefore I have left it there
for the time being.
Regards,
BMS
___
cvs-all@
bms 2006-09-29 16:16:41 UTC
FreeBSD src repository
Modified files:
usr.bin/netstat mroute6.c mroute.c
sys/netinet ip_mroute.h
sys/netinet6 ip6_mroute.h
share/man/man4 ip6.4
share/man/man4/man4.i386 wl.4
Log:
Nits.
Submitted
This is good.
The number of times nd6_attach has inadvertently caused a panic in a
driver I've been in the process of bringing up (and forgetting to turn
NDP off during development) has been enough to make me swear quite a bit.
Thanks!
BMS
___
cvs-a
bms 2006-10-02 14:36:25 UTC
FreeBSD src repository
Modified files:
.modules
Log:
Remove mrouted from modules.
Submitted by: danger
Revision ChangesPath
1.6869+0 -1 CVSROOT/modules
___
bms 2006-10-03 10:19:43 UTC
FreeBSD src repository
Modified files:
.modules
Log:
Revert the previous delta. The CVSROOT/modules administrative file is not
branched and must contain entries applicable to all branches.
Submitted by: bde
Revisio
bms 2006-10-04 21:52:49 UTC
FreeBSD ports repository (src committer)
Modified files:
net/ntraceroute Makefile
Added files:
net/ntraceroute/files patch-traceroute_640.c
Log:
Fix ntraceroute on 64-bit systems.
PR: ports/103988
Submitted by: fenn
bms 2006-10-05 17:01:12 UTC
FreeBSD ports repository (src committer)
Modified files:
net/xorp Makefile pkg-plist
Added files:
net/xorp pkg-deinstall pkg-install
net/xorp/files patch-configure patch-configure-in
pa
bms 2006-10-07 10:43:41 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/netinet in.c in_var.h
Log:
MFC: The IPv4 code should clean up multicast group state when an interface
goes away. Without this change, it leaks in_multi (and often ether
bms 2006-10-07 10:45:05 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/netinet ip_mroute.c
Log:
MFC: Fix the IPv4 multicast routing detach path. On interface detach whilst
the MROUTER is running, the system would panic as described in the
bms 2006-10-08 16:37:58 UTC
FreeBSD ports repository (src committer)
Modified files:
net/libpcap Makefile distinfo
Log:
Update to 0.9.5.
PR: 104147
Submitted by: chinsan
Revision ChangesPath
1.9 +2 -1 ports/net/libpcap/Make
bms 2006-10-08 16:38:18 UTC
FreeBSD ports repository (src committer)
Modified files:
net/tcpdump Makefile distinfo
Log:
Update to 3.9.5.
PR: 104148
Submitted by: chinsan
Revision ChangesPath
1.20 +1 -1 ports/net/tcpdump/Make
John-Mark Gurney wrote:
jmg 2006-10-09 16:15:56 UTC
FreeBSD src repository
Modified files:
sys/dev/pci pci.c pci_if.m pci_private.h pcivar.h
sys/dev/sk if_sk.c if_skreg.h
Log:
provide routines to access VPD data at the PCI layer...
Excellent.
B
Gleb Smirnoff wrote:
glebius 2006-10-21 05:43:29 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
usr.sbin/arp arp.c
Log:
- Before doing ioctl(SIOCGIFNETMASK) put the proper IP address into the
ifreq,
to obtain correct netmask in case of in
bms 2006-07-20 18:30:08 UTC
FreeBSD ports repository (src committer)
Modified files:
graphics/geomviewMakefile pkg-plist
Log:
Unbreak pkg-plist.
Revision ChangesPath
1.44 +6 -2 ports/graphics/geomview/Makefile
1.8 +136 -144 ports/graphics/ge
bms 2006-08-02 11:10:25 UTC
FreeBSD ports repository (src committer)
Modified files:
multimedia/dirac Makefile distinfo pkg-plist
Added files:
multimedia/dirac/files patch-doc::Makefile.in
patch-doc::documentation::algorithm::algorithm::Make
bms 2006-08-02 11:22:45 UTC
FreeBSD ports repository (src committer)
Modified files:
net/libpcap/filespatchbase-Makefile.in
Log:
Fix port for values of LIBPCAP_OVERWRITE_BASE which are defined.
PR: ports/95060
Submitted by: Craig Leres
Revision
bms 2006-08-02 12:42:20 UTC
FreeBSD src repository
Modified files:
sbin/reboot reboot.c
Log:
Block SIGHUP before killing init(8), to avoid a race condition which may
kill the current process and hang the system when attempting reboot.
PR: bin/64664
bms 2006-08-02 13:05:38 UTC
FreeBSD src repository
Modified files:
sbin/reboot reboot.c
Log:
Block a variety of signals which may afffect reboot(8), before killing
init(8), to avoid losing a race to them and dying before being able
to call reboot(2).
PR:
bms 2006-08-02 13:21:45 UTC
FreeBSD src repository
Modified files:
usr.bin/logger logger.1 logger.c
Log:
Add a new command-line option, -P, which allows the user to specify
an arbitrary port to which syslog messages are to be sent.
PR: bin/54026
Sub
bms 2006-08-03 20:43:51 UTC
FreeBSD src repository
Modified files:
usr.bin/logger logger.1
Log:
Update document date.
Noticed by: ru
Revision ChangesPath
1.18 +1 -1 src/usr.bin/logger/logger.1
__
bms 2006-08-06 12:01:42 UTC
FreeBSD src repository
Modified files:
sys/dev/usb usbdevs uscanner.c
Log:
Add identifier for the Epson CX3650 all-in-one scanner function.
This enables the scanner function on these devices to be detected
and probed by uscanner(4), bu
bms 2006-08-07 10:16:58 UTC
FreeBSD ports repository (src committer)
Modified files:
multimedia/dirac Makefile pkg-plist
Log:
Fix pkg-plist.
Bump PORTREVISION.
Revision ChangesPath
1.8 +1 -0 ports/multimedia/dirac/Makefile
1.5 +1 -0 p
On Tue, Aug 08, 2006 at 01:30:35PM +0400, Yar Tikhiy wrote:
> By the way, did you consider the other policy, "default to deny,"
> there: Mask all signals with sigfillset(), then unmask only those
> we are willing to handle, and finally pass the mask to sigprocmask()?
> That should be more robust, I
bms 2006-08-08 15:42:31 UTC
FreeBSD src repository
Modified files:
share/man/man4 uscanner.4
Log:
Add Epson Stylus CX3650.
Update Dd.
Requested by: brueffer
Revision ChangesPath
1.27 +3 -1 src/share/man/man4/uscanner.4
bms 2006-08-17 09:49:59 UTC
FreeBSD ports repository (src committer)
Modified files:
devel/p4vMakefile distinfo.i386
Log:
Update to version 2005.2.94595.
Fix quoting in NO_CDROM and RESTRICTED.
Revision ChangesPath
1.14 +4 -6 ports/devel/p4
bms 2010-10-16 00:53:53 UTC
FreeBSD doc repository (src committer)
Modified files:
en/advocacy myths.sgml
Log:
Add a note about Hybrid Cluster, a FreeBSD based distribution which
encapsulates ZFS for web clustering use.
Submitted by: Luke Marsden
Revisi
bms 2010-06-06 17:00:59 UTC
FreeBSD ports repository (src committer)
Modified files:
devel/chrpathMakefile
devel/boost_buildMakefile
devel/k8048 Makefile
devel/p4genpatch Makefile
devel/erlang-thrift Makefile
graphics/seom
bms 2009-03-14 09:33:41 UTC
FreeBSD ports repository (src committer)
Modified files:
lang/python26Makefile
lang/python26/files patch-Python_thread__pthread.h
Added files:
lang/python26/files extra-patch-configure-pth
extra-patch-setu
bms 2009-03-16 13:57:11 UTC
FreeBSD doc repository (src committer)
Modified files:
en_US.ISO8859-1/books/porters-handbook book.sgml
Log:
Add __FreeBSD_version entry 701106 for POSIX semaphore wait fix.
Revision ChangesPath
1.989 +6 -0 doc/en_US.ISO8859-1/
bms 2009-03-18 15:18:53 UTC
FreeBSD ports repository (src committer)
Modified files:
net Makefile
Added files:
net/igmpproxyMakefile distinfo pkg-descr
net/igmpproxy/files igmpproxy.in patch-freebsd
Log:
Add new port igmpproxy.
This is
bms 2009-04-21 08:12:37 UTC
FreeBSD ports repository (src committer)
Modified files:
lang/libstdc++_stldoc_3.4.0 Makefile
Log:
Fix for NOPORTDOCS from QA tindy.
Revision ChangesPath
1.2 +8 -2 ports/lang/libstdc++_stldoc_3.4.0/Makefile
__
bms 2009-04-21 08:13:00 UTC
FreeBSD ports repository (src committer)
Modified files:
lang/libstdc++_stldoc_3.4.0 Makefile
Log:
Drop maintainership.
Revision ChangesPath
1.3 +1 -1 ports/lang/libstdc++_stldoc_3.4.0/Makefile
___
bms 2009-04-21 08:19:27 UTC
FreeBSD ports repository (src committer)
Modified files:
lang/libstdc++_stldoc_4.2.2 Makefile
Log:
Fix for NOPORTDOCS.
Revision ChangesPath
1.2 +10 -3 ports/lang/libstdc++_stldoc_4.2.2/Makefile
bms 2009-04-21 08:19:46 UTC
FreeBSD ports repository (src committer)
Modified files:
lang/libstdc++_stldoc_4.2.2 Makefile
Log:
Drop maintainership.
Revision ChangesPath
1.3 +1 -1 ports/lang/libstdc++_stldoc_4.2.2/Makefile
___
bms 2009-04-21 08:26:46 UTC
FreeBSD ports repository (src committer)
Modified files:
astro/gpstk Makefile
devel/c2mdoc Makefile
devel/calibrator Makefile
devel/ftjam Makefile
devel/piklab Makefile
devel/upslug
bms 2009-04-21 09:00:24 UTC
FreeBSD ports repository (src committer)
Modified files:
net-mgmt/trafd Makefile
Log:
Drop maintainership.
Revision ChangesPath
1.17 +1 -1 ports/net-mgmt/trafd/Makefile
___
cvs
bms 2009-04-21 09:00:03 UTC
FreeBSD ports repository (src committer)
Modified files:
net-mgmt/trafd Makefile distinfo
Added files:
net-mgmt/trafd/files patch-Makefile.inc patch-trafd__trafdump
patch-trafd__traffic.c
bms 2009-04-24 13:42:36 UTC
FreeBSD ports repository (src committer)
Modified files:
net/libpcap Makefile distinfo
Added files:
net/libpcap/filespatch-Makefile.in
Removed files:
net/libpcap pkg-plist
net/libpcap/filespatchbase-Makefile.
bms 2009-04-24 13:42:54 UTC
FreeBSD ports repository (src committer)
Modified files:
net/tcpdump Makefile distinfo
Removed files:
net/tcpdump pkg-plist
net/tcpdump/filespkg-message-base
Log:
Update to 4.0.0.
Revision ChangesPath
1
bms 2009-04-24 13:43:48 UTC
FreeBSD ports repository (src committer)
Modified files:
net/libpcap Makefile
Log:
Drop maintainership.
Revision ChangesPath
1.17 +1 -1 ports/net/libpcap/Makefile
___
cvs-al
bms 2009-04-24 13:44:11 UTC
FreeBSD ports repository (src committer)
Modified files:
net/tcpdump Makefile
Log:
Drop maintainership.
Revision ChangesPath
1.27 +1 -1 ports/net/tcpdump/Makefile
___
cvs-al
bms 2009-04-24 13:47:04 UTC
FreeBSD ports repository (src committer)
Modified files:
net/clickMakefile
Log:
Drop maintainership.
Revision ChangesPath
1.16 +1 -1 ports/net/click/Makefile
___
cvs-all@
bms 2009-04-24 16:47:46 UTC
FreeBSD ports repository (src committer)
Modified files:
net/pimddMakefile
Log:
Drop maintainership.
Revision ChangesPath
1.3 +1 -1 ports/net/pimdd/Makefile
___
cvs-all@
1 - 100 of 486 matches
Mail list logo