From owner-cvs-all Sun Aug 20 0:39:38 2000 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 7823F37B422; Sun, 20 Aug 2000 00:39:31 -0700 (PDT) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.8.7/8.8.7) with ESMTP id RAA10489; Sun, 20 Aug 2000 17:39:25 +1000 Date: Sun, 20 Aug 2000 17:39:20 +1000 (EST) From: Bruce Evans X-Sender: bde@besplex.bde.org To: Brian Fundakowski Feldman Cc: "Andrey A. Chernov" , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile config.h job.c main.c In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 19 Aug 2000, Brian Fundakowski Feldman wrote: > On Sun, 20 Aug 2000, Andrey A. Chernov wrote: > > > On Sun, Aug 20, 2000 at 07:55:20AM +1000, Bruce Evans wrote: > > > They seem to be remarkably broken. A POSIX.2 draft specifies that make > > > shall support the SHELL variable, but our make doesn't. (SHELL has the > > > [deleted] The "[deleted]" part was mostly wrong. The SHELL environment variable is required not to affect the shell used by `make'. Only definitions of SHELL in makefiles and on the command line affect the shell used by make. SHELL must be set to a default by `make'. > > > I'm not sure if .SHELL has any advantages over SHELL. Anyway, SHELL should > > > be fixed first since it is standard. The fix may be as simple as setting > > > > Thanks, Bruce, it is what I try to say from the very beginning of this > > thread. > > So we should make pmake support ${SHELL}? This would allow me to > change it on all compiles easily, but it would break things all over > the place because things set SHELL without expecting make(1) to be > using that shell. No problem, since make is not permitted to use these. There is a minor problem with implementing the default setting of SHELL in sys.mk. The current "SHELL ?= sh" usually gives the environment value. > The only functionality I really need is the ability > to override the default shell value. Even the variable ${SHELL} does > not provide that. I think .SHELL: path=ksh in /etc/make.conf.local is supposed to do this, but it currently gives core dumps for freeing of a bad pointer. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 1:36:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E56037B42C; Sun, 20 Aug 2000 01:36:29 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA05092; Sun, 20 Aug 2000 01:36:29 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200008200836.BAA05092@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 20 Aug 2000 01:36:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/hpfs hpfs_vnops.c src/sys/isofs/cd9660 cd9660_vnops.c src/sys/miscfs/kernfs kernfs_vnops.c src/sys/msdosfs msdosfs_vnops.c src/sys/ntfs ntfs_vnops.c src/sys/ufs/ufs ufs_vnops.c src/sys/kern vfs_subr.c src/sys/sys ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/08/20 01:36:28 PDT Modified files: sys/fs/hpfs hpfs_vnops.c sys/isofs/cd9660 cd9660_vnops.c sys/miscfs/kernfs kernfs_vnops.c sys/msdosfs msdosfs_vnops.c sys/ntfs ntfs_vnops.c sys/ufs/ufs ufs_vnops.c sys/kern vfs_subr.c sys/sys vnode.h Log: Centralize the canonical vop_access user/group/other check in vaccess(). Discussed with: bde Revision Changes Path 1.5 +4 -42 src/sys/fs/hpfs/hpfs_vnops.c 1.66 +4 -43 src/sys/isofs/cd9660/cd9660_vnops.c 1.44 +2 -29 src/sys/miscfs/kernfs/kernfs_vnops.c 1.102 +4 -42 src/sys/msdosfs/msdosfs_vnops.c 1.14 +5 -43 src/sys/ntfs/ntfs_vnops.c 1.142 +4 -42 src/sys/ufs/ufs/ufs_vnops.c 1.268 +55 -1 src/sys/kern/vfs_subr.c 1.123 +3 -1 src/sys/sys/vnode.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 1:43:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E94337B43C; Sun, 20 Aug 2000 01:43:13 -0700 (PDT) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA05414; Sun, 20 Aug 2000 01:43:13 -0700 (PDT) (envelope-from markm@FreeBSD.org) Message-Id: <200008200843.BAA05414@freefall.freebsd.org> From: Mark Murray Date: Sun, 20 Aug 2000 01:43:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/perl5 - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG markm 2000/08/20 01:43:13 PDT src/contrib/perl5 - Imported sources Update of /home/ncvs/src/contrib/perl5 In directory freefall.freebsd.org:/c/tmp/cvs-serv4426 Log Message: Vendor supplied patches to fix procname ($0) Status: Vendor Tag: LWALL Release Tags: v_5_6_0_1 U src/contrib/perl5/Configure U src/contrib/perl5/config_h.SH U src/contrib/perl5/mg.c C src/contrib/perl5/perl.h U src/contrib/perl5/pod/perlvar.pod 1 conflicts created by this import. Use the following command to help the merge: cvs checkout -jLWALL:yesterday -jLWALL src/contrib/perl5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 1:47:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C2D0937B42C; Sun, 20 Aug 2000 01:47:07 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA07602; Sun, 20 Aug 2000 01:47:07 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008200847.BAA07602@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 20 Aug 2000 01:47:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssl CHANGES Configure INSTALL LICENSE Makefile.org Makefile.ssl NEWS README config e_os.h src/crypto/openssl/apps CA.pl CA.sh Makefile.ssl apps.c apps.h asn1pars.c ca.c ciphers.c crl.c crl2p7.c der_chop dgst.c dh.c ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/20 01:47:07 PDT Modified files: (Branch: RELENG_4) crypto/openssl CHANGES Configure INSTALL LICENSE Makefile.org Makefile.ssl NEWS README config e_os.h crypto/openssl/apps CA.pl CA.sh Makefile.ssl apps.c apps.h asn1pars.c ca.c ciphers.c crl.c crl2p7.c der_chop dgst.c dh.c dsa.c dsaparam.c enc.c errstr.c gendh.c gendsa.c genrsa.c nseq.c openssl.c openssl.cnf pkcs12.c pkcs7.c pkcs8.c progs.h progs.pl req.c rsa.c s_apps.h s_cb.c s_client.c s_server.c s_socket.c s_time.c sess_id.c speed.c testdsa.h testrsa.h verify.c version.c x509.c crypto/openssl/bugs SSLv3 crypto/openssl/certs ca-cert.pem pca-cert.pem crypto/openssl/crypto Makefile.ssl cpt_err.c cryptlib.c crypto.h ebcdic.h ex_data.c md32_common.h mem.c opensslconf.h opensslconf.h.in opensslv.h crypto/openssl/crypto/asn1 Makefile.ssl a_bitstr.c a_bmp.c a_bytes.c a_digest.c a_dup.c a_enum.c a_gentm.c a_hdr.c a_i2d_fp.c a_int.c a_object.c a_octet.c a_print.c a_sign.c a_time.c a_type.c a_utctm.c a_utf8.c a_verify.c a_vis.c asn1.h asn1_err.c asn1_lib.c asn1_mac.h asn1_par.c d2i_dhp.c d2i_dsap.c d2i_pr.c d2i_r_pr.c d2i_r_pu.c d2i_s_pr.c d2i_s_pu.c evp_asn1.c f_enum.c f_int.c f_string.c i2d_dhp.c i2d_dsap.c i2d_r_pr.c i2d_r_pu.c i2d_s_pr.c i2d_s_pu.c n_pkey.c p5_pbe.c p5_pbev2.c p7_dgst.c p7_enc.c p7_enc_c.c p7_evp.c p7_i_s.c p7_lib.c p7_recip.c p7_s_e.c p7_signd.c p7_signi.c p8_pkey.c t_crl.c t_pkey.c t_req.c t_x509.c x_algor.c x_attrib.c x_cinf.c x_crl.c x_exten.c x_info.c x_name.c x_pkey.c x_pubkey.c x_req.c x_sig.c x_spki.c x_val.c x_x509.c crypto/openssl/crypto/bf Makefile.ssl bf_cbc.c bf_cfb64.c bf_ecb.c bf_enc.c bf_locl.h bf_ofb64.c bf_opts.c bf_pi.h bf_skey.c bfspeed.c bftest.c blowfish.h crypto/openssl/crypto/bio Makefile.ssl b_dump.c b_print.c b_sock.c bf_buff.c bf_nbio.c bf_null.c bio.h bio_err.c bio_lib.c bss_acpt.c bss_bio.c bss_conn.c bss_file.c bss_log.c bss_mem.c bss_null.c bss_rtcp.c bss_sock.c crypto/openssl/crypto/bn Makefile.ssl bn.h bn_add.c bn_asm.c bn_div.c bn_err.c bn_exp.c bn_exp2.c bn_gcd.c bn_lcl.h bn_lib.c bn_mont.c bn_mul.c bn_prime.c bn_prime.h bn_prime.pl bn_print.c bn_rand.c bn_recp.c bn_sqr.c bn_word.c bnspeed.c bntest.c exp.c expspeed.c exptest.c crypto/openssl/crypto/bn/asm README alpha.s mips3.s crypto/openssl/crypto/buffer Makefile.ssl buf_err.c crypto/openssl/crypto/cast Makefile.ssl c_ecb.c cast_lcl.h cast_s.h cast_spd.c castopts.c casttest.c crypto/openssl/crypto/comp comp.h comp_err.c crypto/openssl/crypto/conf conf.c conf.h conf_err.c crypto/openssl/crypto/des Makefile.ssl cbc3_enc.c des.c des.h des_locl.h des_opts.c destest.c enc_read.c enc_writ.c fcrypt.c fcrypt_b.c ncbc_enc.c qud_cksm.c rand_key.c read_pwd.c rpc_enc.c set_key.c speed.c str2key.c crypto/openssl/crypto/dh Makefile.ssl dh.h dh_check.c dh_err.c dh_gen.c dh_key.c dh_lib.c dhtest.c crypto/openssl/crypto/dsa Makefile.ssl dsa.h dsa_asn1.c dsa_err.c dsa_gen.c dsa_key.c dsa_lib.c dsa_sign.c dsa_vrf.c dsatest.c crypto/openssl/crypto/err Makefile.ssl err.c err.h err_all.c openssl.ec crypto/openssl/crypto/evp Makefile.ssl bio_b64.c bio_enc.c bio_md.c bio_ok.c c_all.c e_cbc_3d.c e_cbc_d.c e_cfb_3d.c e_cfb_d.c e_ecb_3d.c e_ecb_d.c e_ofb_3d.c e_ofb_d.c e_xcbc_d.c encode.c evp.h evp_err.c evp_key.c evp_lib.c evp_pkey.c names.c p_lib.c p_open.c p_seal.c crypto/openssl/crypto/hmac hmac.c hmac.h hmactest.c crypto/openssl/crypto/lhash Makefile.ssl lhash.c lhash.h crypto/openssl/crypto/md2 Makefile.ssl md2.h md2_dgst.c md2_one.c md2test.c crypto/openssl/crypto/md5 Makefile.ssl md5.h md5_dgst.c md5_locl.h md5_one.c md5test.c crypto/openssl/crypto/mdc2 Makefile.ssl mdc2.h mdc2_one.c mdc2dgst.c mdc2test.c crypto/openssl/crypto/objects Makefile.ssl o_names.c obj_dat.c obj_dat.pl obj_err.c objects.h crypto/openssl/crypto/pem pem.h pem_all.c pem_err.c pem_info.c pem_lib.c pem_seal.c crypto/openssl/crypto/perlasm x86asm.pl x86ms.pl x86unix.pl crypto/openssl/crypto/pkcs12 Makefile.ssl p12_add.c p12_attr.c p12_bags.c p12_crpt.c p12_crt.c p12_decr.c p12_init.c p12_key.c p12_kiss.c p12_lib.c p12_mac.c p12_mutl.c pk12err.c pkcs12.h crypto/openssl/crypto/pkcs7 Makefile.ssl bio_ber.c dec.c enc.c example.c pk7_doit.c pk7_lib.c pkcs7.h pkcs7err.c sign.c verify.c crypto/openssl/crypto/rand Makefile.ssl md_rand.c rand.h rand_lib.c randfile.c randtest.c crypto/openssl/crypto/rc2 rc2speed.c rc2test.c crypto/openssl/crypto/rc4 Makefile.ssl rc4.h rc4_enc.c rc4_skey.c rc4speed.c rc4test.c crypto/openssl/crypto/rc5 Makefile.ssl rc5_locl.h rc5speed.c rc5test.c crypto/openssl/crypto/ripemd Makefile.ssl ripemd.h rmd_dgst.c rmd_locl.h rmd_one.c rmdtest.c crypto/openssl/crypto/ripemd/asm rips.cpp rmd-586.pl crypto/openssl/crypto/rsa Makefile.ssl rsa.h rsa_err.c rsa_gen.c rsa_lib.c rsa_oaep.c rsa_pk1.c rsa_saos.c rsa_sign.c rsa_ssl.c crypto/openssl/crypto/sha Makefile.ssl sha.h sha1dgst.c sha1s.cpp sha1test.c sha_dgst.c sha_locl.h shatest.c crypto/openssl/crypto/sha/asm sha1-586.pl crypto/openssl/crypto/stack Makefile.ssl stack.c stack.h crypto/openssl/crypto/threads mttest.c th-lock.c crypto/openssl/crypto/txt_db Makefile.ssl txt_db.c crypto/openssl/crypto/x509 Makefile.ssl by_dir.c by_file.c x509.h x509_cmp.c x509_d2.c x509_def.c x509_err.c x509_ext.c x509_lu.c x509_r2x.c x509_req.c x509_set.c x509_txt.c x509_v3.c x509_vfy.c x509_vfy.h x509name.c x_all.c crypto/openssl/crypto/x509v3 Makefile.ssl v3_akey.c v3_alt.c v3_bcons.c v3_bitst.c v3_conf.c v3_cpols.c v3_crld.c v3_enum.c v3_genn.c v3_ia5.c v3_int.c v3_lib.c v3_pku.c v3_prn.c v3_skey.c v3_sxnet.c v3_utl.c v3err.c x509v3.h crypto/openssl/demos selfsign.c crypto/openssl/demos/bio saccept.c sconnect.c crypto/openssl/demos/ssl cli.cpp crypto/openssl/doc README c-indentation.el openssl.txt ssleay.txt crypto/openssl/rsaref Makefile.ssl rsar_err.c rsaref.c crypto/openssl/ssl Makefile.ssl bio_ssl.c s23_clnt.c s23_lib.c s23_pkt.c s23_srvr.c s2_clnt.c s2_enc.c s2_lib.c s2_meth.c s2_pkt.c s2_srvr.c s3_both.c s3_clnt.c s3_enc.c s3_lib.c s3_pkt.c s3_srvr.c ssl.h ssl2.h ssl3.h ssl_asn1.c ssl_cert.c ssl_ciph.c ssl_err.c ssl_lib.c ssl_locl.h ssl_sess.c ssl_stat.c ssl_task.c ssl_txt.c ssltest.c t1_enc.c t1_lib.c tls1.h crypto/openssl/test Makefile.ssl testgen testss testssl treq trsa crypto/openssl/util domd libeay.num mk1mf.pl mkdef.pl mkerr.pl ssleay.num crypto/openssl/util/pl BC-32.pl Mingw32.pl VC-32.pl Added files: (Branch: RELENG_4) crypto/openssl/crypto/idea Makefile.save Makefile.ssl Makefile.uni i_cbc.c i_cfb64.c i_ecb.c i_ofb64.c i_skey.c idea.h idea_lcl.h idea_spd.c ideatest.c version crypto/openssl/doc/apps CA.pl.pod asn1parse.pod ca.pod ciphers.pod config.pod crl.pod crl2pkcs7.pod dgst.pod dhparam.pod dsa.pod dsaparam.pod enc.pod gendsa.pod genrsa.pod nseq.pod openssl.pod passwd.pod pkcs12.pod pkcs7.pod pkcs8.pod rand.pod req.pod rsa.pod s_client.pod s_server.pod sess_id.pod smime.pod speed.pod spkac.pod verify.pod version.pod x509.pod crypto/openssl/doc/crypto BN_CTX_new.pod BN_CTX_start.pod BN_add.pod BN_add_word.pod BN_bn2bin.pod BN_cmp.pod BN_copy.pod BN_generate_prime.pod BN_mod_inverse.pod BN_mod_mul_montgomery.pod BN_mod_mul_reciprocal.pod BN_new.pod BN_num_bytes.pod BN_rand.pod BN_set_bit.pod BN_zero.pod CRYPTO_set_ex_data.pod DH_generate_key.pod DH_generate_parameters.pod DH_get_ex_new_index.pod DH_new.pod DH_set_method.pod DH_size.pod DSA_SIG_new.pod DSA_do_sign.pod DSA_dup_DH.pod DSA_generate_key.pod DSA_generate_parameters.pod DSA_get_ex_new_index.pod DSA_new.pod DSA_set_method.pod DSA_sign.pod DSA_size.pod ERR_GET_LIB.pod ERR_clear_error.pod ERR_error_string.pod ERR_get_error.pod ERR_load_crypto_strings.pod ERR_load_strings.pod ERR_print_errors.pod ERR_put_error.pod ERR_remove_state.pod EVP_DigestInit.pod EVP_EncryptInit.pod EVP_OpenInit.pod EVP_SealInit.pod EVP_SignInit.pod EVP_VerifyInit.pod OPENSSL_VERSION_NUMBER.pod OpenSSL_add_all_algorithms.pod RAND_add.pod RAND_bytes.pod RAND_cleanup.pod RAND_egd.pod RAND_load_file.pod RAND_set_rand_method.pod RSA_blinding_on.pod RSA_check_key.pod RSA_generate_key.pod RSA_get_ex_new_index.pod RSA_new.pod RSA_padding_add_PKCS1_type_1.pod RSA_print.pod RSA_private_encrypt.pod RSA_public_encrypt.pod RSA_set_method.pod RSA_sign.pod RSA_sign_ASN1_OCTET_STRING.pod RSA_size.pod blowfish.pod bn.pod bn_internal.pod buffer.pod crypto.pod d2i_DHparams.pod d2i_RSAPublicKey.pod des.pod des_modes.pod dh.pod dsa.pod err.pod hmac.pod lh_stats.pod lhash.pod md5.pod mdc2.pod rand.pod rc4.pod ripemd.pod rsa.pod sha.pod threads.pod crypto/openssl/doc/ssl SSL_get_error.pod ssl.pod Log: MFC: OpenSSL 0.9.5a Revision Changes Path 1.1.1.1.2.1 +1235 -4 src/crypto/openssl/CHANGES 1.1.1.1.2.1 +223 -115 src/crypto/openssl/Configure 1.1.1.1.2.1 +17 -149 src/crypto/openssl/INSTALL 1.1.1.1.2.1 +1 -1 src/crypto/openssl/LICENSE 1.1.1.1.2.1 +50 -8 src/crypto/openssl/Makefile.org 1.1.1.1.2.1 +55 -11 src/crypto/openssl/Makefile.ssl 1.1.1.1.2.1 +45 -0 src/crypto/openssl/NEWS 1.1.1.1.2.1 +31 -59 src/crypto/openssl/README 1.1.1.1.2.1 +84 -8 src/crypto/openssl/config 1.1.1.1.2.1 +115 -45 src/crypto/openssl/e_os.h 1.1.1.1.2.1 +10 -1 src/crypto/openssl/apps/CA.pl 1.1.1.1.2.1 +1 -1 src/crypto/openssl/apps/CA.sh 1.1.1.1.2.1 +176 -85 src/crypto/openssl/apps/Makefile.ssl 1.1.1.1.2.1 +90 -0 src/crypto/openssl/apps/apps.c 1.1.1.1.2.1 +18 -2 src/crypto/openssl/apps/apps.h 1.1.1.1.2.1 +10 -4 src/crypto/openssl/apps/asn1pars.c 1.1.1.1.2.1 +112 -109 src/crypto/openssl/apps/ca.c 1.1.1.1.2.1 +9 -7 src/crypto/openssl/apps/ciphers.c 1.1.1.1.2.1 +75 -8 src/crypto/openssl/apps/crl.c 1.1.1.1.2.1 +5 -3 src/crypto/openssl/apps/crl2p7.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/apps/der_chop 1.1.1.1.2.1 +3 -0 src/crypto/openssl/apps/dgst.c 1.1.1.1.2.1 +11 -7 src/crypto/openssl/apps/dh.c 1.1.1.1.2.1 +60 -26 src/crypto/openssl/apps/dsa.c 1.1.1.1.2.1 +32 -16 src/crypto/openssl/apps/dsaparam.c 1.1.1.1.2.1 +117 -40 src/crypto/openssl/apps/enc.c 1.1.1.1.2.1 +2 -0 src/crypto/openssl/apps/errstr.c 1.1.1.1.2.1 +13 -40 src/crypto/openssl/apps/gendh.c 1.1.1.1.2.1 +26 -41 src/crypto/openssl/apps/gendsa.c 1.1.1.1.2.1 +41 -65 src/crypto/openssl/apps/genrsa.c 1.1.1.1.2.1 +1 -15 src/crypto/openssl/apps/nseq.c 1.1.1.1.2.1 +20 -39 src/crypto/openssl/apps/openssl.c 1.1.1.1.2.1 +34 -4 src/crypto/openssl/apps/openssl.cnf 1.1.1.1.2.1 +152 -59 src/crypto/openssl/apps/pkcs12.c 1.1.1.1.2.1 +34 -62 src/crypto/openssl/apps/pkcs7.c 1.1.1.1.2.1 +101 -30 src/crypto/openssl/apps/pkcs8.c 1.1.1.1.2.1 +26 -8 src/crypto/openssl/apps/progs.h 1.1.1.1.2.1 +9 -9 src/crypto/openssl/apps/progs.pl 1.1.1.1.2.1 +247 -164 src/crypto/openssl/apps/req.c 1.1.1.1.2.1 +87 -31 src/crypto/openssl/apps/rsa.c 1.1.1.1.2.1 +0 -9 src/crypto/openssl/apps/s_apps.h 1.1.1.1.2.1 +1 -1 src/crypto/openssl/apps/s_cb.c 1.1.1.1.2.1 +75 -30 src/crypto/openssl/apps/s_client.c 1.1.1.1.2.1 +90 -50 src/crypto/openssl/apps/s_server.c 1.1.1.1.2.1 +19 -153 src/crypto/openssl/apps/s_socket.c 1.1.1.1.2.1 +13 -18 src/crypto/openssl/apps/s_time.c 1.1.1.1.2.1 +4 -1 src/crypto/openssl/apps/sess_id.c 1.3.2.1 +41 -25 src/crypto/openssl/apps/speed.c 1.1.1.1.2.1 +3 -0 src/crypto/openssl/apps/testdsa.h 1.1.1.1.2.1 +1 -0 src/crypto/openssl/apps/testrsa.h 1.1.1.1.2.1 +137 -28 src/crypto/openssl/apps/verify.c 1.1.1.1.2.1 +2 -0 src/crypto/openssl/apps/version.c 1.1.1.1.2.1 +223 -52 src/crypto/openssl/apps/x509.c 1.1.1.1.2.1 +8 -0 src/crypto/openssl/bugs/SSLv3 1.1.1.1.2.1 +16 -14 src/crypto/openssl/certs/ca-cert.pem 1.1.1.1.2.1 +15 -13 src/crypto/openssl/certs/pca-cert.pem 1.1.1.1.2.1 +27 -11 src/crypto/openssl/crypto/Makefile.ssl 1.1.1.1.2.1 +2 -1 src/crypto/openssl/crypto/cpt_err.c 1.1.1.1.2.1 +4 -2 src/crypto/openssl/crypto/cryptlib.c 1.1.1.1.2.1 +121 -83 src/crypto/openssl/crypto/crypto.h 1.1.1.1.2.1 +8 -6 src/crypto/openssl/crypto/ebcdic.h 1.1.1.1.2.1 +20 -20 src/crypto/openssl/crypto/ex_data.c 1.1.1.1.2.1 +27 -14 src/crypto/openssl/crypto/md32_common.h 1.1.1.1.2.1 +135 -303 src/crypto/openssl/crypto/mem.c 1.1.1.1.2.1 +28 -3 src/crypto/openssl/crypto/opensslconf.h 1.1.1.1.2.1 +16 -3 src/crypto/openssl/crypto/opensslconf.h.in 1.1.1.1.2.1 +21 -10 src/crypto/openssl/crypto/opensslv.h 1.1.1.1.2.1 +116 -22 src/crypto/openssl/crypto/asn1/Makefile.ssl 1.1.1.1.2.1 +12 -3 src/crypto/openssl/crypto/asn1/a_bitstr.c 1.1.1.1.2.1 +6 -0 src/crypto/openssl/crypto/asn1/a_bmp.c 1.1.1.1.2.1 +10 -9 src/crypto/openssl/crypto/asn1/a_bytes.c 1.1.1.1.2.1 +7 -4 src/crypto/openssl/crypto/asn1/a_digest.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/a_dup.c 1.1.1.1.2.1 +18 -7 src/crypto/openssl/crypto/asn1/a_enum.c 1.1.1.1.2.1 +8 -2 src/crypto/openssl/crypto/asn1/a_gentm.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/crypto/asn1/a_hdr.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/a_i2d_fp.c 1.1.1.1.2.1 +30 -11 src/crypto/openssl/crypto/asn1/a_int.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/crypto/asn1/a_object.c 1.1.1.1.2.1 +16 -4 src/crypto/openssl/crypto/asn1/a_octet.c 1.1.1.1.2.1 +32 -0 src/crypto/openssl/crypto/asn1/a_print.c 1.1.1.1.2.1 +9 -6 src/crypto/openssl/crypto/asn1/a_sign.c 1.1.1.1.2.1 +6 -0 src/crypto/openssl/crypto/asn1/a_time.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/a_type.c 1.1.1.1.2.1 +8 -2 src/crypto/openssl/crypto/asn1/a_utctm.c 1.1.1.1.2.1 +155 -0 src/crypto/openssl/crypto/asn1/a_utf8.c 1.1.1.1.2.1 +6 -3 src/crypto/openssl/crypto/asn1/a_verify.c 1.1.1.1.2.1 +6 -0 src/crypto/openssl/crypto/asn1/a_vis.c 1.1.1.1.2.1 +205 -83 src/crypto/openssl/crypto/asn1/asn1.h 1.1.1.1.2.1 +24 -3 src/crypto/openssl/crypto/asn1/asn1_err.c 1.1.1.1.2.1 +15 -4 src/crypto/openssl/crypto/asn1/asn1_lib.c 1.1.1.1.2.1 +14 -0 src/crypto/openssl/crypto/asn1/asn1_mac.h 1.1.1.1.2.1 +27 -53 src/crypto/openssl/crypto/asn1/asn1_par.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/asn1/d2i_dhp.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/asn1/d2i_dsap.c 1.1.1.1.2.1 +23 -0 src/crypto/openssl/crypto/asn1/d2i_pr.c 1.1.1.1.2.1 +9 -2 src/crypto/openssl/crypto/asn1/d2i_r_pr.c 1.1.1.1.2.1 +8 -2 src/crypto/openssl/crypto/asn1/d2i_r_pu.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/asn1/d2i_s_pr.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/asn1/d2i_s_pu.c 1.1.1.1.2.1 +12 -12 src/crypto/openssl/crypto/asn1/evp_asn1.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/f_enum.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/f_int.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/f_string.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/i2d_dhp.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/i2d_dsap.c 1.1.1.1.2.1 +7 -1 src/crypto/openssl/crypto/asn1/i2d_r_pr.c 1.1.1.1.2.1 +7 -1 src/crypto/openssl/crypto/asn1/i2d_r_pu.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/i2d_s_pr.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/i2d_s_pu.c 1.1.1.1.2.1 +16 -9 src/crypto/openssl/crypto/asn1/n_pkey.c 1.1.1.1.2.1 +7 -6 src/crypto/openssl/crypto/asn1/p5_pbe.c 1.1.1.1.2.1 +21 -13 src/crypto/openssl/crypto/asn1/p5_pbev2.c 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/asn1/p7_dgst.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/crypto/asn1/p7_enc.c 1.1.1.1.2.1 +4 -3 src/crypto/openssl/crypto/asn1/p7_enc_c.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/crypto/asn1/p7_evp.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/crypto/asn1/p7_i_s.c 1.1.1.1.2.1 +4 -4 src/crypto/openssl/crypto/asn1/p7_lib.c 1.1.1.1.2.1 +4 -4 src/crypto/openssl/crypto/asn1/p7_recip.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/asn1/p7_s_e.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/asn1/p7_signd.c 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/asn1/p7_signi.c 1.1.1.1.2.1 +2 -4 src/crypto/openssl/crypto/asn1/p8_pkey.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/t_crl.c 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/asn1/t_pkey.c 1.1.1.1.2.1 +31 -3 src/crypto/openssl/crypto/asn1/t_req.c 1.1.1.1.2.1 +3 -6 src/crypto/openssl/crypto/asn1/t_x509.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/x_algor.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/x_attrib.c 1.1.1.1.2.1 +8 -8 src/crypto/openssl/crypto/asn1/x_cinf.c 1.1.1.1.2.1 +25 -32 src/crypto/openssl/crypto/asn1/x_crl.c 1.1.1.1.2.1 +3 -12 src/crypto/openssl/crypto/asn1/x_exten.c 1.1.1.1.2.1 +2 -1 src/crypto/openssl/crypto/asn1/x_info.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/asn1/x_name.c 1.1.1.1.2.1 +4 -4 src/crypto/openssl/crypto/asn1/x_pkey.c 1.1.1.1.2.1 +116 -4 src/crypto/openssl/crypto/asn1/x_pubkey.c 1.1.1.1.2.1 +9 -9 src/crypto/openssl/crypto/asn1/x_req.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/crypto/asn1/x_sig.c 1.1.1.1.2.1 +7 -7 src/crypto/openssl/crypto/asn1/x_spki.c 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/asn1/x_val.c 1.1.1.1.2.1 +63 -4 src/crypto/openssl/crypto/asn1/x_x509.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/bf/Makefile.ssl 1.1.1.1.2.1 +16 -16 src/crypto/openssl/crypto/bf/bf_cbc.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/bf/bf_cfb64.c 1.1.1.1.2.1 +6 -6 src/crypto/openssl/crypto/bf/bf_ecb.c 1.1.1.1.2.1 +23 -21 src/crypto/openssl/crypto/bf/bf_enc.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/crypto/bf/bf_locl.h 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/bf/bf_ofb64.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/bf/bf_opts.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/bf/bf_pi.h 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/bf/bf_skey.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/bf/bfspeed.c 1.1.1.1.2.1 +6 -6 src/crypto/openssl/crypto/bf/bftest.c 1.1.1.1.2.1 +13 -11 src/crypto/openssl/crypto/bf/blowfish.h 1.1.1.1.2.1 +30 -20 src/crypto/openssl/crypto/bio/Makefile.ssl 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/bio/b_dump.c 1.1.1.1.2.1 +761 -4 src/crypto/openssl/crypto/bio/b_print.c 1.1.1.1.2.1 +19 -5 src/crypto/openssl/crypto/bio/b_sock.c 1.1.1.1.2.1 +26 -0 src/crypto/openssl/crypto/bio/bf_buff.c 1.1.1.1.2.1 +18 -2 src/crypto/openssl/crypto/bio/bf_nbio.c 1.1.1.1.2.1 +16 -0 src/crypto/openssl/crypto/bio/bf_null.c 1.1.1.1.2.1 +40 -16 src/crypto/openssl/crypto/bio/bio.h 1.1.1.1.2.1 +9 -1 src/crypto/openssl/crypto/bio/bio_err.c 1.1.1.1.2.1 +48 -10 src/crypto/openssl/crypto/bio/bio_lib.c 1.1.1.1.2.1 +1 -0 src/crypto/openssl/crypto/bio/bss_acpt.c 1.1.1.1.2.1 +273 -4 src/crypto/openssl/crypto/bio/bss_bio.c 1.1.1.1.2.1 +37 -5 src/crypto/openssl/crypto/bio/bss_conn.c 1.1.1.1.2.1 +2 -1 src/crypto/openssl/crypto/bio/bss_file.c 1.1.1.1.2.1 +159 -55 src/crypto/openssl/crypto/bio/bss_log.c 1.1.1.1.2.1 +47 -11 src/crypto/openssl/crypto/bio/bss_mem.c 1.1.1.1.2.1 +1 -0 src/crypto/openssl/crypto/bio/bss_null.c 1.1.1.1.2.1 +1 -0 src/crypto/openssl/crypto/bio/bss_rtcp.c 1.1.1.1.2.1 +3 -2 src/crypto/openssl/crypto/bio/bss_sock.c 1.1.1.1.2.1 +62 -51 src/crypto/openssl/crypto/bn/Makefile.ssl 1.1.1.1.2.1 +90 -47 src/crypto/openssl/crypto/bn/bn.h 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/bn/bn_add.c 1.1.1.1.2.1 +90 -55 src/crypto/openssl/crypto/bn/bn_asm.c 1.1.1.1.2.1 +113 -91 src/crypto/openssl/crypto/bn/bn_div.c 1.1.1.1.2.1 +4 -1 src/crypto/openssl/crypto/bn/bn_err.c 1.1.1.1.2.1 +219 -19 src/crypto/openssl/crypto/bn/bn_exp.c 1.1.1.1.2.1 +9 -5 src/crypto/openssl/crypto/bn/bn_exp2.c 1.1.1.1.2.1 +17 -11 src/crypto/openssl/crypto/bn/bn_gcd.c 1.1.1.1.2.1 +89 -36 src/crypto/openssl/crypto/bn/bn_lcl.h 1.1.1.1.2.1 +14 -46 src/crypto/openssl/crypto/bn/bn_lib.c 1.1.1.1.2.1 +130 -198 src/crypto/openssl/crypto/bn/bn_mont.c 1.1.1.1.2.1 +144 -106 src/crypto/openssl/crypto/bn/bn_mul.c 1.1.1.1.2.1 +201 -183 src/crypto/openssl/crypto/bn/bn_prime.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/bn/bn_prime.h 1.1.1.1.2.1 +65 -4 src/crypto/openssl/crypto/bn/bn_prime.pl 1.1.1.1.2.1 +16 -7 src/crypto/openssl/crypto/bn/bn_print.c 1.1.1.1.2.1 +22 -3 src/crypto/openssl/crypto/bn/bn_rand.c 1.1.1.1.2.1 +18 -25 src/crypto/openssl/crypto/bn/bn_recp.c 1.1.1.1.2.1 +16 -9 src/crypto/openssl/crypto/bn/bn_sqr.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/bn/bn_word.c 1.1.1.1.2.1 +2 -0 src/crypto/openssl/crypto/bn/bnspeed.c 1.1.1.1.2.1 +152 -90 src/crypto/openssl/crypto/bn/bntest.c 1.1.1.1.2.1 +2 -0 src/crypto/openssl/crypto/bn/exp.c 1.1.1.1.2.1 +2 -0 src/crypto/openssl/crypto/bn/expspeed.c 1.1.1.1.2.1 +15 -0 src/crypto/openssl/crypto/bn/exptest.c 1.1.1.1.2.1 +1 -8 src/crypto/openssl/crypto/bn/asm/README 1.1.1.1.2.1 +1860 -559 src/crypto/openssl/crypto/bn/asm/alpha.s 1.1.1.1.2.1 +73 -70 src/crypto/openssl/crypto/bn/asm/mips3.s 1.1.1.1.2.1 +2 -1 src/crypto/openssl/crypto/buffer/Makefile.ssl 1.1.1.1.2.1 +2 -1 src/crypto/openssl/crypto/buffer/buf_err.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/cast/Makefile.ssl 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/cast/c_ecb.c 1.1.1.1.2.1 +9 -9 src/crypto/openssl/crypto/cast/cast_lcl.h 1.1.1.1.2.1 +8 -8 src/crypto/openssl/crypto/cast/cast_s.h 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/cast/cast_spd.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/cast/castopts.c 1.1.1.1.2.1 +9 -9 src/crypto/openssl/crypto/cast/casttest.c 1.1.1.1.2.1 +1 -0 src/crypto/openssl/crypto/comp/comp.h 1.1.1.1.2.1 +2 -1 src/crypto/openssl/crypto/comp/comp_err.c 1.1.1.1.2.1 +15 -17 src/crypto/openssl/crypto/conf/conf.c 1.1.1.1.2.1 +2 -0 src/crypto/openssl/crypto/conf/conf.h 1.1.1.1.2.1 +2 -1 src/crypto/openssl/crypto/conf/conf_err.c 1.1.1.1.2.1 +19 -21 src/crypto/openssl/crypto/des/Makefile.ssl 1.1.1.1.2.1 +13 -7 src/crypto/openssl/crypto/des/cbc3_enc.c 1.1.1.1.2.1 +13 -16 src/crypto/openssl/crypto/des/des.c 1.2.2.1 +27 -9 src/crypto/openssl/crypto/des/des.h 1.1.1.1.2.1 +8 -4 src/crypto/openssl/crypto/des/des_locl.h 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/des/des_opts.c 1.1.1.1.2.1 +78 -74 src/crypto/openssl/crypto/des/destest.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/des/enc_read.c 1.1.1.1.2.1 +8 -5 src/crypto/openssl/crypto/des/enc_writ.c 1.1.1.1.2.1 +5 -6 src/crypto/openssl/crypto/des/fcrypt.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/des/fcrypt_b.c 1.1.1.1.2.1 +5 -0 src/crypto/openssl/crypto/des/ncbc_enc.c 1.1.1.1.2.1 +10 -21 src/crypto/openssl/crypto/des/qud_cksm.c 1.1.1.1.2.1 +57 -98 src/crypto/openssl/crypto/des/rand_key.c 1.1.1.1.2.1 +16 -3 src/crypto/openssl/crypto/des/read_pwd.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/des/rpc_enc.c 1.1.1.1.2.1 +201 -33 src/crypto/openssl/crypto/des/set_key.c 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/des/speed.c 1.1.1.1.2.1 +6 -14 src/crypto/openssl/crypto/des/str2key.c 1.1.1.1.2.1 +12 -8 src/crypto/openssl/crypto/dh/Makefile.ssl 1.1.1.1.2.1 +47 -4 src/crypto/openssl/crypto/dh/dh.h 1.1.1.1.2.1 +6 -4 src/crypto/openssl/crypto/dh/dh_check.c 1.1.1.1.2.1 +2 -1 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.1.2.1 +12 -7 src/crypto/openssl/crypto/dh/dh_gen.c 1.1.1.1.2.1 +61 -4 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.1.2.1 +88 -4 src/crypto/openssl/crypto/dh/dh_lib.c 1.1.1.1.2.1 +10 -2 src/crypto/openssl/crypto/dh/dhtest.c 1.1.1.1.2.1 +22 -9 src/crypto/openssl/crypto/dsa/Makefile.ssl 1.1.1.1.2.1 +49 -12 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/dsa/dsa_asn1.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.1.2.1 +66 -105 src/crypto/openssl/crypto/dsa/dsa_gen.c 1.1.1.1.2.1 +2 -1 src/crypto/openssl/crypto/dsa/dsa_key.c 1.1.1.1.2.1 +65 -3 src/crypto/openssl/crypto/dsa/dsa_lib.c 1.1.1.1.2.1 +2 -121 src/crypto/openssl/crypto/dsa/dsa_sign.c 1.1.1.1.2.1 +1 -67 src/crypto/openssl/crypto/dsa/dsa_vrf.c 1.1.1.1.2.1 +20 -8 src/crypto/openssl/crypto/dsa/dsatest.c 1.1.1.1.2.1 +11 -10 src/crypto/openssl/crypto/err/Makefile.ssl 1.1.1.1.2.1 +115 -11 src/crypto/openssl/crypto/err/err.c 1.1.1.1.2.1 +6 -4 src/crypto/openssl/crypto/err/err.h 1.2.2.1 +2 -0 src/crypto/openssl/crypto/err/err_all.c 1.1.1.1.2.1 +3 -2 src/crypto/openssl/crypto/err/openssl.ec 1.1.1.1.2.1 +40 -6 src/crypto/openssl/crypto/evp/Makefile.ssl 1.1.1.1.2.1 +17 -1 src/crypto/openssl/crypto/evp/bio_b64.c 1.1.1.1.2.1 +27 -3 src/crypto/openssl/crypto/evp/bio_enc.c 1.1.1.1.2.1 +17 -0 src/crypto/openssl/crypto/evp/bio_md.c 1.1.1.1.2.1 +25 -8 src/crypto/openssl/crypto/evp/bio_ok.c 1.1.1.1.2.1 +5 -131 src/crypto/openssl/crypto/evp/c_all.c 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/evp/e_cbc_3d.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/evp/e_cbc_d.c 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/evp/e_cfb_3d.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/evp/e_cfb_d.c 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/evp/e_ecb_3d.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/evp/e_ecb_d.c 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/evp/e_ofb_3d.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/evp/e_ofb_d.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/evp/e_xcbc_d.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/evp/encode.c 1.2.2.1 +39 -10 src/crypto/openssl/crypto/evp/evp.h 1.1.1.1.2.1 +9 -2 src/crypto/openssl/crypto/evp/evp_err.c 1.1.1.1.2.1 +7 -4 src/crypto/openssl/crypto/evp/evp_key.c 1.1.1.1.2.1 +5 -1 src/crypto/openssl/crypto/evp/evp_lib.c 1.1.1.1.2.1 +190 -81 src/crypto/openssl/crypto/evp/evp_pkey.c 1.1.1.1.2.1 +5 -0 src/crypto/openssl/crypto/evp/names.c 1.1.1.1.2.1 +61 -3 src/crypto/openssl/crypto/evp/p_lib.c 1.1.1.1.2.1 +6 -0 src/crypto/openssl/crypto/evp/p_open.c 1.1.1.1.2.1 +3 -2 src/crypto/openssl/crypto/evp/p_seal.c 1.1.1.1.2.1 +5 -3 src/crypto/openssl/crypto/hmac/hmac.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/hmac/hmac.h 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/hmac/hmactest.c 1.1.1.1.2.1 +4 -3 src/crypto/openssl/crypto/lhash/Makefile.ssl 1.1.1.1.2.1 +22 -37 src/crypto/openssl/crypto/lhash/lhash.c 1.1.1.1.2.1 +8 -7 src/crypto/openssl/crypto/lhash/lhash.h 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/md2/Makefile.ssl 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/md2/md2.h 1.1.1.1.2.1 +4 -4 src/crypto/openssl/crypto/md2/md2_dgst.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/md2/md2_one.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/md2/md2test.c 1.1.1.1.2.1 +10 -3 src/crypto/openssl/crypto/md5/Makefile.ssl 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/md5/md5.h 1.1.1.1.2.1 +78 -76 src/crypto/openssl/crypto/md5/md5_dgst.c 1.1.1.1.2.1 +12 -9 src/crypto/openssl/crypto/md5/md5_locl.h 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/md5/md5_one.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/md5/md5test.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/mdc2/Makefile.ssl 1.1.1.1.2.1 +3 -2 src/crypto/openssl/crypto/mdc2/mdc2.h 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/mdc2/mdc2_one.c 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/mdc2/mdc2dgst.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/mdc2/mdc2test.c 1.1.1.1.2.1 +0 -3 src/crypto/openssl/crypto/objects/Makefile.ssl 1.1.1.1.2.1 +64 -42 src/crypto/openssl/crypto/objects/o_names.c 1.1.1.1.2.1 +9 -13 src/crypto/openssl/crypto/objects/obj_dat.c 1.1.1.1.2.1 +31 -25 src/crypto/openssl/crypto/objects/obj_dat.pl 1.1.1.1.2.1 +2 -1 src/crypto/openssl/crypto/objects/obj_err.c 1.1.1.1.2.1 +69 -5 src/crypto/openssl/crypto/objects/objects.h 1.1.1.1.2.1 +38 -0 src/crypto/openssl/crypto/pem/pem.h 1.1.1.1.2.1 +92 -2 src/crypto/openssl/crypto/pem/pem_all.c 1.1.1.1.2.1 +5 -1 src/crypto/openssl/crypto/pem/pem_err.c 1.1.1.1.2.1 +11 -0 src/crypto/openssl/crypto/pem/pem_info.c 1.1.1.1.2.1 +190 -30 src/crypto/openssl/crypto/pem/pem_lib.c 1.1.1.1.2.1 +6 -0 src/crypto/openssl/crypto/pem/pem_seal.c 1.1.1.1.2.1 +4 -2 src/crypto/openssl/crypto/perlasm/x86asm.pl 1.1.1.1.2.1 +8 -1 src/crypto/openssl/crypto/perlasm/x86ms.pl 1.1.1.1.2.1 +11 -3 src/crypto/openssl/crypto/perlasm/x86unix.pl 1.1.1.1.2.1 +20 -3 src/crypto/openssl/crypto/pkcs12/Makefile.ssl 1.1.1.1.2.1 +14 -12 src/crypto/openssl/crypto/pkcs12/p12_add.c 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/pkcs12/p12_attr.c 1.1.1.1.2.1 +4 -4 src/crypto/openssl/crypto/pkcs12/p12_bags.c 1.1.1.1.2.1 +2 -0 src/crypto/openssl/crypto/pkcs12/p12_crpt.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/crypto/pkcs12/p12_crt.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/pkcs12/p12_decr.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/crypto/pkcs12/p12_init.c 1.1.1.1.2.1 +19 -12 src/crypto/openssl/crypto/pkcs12/p12_key.c 1.1.1.1.2.1 +68 -52 src/crypto/openssl/crypto/pkcs12/p12_kiss.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/pkcs12/p12_lib.c 1.1.1.1.2.1 +8 -8 src/crypto/openssl/crypto/pkcs12/p12_mac.c 1.1.1.1.2.1 +8 -5 src/crypto/openssl/crypto/pkcs12/p12_mutl.c 1.1.1.1.2.1 +4 -1 src/crypto/openssl/crypto/pkcs12/pk12err.c 1.1.1.1.2.1 +5 -2 src/crypto/openssl/crypto/pkcs12/pkcs12.h 1.1.1.1.2.1 +71 -14 src/crypto/openssl/crypto/pkcs7/Makefile.ssl 1.1.1.1.2.1 +17 -1 src/crypto/openssl/crypto/pkcs7/bio_ber.c 1.1.1.1.2.1 +7 -5 src/crypto/openssl/crypto/pkcs7/dec.c 1.1.1.1.2.1 +12 -3 src/crypto/openssl/crypto/pkcs7/enc.c 1.1.1.1.2.1 +8 -7 src/crypto/openssl/crypto/pkcs7/example.c 1.1.1.1.2.1 +80 -42 src/crypto/openssl/crypto/pkcs7/pk7_doit.c 1.1.1.1.2.1 +37 -17 src/crypto/openssl/crypto/pkcs7/pk7_lib.c 1.1.1.1.2.1 +83 -2 src/crypto/openssl/crypto/pkcs7/pkcs7.h 1.1.1.1.2.1 +41 -1 src/crypto/openssl/crypto/pkcs7/pkcs7err.c 1.1.1.1.2.1 +11 -2 src/crypto/openssl/crypto/pkcs7/sign.c 1.1.1.1.2.1 +10 -1 src/crypto/openssl/crypto/pkcs7/verify.c 1.1.1.1.2.1 +11 -6 src/crypto/openssl/crypto/rand/Makefile.ssl 1.1.1.1.2.1 +358 -75 src/crypto/openssl/crypto/rand/md_rand.c 1.1.1.1.2.1 +33 -5 src/crypto/openssl/crypto/rand/rand.h 1.1.1.1.2.1 +22 -3 src/crypto/openssl/crypto/rand/rand_lib.c 1.1.1.1.2.1 +70 -28 src/crypto/openssl/crypto/rand/randfile.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/rand/randtest.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/rc2/rc2speed.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/crypto/rc2/rc2test.c 1.1.1.1.2.1 +3 -2 src/crypto/openssl/crypto/rc4/Makefile.ssl 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/rc4/rc4.h 1.1.1.1.2.1 +185 -1 src/crypto/openssl/crypto/rc4/rc4_enc.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/rc4/rc4_skey.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/rc4/rc4speed.c 1.1.1.1.2.1 +4 -4 src/crypto/openssl/crypto/rc4/rc4test.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/rc5/Makefile.ssl 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/rc5/rc5_locl.h 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/rc5/rc5speed.c 1.1.1.1.2.1 +8 -8 src/crypto/openssl/crypto/rc5/rc5test.c 1.1.1.1.2.1 +5 -4 src/crypto/openssl/crypto/ripemd/Makefile.ssl 1.1.1.1.2.1 +17 -10 src/crypto/openssl/crypto/ripemd/ripemd.h 1.1.1.1.2.1 +212 -234 src/crypto/openssl/crypto/ripemd/rmd_dgst.c 1.1.1.1.2.1 +60 -122 src/crypto/openssl/crypto/ripemd/rmd_locl.h 1.1.1.1.2.1 +3 -2 src/crypto/openssl/crypto/ripemd/rmd_one.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/ripemd/rmdtest.c 1.1.1.1.2.1 +5 -1 src/crypto/openssl/crypto/ripemd/asm/rips.cpp 1.1.1.1.2.1 +59 -51 src/crypto/openssl/crypto/ripemd/asm/rmd-586.pl 1.1.1.1.2.1 +27 -18 src/crypto/openssl/crypto/rsa/Makefile.ssl 1.2.2.2 +28 -8 src/crypto/openssl/crypto/rsa/rsa.h 1.1.1.1.2.1 +6 -2 src/crypto/openssl/crypto/rsa/rsa_err.c 1.1.1.1.2.1 +7 -5 src/crypto/openssl/crypto/rsa/rsa_gen.c 1.2.2.1 +14 -10 src/crypto/openssl/crypto/rsa/rsa_lib.c 1.1.1.1.2.1 +2 -1 src/crypto/openssl/crypto/rsa/rsa_oaep.c 1.1.1.1.2.1 +15 -3 src/crypto/openssl/crypto/rsa/rsa_pk1.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/rsa/rsa_saos.c 1.1.1.1.2.1 +98 -65 src/crypto/openssl/crypto/rsa/rsa_sign.c 1.1.1.1.2.1 +9 -2 src/crypto/openssl/crypto/rsa/rsa_ssl.c 1.1.1.1.2.1 +5 -4 src/crypto/openssl/crypto/sha/Makefile.ssl 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/sha/sha.h 1.1.1.1.2.1 +6 -431 src/crypto/openssl/crypto/sha/sha1dgst.c 1.1.1.1.2.1 +4 -1 src/crypto/openssl/crypto/sha/sha1s.cpp 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/sha/sha1test.c 1.1.1.1.2.1 +8 -427 src/crypto/openssl/crypto/sha/sha_dgst.c 1.1.1.1.2.1 +372 -189 src/crypto/openssl/crypto/sha/sha_locl.h 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/sha/shatest.c 1.1.1.1.2.1 +76 -29 src/crypto/openssl/crypto/sha/asm/sha1-586.pl 1.1.1.1.2.1 +2 -1 src/crypto/openssl/crypto/stack/Makefile.ssl 1.1.1.1.2.1 +4 -4 src/crypto/openssl/crypto/stack/stack.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/stack/stack.h 1.1.1.1.2.1 +80 -42 src/crypto/openssl/crypto/threads/mttest.c 1.1.1.1.2.1 +37 -18 src/crypto/openssl/crypto/threads/th-lock.c 1.1.1.1.2.1 +3 -2 src/crypto/openssl/crypto/txt_db/Makefile.ssl 1.1.1.1.2.1 +4 -4 src/crypto/openssl/crypto/txt_db/txt_db.c 1.1.1.1.2.1 +90 -33 src/crypto/openssl/crypto/x509/Makefile.ssl 1.1.1.1.2.1 +13 -6 src/crypto/openssl/crypto/x509/by_dir.c 1.1.1.1.2.1 +47 -16 src/crypto/openssl/crypto/x509/by_file.c 1.1.1.1.2.1 +228 -13 src/crypto/openssl/crypto/x509/x509.h 1.1.1.1.2.1 +19 -4 src/crypto/openssl/crypto/x509/x509_cmp.c 1.1.1.1.2.1 +4 -4 src/crypto/openssl/crypto/x509/x509_d2.c 1.1.1.1.2.1 +0 -2 src/crypto/openssl/crypto/x509/x509_def.c 1.1.1.1.2.1 +19 -1 src/crypto/openssl/crypto/x509/x509_err.c 1.1.1.1.2.1 +17 -0 src/crypto/openssl/crypto/x509/x509_ext.c 1.1.1.1.2.1 +21 -5 src/crypto/openssl/crypto/x509/x509_lu.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/x509/x509_r2x.c 1.1.1.1.2.1 +164 -1 src/crypto/openssl/crypto/x509/x509_req.c 1.1.1.1.2.1 +7 -7 src/crypto/openssl/crypto/x509/x509_set.c 1.1.1.1.2.1 +10 -1 src/crypto/openssl/crypto/x509/x509_txt.c 1.1.1.1.2.1 +2 -1 src/crypto/openssl/crypto/x509/x509_v3.c 1.1.1.1.2.1 +198 -22 src/crypto/openssl/crypto/x509/x509_vfy.c 1.1.1.1.2.1 +18 -2 src/crypto/openssl/crypto/x509/x509_vfy.h 1.1.1.1.2.1 +64 -2 src/crypto/openssl/crypto/x509/x509name.c 1.1.1.1.2.1 +97 -3 src/crypto/openssl/crypto/x509/x_all.c 1.1.1.1.2.1 +40 -3 src/crypto/openssl/crypto/x509v3/Makefile.ssl 1.1.1.1.2.1 +6 -6 src/crypto/openssl/crypto/x509v3/v3_akey.c 1.1.1.1.2.1 +4 -5 src/crypto/openssl/crypto/x509v3/v3_alt.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/crypto/x509v3/v3_bcons.c 1.1.1.1.2.1 +2 -8 src/crypto/openssl/crypto/x509v3/v3_bitst.c 1.1.1.1.2.1 +29 -5 src/crypto/openssl/crypto/x509v3/v3_conf.c 1.1.1.1.2.1 +7 -7 src/crypto/openssl/crypto/x509v3/v3_cpols.c 1.1.1.1.2.1 +10 -8 src/crypto/openssl/crypto/x509v3/v3_crld.c 1.1.1.1.2.1 +3 -10 src/crypto/openssl/crypto/x509v3/v3_enum.c 1.1.1.1.2.1 +62 -8 src/crypto/openssl/crypto/x509v3/v3_genn.c 1.1.1.1.2.1 +5 -8 src/crypto/openssl/crypto/x509v3/v3_ia5.c 1.1.1.1.2.1 +3 -10 src/crypto/openssl/crypto/x509v3/v3_int.c 1.1.1.1.2.1 +66 -22 src/crypto/openssl/crypto/x509v3/v3_lib.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/crypto/x509v3/v3_pku.c 1.1.1.1.2.1 +16 -0 src/crypto/openssl/crypto/x509v3/v3_prn.c 1.1.1.1.2.1 +7 -14 src/crypto/openssl/crypto/x509v3/v3_skey.c 1.1.1.1.2.1 +14 -14 src/crypto/openssl/crypto/x509v3/v3_sxnet.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/x509v3/v3_utl.c 1.1.1.1.2.1 +6 -1 src/crypto/openssl/crypto/x509v3/v3err.c 1.1.1.1.2.1 +124 -12 src/crypto/openssl/crypto/x509v3/x509v3.h 1.1.1.1.2.1 +33 -21 src/crypto/openssl/demos/selfsign.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/demos/bio/saccept.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/demos/bio/sconnect.c 1.1.1.1.2.1 +0 -1 src/crypto/openssl/demos/ssl/cli.cpp 1.1.1.1.2.1 +5 -5 src/crypto/openssl/doc/README 1.1.1.1.2.1 +10 -1 src/crypto/openssl/doc/c-indentation.el 1.1.1.1.2.1 +61 -59 src/crypto/openssl/doc/openssl.txt 1.1.1.1.2.1 +2 -2 src/crypto/openssl/doc/ssleay.txt 1.1.1.1.2.1 +3 -2 src/crypto/openssl/rsaref/Makefile.ssl 1.2.2.1 +2 -1 src/crypto/openssl/rsaref/rsar_err.c 1.2.2.1 +8 -1 src/crypto/openssl/rsaref/rsaref.c 1.1.1.1.2.1 +25 -22 src/crypto/openssl/ssl/Makefile.ssl 1.1.1.1.2.1 +32 -1 src/crypto/openssl/ssl/bio_ssl.c 1.2.2.1 +7 -6 src/crypto/openssl/ssl/s23_clnt.c 1.2.2.1 +6 -3 src/crypto/openssl/ssl/s23_lib.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/ssl/s23_pkt.c 1.2.2.1 +96 -38 src/crypto/openssl/ssl/s23_srvr.c 1.2.2.1 +47 -26 src/crypto/openssl/ssl/s2_clnt.c 1.2.2.1 +6 -2 src/crypto/openssl/ssl/s2_enc.c 1.2.2.1 +78 -20 src/crypto/openssl/ssl/s2_lib.c 1.2.2.1 +7 -1 src/crypto/openssl/ssl/s2_meth.c 1.2.2.1 +6 -2 src/crypto/openssl/ssl/s2_pkt.c 1.2.2.1 +14 -7 src/crypto/openssl/ssl/s2_srvr.c 1.1.1.1.2.1 +142 -22 src/crypto/openssl/ssl/s3_both.c 1.1.1.1.2.1 +23 -22 src/crypto/openssl/ssl/s3_clnt.c 1.1.1.1.2.1 +7 -11 src/crypto/openssl/ssl/s3_enc.c 1.1.1.1.2.1 +333 -101 src/crypto/openssl/ssl/s3_lib.c 1.1.1.1.2.1 +457 -304 src/crypto/openssl/ssl/s3_pkt.c 1.1.1.1.2.1 +122 -65 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.1.2.1 +86 -37 src/crypto/openssl/ssl/ssl.h 1.1.1.1.2.1 +2 -2 src/crypto/openssl/ssl/ssl2.h 1.1.1.1.2.1 +31 -64 src/crypto/openssl/ssl/ssl3.h 1.1.1.1.2.1 +27 -5 src/crypto/openssl/ssl/ssl_asn1.c 1.1.1.1.2.1 +48 -12 src/crypto/openssl/ssl/ssl_cert.c 1.1.1.1.2.1 +541 -307 src/crypto/openssl/ssl/ssl_ciph.c 1.1.1.1.2.1 +18 -4 src/crypto/openssl/ssl/ssl_err.c 1.1.1.1.2.1 +146 -32 src/crypto/openssl/ssl/ssl_lib.c 1.1.1.1.2.1 +104 -48 src/crypto/openssl/ssl/ssl_locl.h 1.1.1.1.2.1 +66 -23 src/crypto/openssl/ssl/ssl_sess.c 1.1.1.1.2.1 +4 -4 src/crypto/openssl/ssl/ssl_stat.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/ssl/ssl_task.c 1.1.1.1.2.1 +6 -1 src/crypto/openssl/ssl/ssl_txt.c 1.1.1.1.2.1 +342 -148 src/crypto/openssl/ssl/ssltest.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/ssl/t1_enc.c 1.1.1.1.2.1 +9 -5 src/crypto/openssl/ssl/t1_lib.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/ssl/tls1.h 1.1.1.1.2.1 +43 -31 src/crypto/openssl/test/Makefile.ssl 1.1.1.1.2.1 +11 -3 src/crypto/openssl/test/testgen 1.1.1.1.2.1 +10 -3 src/crypto/openssl/test/testss 1.1.1.1.2.1 +83 -30 src/crypto/openssl/test/testssl 1.1.1.1.2.1 +5 -0 src/crypto/openssl/test/treq 1.1.1.1.2.1 +5 -0 src/crypto/openssl/test/trsa 1.1.1.1.2.1 +1 -1 src/crypto/openssl/util/domd 1.1.1.1.2.1 +396 -10 src/crypto/openssl/util/libeay.num 1.1.1.1.2.1 +3 -0 src/crypto/openssl/util/mk1mf.pl 1.1.1.1.2.1 +120 -19 src/crypto/openssl/util/mkdef.pl 1.1.1.1.2.1 +22 -6 src/crypto/openssl/util/mkerr.pl 1.1.1.1.2.1 +10 -0 src/crypto/openssl/util/ssleay.num 1.1.1.1.2.1 +2 -2 src/crypto/openssl/util/pl/BC-32.pl 1.1.1.1.2.1 +1 -0 src/crypto/openssl/util/pl/Mingw32.pl 1.1.1.1.2.1 +1 -1 src/crypto/openssl/util/pl/VC-32.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 1:48:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D6E2B37B424; Sun, 20 Aug 2000 01:48:50 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA08456; Sun, 20 Aug 2000 01:48:50 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008200848.BAA08456@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 20 Aug 2000 01:48:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssl FAQ src/crypto/openssl/apps CA.pl.in Makefile.save app_rand.c dhparam.c passwd.c rand.c smime.c spkac.c winrand.c src/crypto/openssl/crypto Makefile.save ebcdic.c mem_dbg.c src/crypto/openssl/crypto/asn1 Makefile.save ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/20 01:48:49 PDT Added files: (Branch: RELENG_4) crypto/openssl FAQ crypto/openssl/apps CA.pl.in Makefile.save app_rand.c dhparam.c passwd.c rand.c smime.c spkac.c winrand.c crypto/openssl/crypto Makefile.save ebcdic.c mem_dbg.c crypto/openssl/crypto/asn1 Makefile.save a_mbstr.c a_null.c a_strnid.c p8_key.c t_bitst.c t_spki.c t_x509a.c x_x509a.c crypto/openssl/crypto/bf Makefile.save crypto/openssl/crypto/bio Makefile.save crypto/openssl/crypto/bn Makefile.save bn_ctx.c divtest.c crypto/openssl/crypto/buffer Makefile.save crypto/openssl/crypto/cast Makefile.save crypto/openssl/crypto/comp Makefile.save crypto/openssl/crypto/conf Makefile.save crypto/openssl/crypto/des Makefile.save des.pod crypto/openssl/crypto/dh Makefile.save crypto/openssl/crypto/dsa Makefile.save dsa_ossl.c crypto/openssl/crypto/err Makefile.save crypto/openssl/crypto/evp Makefile.save c_allc.c c_alld.c crypto/openssl/crypto/hmac Makefile.save crypto/openssl/crypto/lhash Makefile.save crypto/openssl/crypto/md2 Makefile.save crypto/openssl/crypto/md5 Makefile.save crypto/openssl/crypto/mdc2 Makefile.save crypto/openssl/crypto/objects Makefile.save obj_dat.h crypto/openssl/crypto/pem Makefile.save crypto/openssl/crypto/pkcs12 Makefile.save p12_npas.c crypto/openssl/crypto/pkcs7 Makefile.save pk7_attr.c pk7_mime.c pk7_smime.c crypto/openssl/crypto/rand Makefile.save rand_egd.c rand_err.c crypto/openssl/crypto/rc2 Makefile.save crypto/openssl/crypto/rc4 Makefile.save crypto/openssl/crypto/rc5 Makefile.save crypto/openssl/crypto/ripemd Makefile.save crypto/openssl/crypto/rsa Makefile.save rsa_null.c rsa_test.c crypto/openssl/crypto/sha Makefile.save crypto/openssl/crypto/stack Makefile.save crypto/openssl/crypto/threads README profile.sh pthread.sh pthread2.sh purify.sh solaris.sh crypto/openssl/crypto/txt_db Makefile.save crypto/openssl/crypto/x509 Makefile.save x509_att.c x509_trs.c x509spki.c crypto/openssl/crypto/x509v3 Makefile.save ext_dat.h tabtest.c v3_info.c v3_purp.c crypto/openssl/rsaref Makefile.save crypto/openssl/shlib Makefile.hpux10-cc hpux10-cc.sh crypto/openssl/ssl Makefile.save crypto/openssl/test Makefile.save crypto/openssl/util pod2man.pl selftest.pl Log: MFC: OpenSSL 0.9.5a To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 1:56:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5577537B422; Sun, 20 Aug 2000 01:56:56 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA08890; Sun, 20 Aug 2000 01:56:56 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008200856.BAA08890@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 20 Aug 2000 01:56:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure Makefile.inc src/secure/lib/libcrypto Makefile.inc opensslconf-i386.h src/secure/lib/librsausa Makefile src/secure/usr.bin/openssl Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/20 01:56:56 PDT Modified files: (Branch: RELENG_4) secure Makefile.inc secure/lib/libcrypto Makefile.inc opensslconf-i386.h secure/lib/librsausa Makefile secure/usr.bin/openssl Makefile Log: MFC: OpenSSL 0.9.5a Revision Changes Path 1.13.2.1 +5 -1 src/secure/Makefile.inc 1.7.2.1 +27 -6 src/secure/lib/libcrypto/Makefile.inc 1.1.2.1 +34 -3 src/secure/lib/libcrypto/opensslconf-i386.h 1.2.2.1 +6 -20 src/secure/lib/librsausa/Makefile 1.11.2.1 +19 -13 src/secure/usr.bin/openssl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 2: 9:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 325DF37B422; Sun, 20 Aug 2000 02:09:48 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA11106; Sun, 20 Aug 2000 02:09:48 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008200909.CAA11106@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 20 Aug 2000 02:09:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/lib/libcrypto Makefile src/secure/lib/librsaintl Makefile src/secure/lib/libssl Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/20 02:09:48 PDT Modified files: (Branch: RELENG_4) secure/lib/libcrypto Makefile secure/lib/librsaintl Makefile secure/lib/libssl Makefile Log: MFC: OpenSSL 0.9.5a Revision Changes Path 1.15.2.2 +134 -77 src/secure/lib/libcrypto/Makefile 1.1.2.3 +6 -20 src/secure/lib/librsaintl/Makefile 1.4.2.2 +11 -27 src/secure/lib/libssl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 2:51:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A36F37B424; Sun, 20 Aug 2000 02:51:09 -0700 (PDT) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA13475; Sun, 20 Aug 2000 02:51:09 -0700 (PDT) (envelope-from markm@FreeBSD.org) Message-Id: <200008200951.CAA13475@freefall.freebsd.org> From: Mark Murray Date: Sun, 20 Aug 2000 02:51:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/perl5 perl.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG markm 2000/08/20 02:51:09 PDT Modified files: contrib/perl5 perl.h Log: Resolve conflicts. Revision Changes Path 1.6 +5 -1 src/contrib/perl5/perl.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 3: 3:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3AD2637B424; Sun, 20 Aug 2000 03:03:27 -0700 (PDT) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA14547; Sun, 20 Aug 2000 03:03:27 -0700 (PDT) (envelope-from markm@FreeBSD.org) Message-Id: <200008201003.DAA14547@freefall.freebsd.org> From: Mark Murray Date: Sun, 20 Aug 2000 03:03:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/perl Makefile.inc src/gnu/usr.bin/perl/libperl Makefile config.SH-elf.alpha config.SH-elf.i386 config.SH-threads-elf.alpha config.SH-threads-elf.i386 src/gnu/usr.bin/perl/miniperl Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG markm 2000/08/20 03:03:27 PDT Modified files: gnu/usr.bin/perl Makefile.inc gnu/usr.bin/perl/libperl Makefile config.SH-elf.alpha config.SH-elf.i386 config.SH-threads-elf.alpha config.SH-threads-elf.i386 gnu/usr.bin/perl/miniperl Makefile Log: Fixes and cleanups to the perl build; don't error out when NOCLEAN is set and directories are being (re)made; build the procname ($0) stuff, don't install miniperl. (Miniperl needs a revisit). Revision Changes Path 1.17 +3 -3 src/gnu/usr.bin/perl/Makefile.inc 1.14 +3 -3 src/gnu/usr.bin/perl/libperl/Makefile 1.20 +4 -2 src/gnu/usr.bin/perl/libperl/config.SH-elf.alpha 1.18 +4 -2 src/gnu/usr.bin/perl/libperl/config.SH-elf.i386 1.6 +4 -2 src/gnu/usr.bin/perl/libperl/config.SH-threads-elf.alpha 1.5 +4 -2 src/gnu/usr.bin/perl/libperl/config.SH-threads-elf.i386 1.16 +5 -3 src/gnu/usr.bin/perl/miniperl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 3: 6:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 40D8E37B424; Sun, 20 Aug 2000 03:06:24 -0700 (PDT) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA16110; Sun, 20 Aug 2000 03:06:24 -0700 (PDT) (envelope-from markm@FreeBSD.org) Message-Id: <200008201006.DAA16110@freefall.freebsd.org> From: Mark Murray Date: Sun, 20 Aug 2000 03:06:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.usr.dist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG markm 2000/08/20 03:06:24 PDT Modified files: etc/mtree BSD.usr.dist Log: Add missing perl directories. Revision Changes Path 1.197 +11 -1 src/etc/mtree/BSD.usr.dist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 3: 9:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 75E7537B422; Sun, 20 Aug 2000 03:09:17 -0700 (PDT) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA16274; Sun, 20 Aug 2000 03:09:17 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200008201009.DAA16274@freefall.freebsd.org> From: Wilko Bulte Date: Sun, 20 Aug 2000 03:09:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/xearth/files freebsd.committers.markers X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/08/20 03:09:17 PDT Modified files: astro/xearth/files freebsd.committers.markers Log: Put at least one of the Dutchies on the map. asmodai, where are you?? :-) Revision Changes Path 1.32 +2 -0 ports/astro/xearth/files/freebsd.committers.markers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 3:14:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C208737B424; Sun, 20 Aug 2000 03:14:19 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA16647; Sun, 20 Aug 2000 03:14:19 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200008201014.DAA16647@freefall.freebsd.org> From: Will Andrews Date: Sun, 20 Aug 2000 03:14:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/xmountains Makefile ports/graphics/xmountains/files md5 ports/graphics/xmountains/patches patch-aa ports/graphics/xmountains/pkg DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/08/20 03:14:19 PDT Modified files: graphics/xmountains Makefile graphics/xmountains/files md5 graphics/xmountains/patches patch-aa graphics/xmountains/pkg DESCR Log: Update to 2.5. Add WWW to DESCR. PR: 20653 Submitted by: Ports Fury Revision Changes Path 1.6 +6 -7 ports/graphics/xmountains/Makefile 1.2 +1 -1 ports/graphics/xmountains/files/md5 1.2 +15 -28 ports/graphics/xmountains/patches/patch-aa 1.2 +2 -0 ports/graphics/xmountains/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 3:21: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 662F037B423; Sun, 20 Aug 2000 03:21:02 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA17017; Sun, 20 Aug 2000 03:21:02 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200008201021.DAA17017@freefall.freebsd.org> From: Will Andrews Date: Sun, 20 Aug 2000 03:21:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/kcd Makefile ports/misc/kcd/files md5 ports/misc/kcd/patches patch-ac patch-ad patch-ae patch-af patch-ag patch-aa patch-ab ports/misc/kcd/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/08/20 03:21:02 PDT Modified files: misc/kcd Makefile misc/kcd/files md5 misc/kcd/pkg PLIST Added files: misc/kcd/patches patch-ac patch-ad patch-ae patch-af patch-ag Removed files: misc/kcd/patches patch-aa patch-ab Log: Update to 5.0.1. PR: 20655 Submitted by: Ports Fury Revision Changes Path 1.6 +4 -4 ports/misc/kcd/Makefile 1.3 +1 -1 ports/misc/kcd/files/md5 1.3 +1 -1 ports/misc/kcd/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 3:23:58 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.ninth-circle.org (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id BD92237B423; Sun, 20 Aug 2000 03:23:50 -0700 (PDT) Received: (from asmodai@localhost) by lucifer.ninth-circle.org (8.9.3/8.9.3) id MAA05285; Sun, 20 Aug 2000 12:23:49 +0200 (CEST) (envelope-from asmodai) Date: Sun, 20 Aug 2000 12:23:49 +0200 From: Jeroen Ruigrok van der Werven To: Wilko Bulte Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/astro/xearth/files freebsd.committers.markers Message-ID: <20000820122349.A5222@lucifer.bart.nl> References: <200008201009.DAA16274@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008201009.DAA16274@freefall.freebsd.org>; from wilko@FreeBSD.org on Sun, Aug 20, 2000 at 03:09:17AM -0700 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20000820 12:10], Wilko Bulte (wilko@FreeBSD.org) wrote: > Log: > Put at least one of the Dutchies on the map. asmodai, where are you?? :-) Hahaha. I'd tell you, but then I'd have to kill you. ;) -- Jeroen Ruigrok van der Werven Network- and systemadministrator VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl Here is, I believe, the fundamental rule of all being: Life is not at all like this. It is completely different... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 3:37:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00D9A37B43E; Sun, 20 Aug 2000 03:37:55 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA17976; Sun, 20 Aug 2000 03:37:55 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200008201037.DAA17976@freefall.freebsd.org> From: Will Andrews Date: Sun, 20 Aug 2000 03:37:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases Makefile ports/databases/gigabase Makefile ports/databases/gigabase/files md5 ports/databases/gigabase/patches patch-aa patch-ab ports/databases/gigabase/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/08/20 03:37:54 PDT Modified files: databases Makefile Added files: databases/gigabase Makefile databases/gigabase/files md5 databases/gigabase/patches patch-aa patch-ab databases/gigabase/pkg COMMENT DESCR PLIST Log: Add gigabase 2.14, an object-relational database management system. PR: 20661 Submitted by: Sergey A. Osokin Revision Changes Path 1.69 +2 -1 ports/databases/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 3:38:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D1E637B449; Sun, 20 Aug 2000 03:38:04 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA18019; Sun, 20 Aug 2000 03:38:04 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200008201038.DAA18019@freefall.freebsd.org> From: Will Andrews Date: Sun, 20 Aug 2000 03:38:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/08/20 03:38:04 PDT Modified files: . modules Log: gigabase --> ports/databases/gigabase Revision Changes Path 1.1577 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 4:40:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 94C0937B423; Sun, 20 Aug 2000 04:40:14 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA24710; Sun, 20 Aug 2000 04:40:14 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200008201140.EAA24710@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 20 Aug 2000 04:40:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/grepmail Makefile ports/mail/grepmail/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/08/20 04:40:14 PDT Modified files: mail/grepmail Makefile mail/grepmail/files md5 Log: Update port to 4.42 Revision Changes Path 1.14 +2 -2 ports/mail/grepmail/Makefile 1.11 +1 -1 ports/mail/grepmail/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 4:46:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C944537B43E; Sun, 20 Aug 2000 04:46:39 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA24995; Sun, 20 Aug 2000 04:46:39 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200008201146.EAA24995@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 20 Aug 2000 04:46:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_subr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/08/20 04:46:39 PDT Modified files: sys/kern vfs_subr.c Log: Fix typo in last commit. Revision Changes Path 1.269 +2 -3 src/sys/kern/vfs_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 6:16:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B18137B423; Sun, 20 Aug 2000 06:16:45 -0700 (PDT) Received: (from mpp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA31825; Sun, 20 Aug 2000 06:16:45 -0700 (PDT) (envelope-from mpp@FreeBSD.org) Message-Id: <200008201316.GAA31825@freefall.freebsd.org> From: Mike Pritchard Date: Sun, 20 Aug 2000 06:16:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/doc/papers Makefile src/share/doc/papers/jail Makefile future.ms implementation.ms jail01.eps jail01.fig mgt.ms paper.ms X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mpp 2000/08/20 06:16:45 PDT Modified files: (Branch: RELENG_4) share/doc/papers Makefile Added files: (Branch: RELENG_4) share/doc/papers/jail Makefile future.ms implementation.ms jail01.eps jail01.fig mgt.ms paper.ms Log: MFC: add the jail paper PR: doc/20728 Requested-by: Yusuf Goolamabbas Revision Changes Path 1.7.2.1 +2 -2 src/share/doc/papers/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 7:50: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 79E2E37B422; Sun, 20 Aug 2000 07:49:57 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA99298; Sun, 20 Aug 2000 07:49:57 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008201449.HAA99298@freefall.freebsd.org> From: Kevin Lo Date: Sun, 20 Aug 2000 07:49:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/benchmarks/ubench Makefile ports/benchmarks/ubench/files md5 ports/benchmarks/ubench/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/20 07:49:57 PDT Modified files: benchmarks/ubench Makefile benchmarks/ubench/files md5 benchmarks/ubench/patches patch-aa Log: Update to version 0.32 PR: 20703 Submitted by: Maintainer Revision Changes Path 1.3 +2 -2 ports/benchmarks/ubench/Makefile 1.2 +1 -1 ports/benchmarks/ubench/files/md5 1.2 +5 -7 ports/benchmarks/ubench/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 8:30:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 31C6E37B422; Sun, 20 Aug 2000 08:30:17 -0700 (PDT) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA04033; Sun, 20 Aug 2000 08:30:17 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Message-Id: <200008201530.IAA04033@freefall.freebsd.org> From: Nick Hibma Date: Sun, 20 Aug 2000 08:30:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb umodem.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG n_hibma 2000/08/20 08:30:16 PDT Modified files: sys/dev/usb umodem.c Log: Unbreak LINT. Revision Changes Path 1.23 +2 -2 src/sys/dev/usb/umodem.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 9:11: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from calcaphon.demon.co.uk (calcaphon.demon.co.uk [193.237.19.5]) by hub.freebsd.org (Postfix) with ESMTP id 6F9E537B422; Sun, 20 Aug 2000 09:10:18 -0700 (PDT) Received: from henny.webweaving.org (henny.qubesoft.com [192.168.1.5]) by calcaphon.demon.co.uk (8.9.3/8.9.1) with ESMTP id RAA43718; Sun, 20 Aug 2000 17:09:52 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Received: from localhost (localhost [127.0.0.1]) by henny.webweaving.org (8.9.3/8.9.3) with ESMTP id RAA44284; Sun, 20 Aug 2000 17:06:27 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Date: Sun, 20 Aug 2000 17:06:27 +0100 (BST) From: Nick Hibma X-Sender: n_hibma@henny.webweaving.org Reply-To: Nick Hibma To: Warner Losh Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/pcic i82365.c In-Reply-To: <200008190501.WAA77674@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Are you sure this does not hide some more obscure bug? device_delete_child iterates through the device's children first with device_delete_child(child, grandchild), detaches the device and then actually deletes the device. The change you have made below simply iterates through all the children and detaches them, after which it calls delete on all of them. The only real difference with the old version is that any child being deleted was detached and then deleted before its siblings were detached. I have a gut feeling that you are looking at a problem with interdependencies between the children during detach and not a problem during detach. Nick > imp 2000/08/18 22:01:08 PDT > > Modified files: > sys/dev/pcic i82365.c > Log: > Call bus_generic_detach on pcic before deleting the children. This > has the side effect of detaching the children before I delete them. > When I put the last commits in a loop for loop it died after 5 or so > iterations. After this change, I lasted 50 before I stopped the test. > > Revision Changes Path > 1.24 +5 -2 src/sys/dev/pcic/i82365.c > > -- Qube Software, Ltd. Private: n_hibma@qubesoft.com n_hibma@webweaving.org n_hibma@freebsd.org http://www.qubesoft.com/ http://www.etla.net/~n_hibma/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 9:17: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 018C037B42C; Sun, 20 Aug 2000 09:16:58 -0700 (PDT) Received: (from ume@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA09546; Sun, 20 Aug 2000 09:16:57 -0700 (PDT) (envelope-from ume@FreeBSD.org) Message-Id: <200008201616.JAA09546@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Sun, 20 Aug 2000 09:16:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard cardinfo.h pccard.c src/usr.sbin/pccard/pccardd server.c Makefile cardd.c cardd.h pccardd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume 2000/08/20 09:16:57 PDT Modified files: sys/pccard cardinfo.h pccard.c usr.sbin/pccard/pccardd Makefile cardd.c cardd.h pccardd.c Added files: usr.sbin/pccard/pccardd server.c Log: Add UNIX domain socket feature to pccardd. This makes pccard related PAO3/ports such as gxcardmon work. Reviewed by: imp Obtained from: PAO3 Revision Changes Path 1.17 +2 -2 src/sys/pccard/cardinfo.h 1.109 +6 -4 src/sys/pccard/pccard.c 1.5 +2 -1 src/usr.sbin/pccard/pccardd/Makefile 1.55 +7 -2 src/usr.sbin/pccard/pccardd/cardd.c 1.25 +10 -2 src/usr.sbin/pccard/pccardd/cardd.h 1.11 +62 -9 src/usr.sbin/pccard/pccardd/pccardd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 9:20:22 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 0E87B37B42C; Sun, 20 Aug 2000 09:20:18 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id KAA49309; Sun, 20 Aug 2000 10:20:16 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id KAA32736; Sun, 20 Aug 2000 10:19:16 -0600 (MDT) Message-Id: <200008201619.KAA32736@harmony.village.org> To: Nick Hibma Subject: Re: cvs commit: src/sys/dev/pcic i82365.c Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Sun, 20 Aug 2000 17:06:27 BST." References: Date: Sun, 20 Aug 2000 10:19:16 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message Nick Hibma writes: : Are you sure this does not hide some more obscure bug? No. I'm not. : I have a gut feeling that you are looking at a problem with : interdependencies between the children during detach and not a problem : during detach. That may be. For now it stabilizes things so I can get on to other issues. I have a note to look at it more closely when I get to the next stage and have the sn driver probing and attaching. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 9:39:17 2000 Delivered-To: cvs-all@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id CF44437B440; Sun, 20 Aug 2000 09:39:11 -0700 (PDT) Received: from strontium.scientia.demon.co.uk ([192.168.91.36] ident=root) by scientia.demon.co.uk with esmtp (Exim 3.16 #1) id 13QXsA-000DWO-00; Sun, 20 Aug 2000 17:22:58 +0100 Received: (from ben@localhost) by strontium.scientia.demon.co.uk (8.9.3/8.9.3) id RAA52409; Sun, 20 Aug 2000 17:22:58 +0100 (BST) (envelope-from ben) Date: Sun, 20 Aug 2000 17:22:58 +0100 From: Ben Smithurst To: Rajesh Vaidheeswarran Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Message-ID: <20000820172258.S58928@strontium.scientia.demon.co.uk> References: <200008200355.UAA79612@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008200355.UAA79612@freefall.freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Rajesh Vaidheeswarran wrote: > Didn't quite know what the numbers in > ports/astro/xearth/files/freebsd.committers.markers meant. So, left > that alone :-) Latitude and longitude, in degrees. There should be a website which can tell you this based on your postcode/zip-code/whatever-is-appropriate-for-your-country, but I don't know of one except www.streetmap.co.uk which is UK only. You've got to love phk's entry, too. Most people are happy with 1 or 2 decimal places, not him. :-) 55.411822290, 11.336162915, "phk" # Slagelse, Denmark -- Ben Smithurst / ben@FreeBSD.org / PGP: 0x99392F7D FreeBSD Documentation Project / To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 10:15:41 2000 Delivered-To: cvs-all@freebsd.org Received: from grimreaper.grondar.za (grimreaper.grondar.za [196.7.18.138]) by hub.freebsd.org (Postfix) with ESMTP id 5E78937B43E; Sun, 20 Aug 2000 10:15:34 -0700 (PDT) Received: from grimreaper.grondar.za (mark@localhost [127.0.0.1]) by grimreaper.grondar.za (8.11.0/8.11.0) with ESMTP id e7KHGBG08462; Sun, 20 Aug 2000 19:16:12 +0200 (SAST) (envelope-from mark@grimreaper.grondar.za) Message-Id: <200008201716.e7KHGBG08462@grimreaper.grondar.za> To: Ben Smithurst Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml References: <20000820172258.S58928@strontium.scientia.demon.co.uk> In-Reply-To: <20000820172258.S58928@strontium.scientia.demon.co.uk> ; from Ben Smithurst "Sun, 20 Aug 2000 17:22:58 +0100." Date: Sun, 20 Aug 2000 19:16:10 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > You've got to love phk's entry, too. Most people are happy with 1 or 2 > decimal places, not him. :-) > > 55.411822290, 11.336162915, "phk" # Slagelse, Denmark Ye gods! That is accurate (within an order of magnitute) to a millimeter!! M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 10:18:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7ABE537B424; Sun, 20 Aug 2000 10:18:45 -0700 (PDT) Received: (from chris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA15506; Sun, 20 Aug 2000 10:18:45 -0700 (PDT) (envelope-from chris@FreeBSD.org) Message-Id: <200008201718.KAA15506@freefall.freebsd.org> From: Chris Costello Date: Sun, 20 Aug 2000 10:18:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/basics chapter.sgml doc/en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml doc/en_US.ISO_8859-1/books/handbook/pgpkeys chapter.sgml doc/en_US.ISO_8859-1/books/handbook/policies chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG chris 2000/08/20 10:18:43 PDT Modified files: en_US.ISO_8859-1/books/handbook/basics chapter.sgml en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml en_US.ISO_8859-1/books/handbook/pgpkeys chapter.sgml en_US.ISO_8859-1/books/handbook/policies chapter.sgml Log: Properly capitalize section tags. Revision Changes Path 1.22 +2 -2 doc/en_US.ISO_8859-1/books/handbook/basics/chapter.sgml 1.54 +2 -2 doc/en_US.ISO_8859-1/books/handbook/cutting-edge/chapter.sgml 1.41 +3 -3 doc/en_US.ISO_8859-1/books/handbook/pgpkeys/chapter.sgml 1.18 +2 -2 doc/en_US.ISO_8859-1/books/handbook/policies/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 10:32:45 2000 Delivered-To: cvs-all@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 67A9B37B443; Sun, 20 Aug 2000 10:32:39 -0700 (PDT) Received: from [212.238.54.101] (helo=freebie.demon.nl) by post.mail.nl.demon.net with smtp (Exim 3.14 #2) id 13QYxa-000158-00; Sun, 20 Aug 2000 17:32:38 +0000 Received: (from wkb@localhost) by freebie.demon.nl (8.9.3/8.9.3) id TAA03689; Sun, 20 Aug 2000 19:32:40 +0200 (CEST) (envelope-from wkb) Date: Sun, 20 Aug 2000 19:32:40 +0200 From: Wilko Bulte <wkb@freebie.demon.nl> To: Mark Murray <mark@grondar.za> Cc: Ben Smithurst <ben@freebsd.org>, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Message-ID: <20000820193240.A3675@freebie.demon.nl> References: <20000820172258.S58928@strontium.scientia.demon.co.uk> <200008201716.e7KHGBG08462@grimreaper.grondar.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008201716.e7KHGBG08462@grimreaper.grondar.za>; from mark@grondar.za on Sun, Aug 20, 2000 at 07:16:10PM +0200 X-OS: FreeBSD 4.1-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Aug 20, 2000 at 07:16:10PM +0200, Mark Murray wrote: > > You've got to love phk's entry, too. Most people are happy with 1 or 2 > > decimal places, not him. :-) > > > > 55.411822290, 11.336162915, "phk" # Slagelse, Denmark > > Ye gods! > > That is accurate (within an order of magnitute) to a millimeter!! Which only fits someone whom you should never ask what the *exact* time is ;-) -- Wilko Bulte wilko@freebsd.org Arnhem, the Netherlands To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 10:52:13 2000 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (beachchick.freebsd.dk [212.242.32.208]) by hub.freebsd.org (Postfix) with ESMTP id 41C9C37B43F; Sun, 20 Aug 2000 10:52:09 -0700 (PDT) Received: from critter (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id TAA89533; Sun, 20 Aug 2000 19:51:47 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Mark Murray <mark@grondar.za> Cc: Ben Smithurst <ben@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml In-Reply-To: Your message of "Sun, 20 Aug 2000 19:16:10 +0200." <200008201716.e7KHGBG08462@grimreaper.grondar.za> Date: Sun, 20 Aug 2000 19:51:47 +0200 Message-ID: <89531.966793907@critter> From: Poul-Henning Kamp <phk@critter.freebsd.dk> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200008201716.e7KHGBG08462@grimreaper.grondar.za>, Mark Murray write s: >> You've got to love phk's entry, too. Most people are happy with 1 or 2 >> decimal places, not him. :-) >> >> 55.411822290, 11.336162915, "phk" # Slagelse, Denmark > >Ye gods! > >That is accurate (within an order of magnitute) to a millimeter!! yes :-) -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 10:58:31 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id E686F37B422; Sun, 20 Aug 2000 10:58:26 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id LAA49591; Sun, 20 Aug 2000 11:58:25 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id LAA33298; Sun, 20 Aug 2000 11:57:25 -0600 (MDT) Message-Id: <200008201757.LAA33298@harmony.village.org> To: Ben Smithurst <ben@FreeBSD.org> Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Cc: Rajesh Vaidheeswarran <rv@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Sun, 20 Aug 2000 17:22:58 BST." <20000820172258.S58928@strontium.scientia.demon.co.uk> References: <20000820172258.S58928@strontium.scientia.demon.co.uk> <200008200355.UAA79612@freefall.freebsd.org> Date: Sun, 20 Aug 2000 11:57:25 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000820172258.S58928@strontium.scientia.demon.co.uk> Ben Smithurst writes: : 55.411822290, 11.336162915, "phk" # Slagelse, Denmark Hmmmm, I think we have the antennas on the building at Timing Solutions to one more significant digit than this, so I'll have to pick one of the GPS antennas and update my (and Steve's) entries. Wouldn't want to be outdone by a Dane :-) Don't ask us what time it is either, we might have to tell you. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 11: 5:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freesbee.wheel.dk (freesbee.wheel.dk [193.162.159.97]) by hub.freebsd.org (Postfix) with ESMTP id E09AA37B422; Sun, 20 Aug 2000 11:05:06 -0700 (PDT) Received: by freesbee.wheel.dk (Postfix, from userid 1001) id 9B6023E47; Sun, 20 Aug 2000 20:05:05 +0200 (CEST) Date: Sun, 20 Aug 2000 20:05:05 +0200 From: Jesper Skriver <jesper@skriver.dk> To: Poul-Henning Kamp <phk@critter.freebsd.dk> Cc: Mark Murray <mark@grondar.za>, Ben Smithurst <ben@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Message-ID: <20000820200505.B52315@skriver.dk> References: <200008201716.e7KHGBG08462@grimreaper.grondar.za> <89531.966793907@critter> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <89531.966793907@critter>; from phk@critter.freebsd.dk on Sun, Aug 20, 2000 at 07:51:47PM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Aug 20, 2000 at 07:51:47PM +0200, Poul-Henning Kamp wrote: > In message <200008201716.e7KHGBG08462@grimreaper.grondar.za>, Mark Murray write > s: > >> You've got to love phk's entry, too. Most people are happy with 1 or 2 > >> decimal places, not him. :-) > >> > >> 55.411822290, 11.336162915, "phk" # Slagelse, Denmark > > > >Ye gods! > > > >That is accurate (within an order of magnitute) to a millimeter!! > > yes :-) It must be hard, to do real work without moving ;-) /Jesper -- Jesper Skriver, jesper(at)skriver(dot)dk - CCIE #5456 Work: Network manager @ AS3292 (Tele Danmark DataNetworks) Private: Geek @ AS2109 (A much smaller network ;-) One Unix to rule them all, One Resolver to find them, One IP to bring them all and in the zone to bind them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 11:12:33 2000 Delivered-To: cvs-all@freebsd.org Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 441A537B43F; Sun, 20 Aug 2000 11:12:27 -0700 (PDT) X-Envelope-Sender-Is: ust@cert.siemens.de (at relayer david.siemens.de) Received: from mail3.siemens.de (mail3.siemens.de [139.25.208.14]) by david.siemens.de (8.10.1/8.10.1) with ESMTP id e7KICQU05327; Sun, 20 Aug 2000 20:12:26 +0200 (MET DST) Received: from mars.cert.siemens.de (ust.mchp.siemens.de [139.23.201.17]) by mail3.siemens.de (8.11.0/8.11.0) with ESMTP id e7KICPH2381342; Sun, 20 Aug 2000 20:12:25 +0200 (MEST) Received: from alaska.cert.siemens.de (reims.mchp.siemens.de [139.23.202.134]) by mars.cert.siemens.de (8.11.0/8.11.0/Siemens CERT [ $Revision: 1.8 ]) with ESMTP id e7KICPq21424; Sun, 20 Aug 2000 20:12:25 +0200 (CEST) Received: (from ust@localhost) by alaska.cert.siemens.de (8.11.0/8.11.0/alaska [ $Revision: 1.4 ]) id e7KICP240479; Sun, 20 Aug 2000 18:12:25 GMT Date: Sun, 20 Aug 2000 20:12:25 +0200 From: Udo Schweigert <ust@cert.siemens.de> To: Kris Kennaway <kris@FreeBSD.ORG> Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/secure/lib/libcrypto Makefile src/secure/lib/librsaintl Makefile src/secure/lib/libssl Makefile Message-ID: <20000820201225.A40380@alaska.cert.siemens.de> Mail-Followup-To: Kris Kennaway <kris@FreeBSD.ORG>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200008200909.CAA11106@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008200909.CAA11106@freefall.freebsd.org>; from kris@FreeBSD.ORG on Sun, Aug 20, 2000 at 02:09:48AM -0700 X-Operating-System: FreeBSD 4.1-STABLE Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Aug 20, 2000 at 02:09:48 -0700, Kris Kennaway wrote: > kris 2000/08/20 02:09:48 PDT > > Modified files: (Branch: RELENG_4) > secure/lib/libcrypto Makefile > secure/lib/librsaintl Makefile > secure/lib/libssl Makefile > Log: > MFC: OpenSSL 0.9.5a > This broke "make world" for me: cc -O -pipe -DTERMIOS -DANSI_SOURCE -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/usr/obj/usr/src/secure/lib/libcrypto -DNO_IDEA -DL_ENDIAN -DNO_IDEA -c /usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp/encode.c -o encode.o /usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp/encode.c:189: conflicting types for `EVP_EncodeBlock' /usr/include/openssl/evp.h:520: previous declaration of `EVP_EncodeBlock' /usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp/encode.c:341: conflicting types for `EVP_DecodeBlock' /usr/include/openssl/evp.h:528: previous declaration of `EVP_DecodeBlock' *** Error code 1 Stop in /usr/src/secure/lib/libcrypto. After a # cp /usr/src/crypto/openssl/crypto/evp/evp.h /usr/include/openssl/evp.h it worked again. Regards, -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 ZT IK 3, Siemens CERT | Fax : +49 89 636 41166 D-81730 Muenchen / Germany | email : ust@cert.siemens.de PGP-2/5 fingerprint | D8 A5 DF 34 EC 87 E8 C6 E2 26 C4 D0 EE 80 36 B2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 11:29:11 2000 Delivered-To: cvs-all@freebsd.org Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131]) by hub.freebsd.org (Postfix) with ESMTP id 793E137B424; Sun, 20 Aug 2000 11:29:06 -0700 (PDT) X-Envelope-Sender-Is: ust@cert.siemens.de (at relayer goliath.siemens.de) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by goliath.siemens.de (8.10.1/8.10.1) with ESMTP id e7KIT5c13985; Sun, 20 Aug 2000 20:29:05 +0200 (MET DST) Received: from mars.cert.siemens.de (ust.mchp.siemens.de [139.23.201.17]) by mail1.siemens.de (8.10.1/8.10.1) with ESMTP id e7KIT4c03678; Sun, 20 Aug 2000 20:29:04 +0200 (MET DST) Received: from alaska.cert.siemens.de (reims.mchp.siemens.de [139.23.202.134]) by mars.cert.siemens.de (8.11.0/8.11.0/Siemens CERT [ $Revision: 1.8 ]) with ESMTP id e7KIT4q21485; Sun, 20 Aug 2000 20:29:04 +0200 (CEST) Received: (from ust@localhost) by alaska.cert.siemens.de (8.11.0/8.11.0/alaska [ $Revision: 1.4 ]) id e7KIT4d40680; Sun, 20 Aug 2000 18:29:04 GMT Date: Sun, 20 Aug 2000 20:29:04 +0200 From: Udo Schweigert <ust@cert.siemens.de> To: Kris Kennaway <kris@FreeBSD.ORG> Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/secure/lib/libcrypto Makefile src/secure/lib/librsaintl Makefile src/secure/lib/libssl Makefile Message-ID: <20000820202904.A40559@alaska.cert.siemens.de> Mail-Followup-To: Kris Kennaway <kris@FreeBSD.ORG>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200008200909.CAA11106@freefall.freebsd.org> <20000820201225.A40380@alaska.cert.siemens.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000820201225.A40380@alaska.cert.siemens.de>; from ust@cert.siemens.de on Sun, Aug 20, 2000 at 08:12:25PM +0200 X-Operating-System: FreeBSD 4.1-STABLE Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Aug 20, 2000 at 20:12:25 +0200, Udo Schweigert wrote: > On Sun, Aug 20, 2000 at 02:09:48 -0700, Kris Kennaway wrote: Sorry for replying to myself. > After a > > # cp /usr/src/crypto/openssl/crypto/evp/evp.h /usr/include/openssl/evp.h > > it worked again. > The patch avoiding this is: --- Makefile.orig Sun Aug 20 19:46:29 2000 +++ Makefile Sun Aug 20 20:15:45 2000 @@ -183,7 +183,7 @@ pem/pem2.h pkcs12/pkcs12.h pkcs7/pkcs7.h rand/rand.h rc2/rc2.h \ rc4/rc4.h rc5/rc5.h ripemd/ripemd.h rsa/rsa.h stack/safestack.h \ sha/sha.h stack/stack.h tmdiff.h txt_db/txt_db.h x509/x509.h \ - x509/x509_vfy.h x509v3/x509v3.h + x509/x509_vfy.h x509v3/x509v3.h evp/evp.h .if defined(MAKE_IDEA) && ${MAKE_IDEA} == YES HDRS+= idea/idea.h Regards -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 ZT IK 3, Siemens CERT | Fax : +49 89 636 41166 D-81730 Muenchen / Germany | email : ust@cert.siemens.de PGP-2/5 fingerprint | D8 A5 DF 34 EC 87 E8 C6 E2 26 C4 D0 EE 80 36 B2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 12:37:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AA8CB37B423; Sun, 20 Aug 2000 12:37:38 -0700 (PDT) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA29885; Sun, 20 Aug 2000 12:37:38 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200008201937.MAA29885@freefall.freebsd.org> From: SADA Kenji <sada@FreeBSD.org> Date: Sun, 20 Aug 2000 12:37:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/netscape47-communicator Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/08/20 12:37:38 PDT Modified files: www/netscape47-communicator Makefile Log: Add more MASTER_SITES entries. PR: ports/20720 Submitted by: Trevor Johnson <trevor@jpj.net> Revision Changes Path 1.72 +28 -8 ports/www/netscape47-communicator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 12:47:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1133D37B43C; Sun, 20 Aug 2000 12:47:29 -0700 (PDT) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA30767; Sun, 20 Aug 2000 12:47:29 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200008201947.MAA30767@freefall.freebsd.org> From: SADA Kenji <sada@FreeBSD.org> Date: Sun, 20 Aug 2000 12:47:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/mv mv.c X-FreeBSD-CVS-Branch: RELENG_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/08/20 12:47:28 PDT Modified files: (Branch: RELENG_3) bin/mv mv.c Log: MFC: 1.26, 1.27 Fix inhelitance of file flags when files are moved across devices. Revision Changes Path 1.22.2.4 +12 -1 src/bin/mv/mv.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 13:22:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F02F637B422; Sun, 20 Aug 2000 13:22:34 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA34897; Sun, 20 Aug 2000 13:22:34 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200008202022.NAA34897@freefall.freebsd.org> From: "Andrey A. Chernov" <ache@FreeBSD.org> Date: Sun, 20 Aug 2000 13:22:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/lynx-current Makefile ports/www/lynx-current/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/08/20 13:22:34 PDT Modified files: www/lynx-current Makefile www/lynx-current/files md5 Log: Upgrade to dev7 Revision Changes Path 1.119 +3 -3 ports/www/lynx-current/Makefile 1.152 +1 -1 ports/www/lynx-current/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 13:23:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0AB7737B43F; Sun, 20 Aug 2000 13:23:28 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id NAA35032; Sun, 20 Aug 2000 13:23:28 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Sun, 20 Aug 2000 13:23:27 -0700 (PDT) From: Kris Kennaway <kris@FreeBSD.org> To: Udo Schweigert <ust@cert.siemens.de> Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/secure/lib/libcrypto Makefile src/secure/lib/librsaintl Makefile src/secure/lib/libssl Makefile In-Reply-To: <20000820202904.A40559@alaska.cert.siemens.de> Message-ID: <Pine.BSF.4.21.0008201321210.24903-100000@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 20 Aug 2000, Udo Schweigert wrote: > The patch avoiding this is: > > --- Makefile.orig Sun Aug 20 19:46:29 2000 > +++ Makefile Sun Aug 20 20:15:45 2000 > @@ -183,7 +183,7 @@ > pem/pem2.h pkcs12/pkcs12.h pkcs7/pkcs7.h rand/rand.h rc2/rc2.h \ > rc4/rc4.h rc5/rc5.h ripemd/ripemd.h rsa/rsa.h stack/safestack.h \ > sha/sha.h stack/stack.h tmdiff.h txt_db/txt_db.h x509/x509.h \ > - x509/x509_vfy.h x509v3/x509v3.h > + x509/x509_vfy.h x509v3/x509v3.h evp/evp.h > > .if defined(MAKE_IDEA) && ${MAKE_IDEA} == YES > HDRS+= idea/idea.h Well, that patch is wrong because: .if !defined(MAKE_IDEA) || ${MAKE_IDEA} != YES sed '/^#ifndef NO_IDEA$$/,/^#endif$$/d' ${LCRYPTO_SRC}/evp/evp.h > \ ${.OBJDIR}/evp.h.new ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.OBJDIR}/evp.h.new ${DESTDIR}/usr/include/openssl/evp.h .else ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ ${LCRYPTO_SRC}/evp/evp.h ${DESTDIR}/usr/include/openssl/evp.h .endif Were you trying to install with MAKE_IDEA or without? Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe <forsythe@alum.mit.edu> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 13:31:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1590837B43C; Sun, 20 Aug 2000 13:31:44 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35860; Sun, 20 Aug 2000 13:31:44 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008202031.NAA35860@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sun, 20 Aug 2000 13:31:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/gnucash Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/20 13:31:44 PDT Modified files: deskutils/gnucash Makefile Log: Ade decided he would be a willing victim and become the maintainer of this. Revision Changes Path 1.19 +2 -2 ports/deskutils/gnucash/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 13:34:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B088937B446; Sun, 20 Aug 2000 13:34:40 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA36060; Sun, 20 Aug 2000 13:34:40 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008202034.NAA36060@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Sun, 20 Aug 2000 13:34:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/ruby/patches patch-cgi-lib.rb X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/20 13:34:40 PDT Added files: lang/ruby/patches patch-cgi-lib.rb Log: Patch cgi-lib.rb to follow the disuse of Class::module_functions. Approved by: MAINTAINER To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 13:37: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from scribe.cc.purdue.edu (scribe.cc.purdue.edu [128.210.11.6]) by hub.freebsd.org (Postfix) with ESMTP id 3BF7337B424; Sun, 20 Aug 2000 13:31:57 -0700 (PDT) Received: from [128.211.209.78] by scribe.cc.purdue.edu with ESMTP; Sat, 19 Aug 2000 12:27:37 -0500 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 17A611931; Sat, 19 Aug 2000 12:22:50 -0500 (EST) Date: Sat, 19 Aug 2000 12:22:50 -0500 From: Will Andrews <andrews@technologist.com> To: Alexander Langer <alex@big.endian.de> Cc: Will Andrews <will@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/Tools/scripts addport Message-Id: <20000819122250.T445@argon.gryphonsoft.com> Mail-Followup-To: Alexander Langer <alex@big.endian.de>, Will Andrews <will@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200008190808.BAA00209@freefall.freebsd.org> <20000819142019.A4886@cichlids.cichlids.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000819142019.A4886@cichlids.cichlids.com>; from alex@big.endian.de on Sat, Aug 19, 2000 at 02:20:19PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 19, 2000 at 02:20:19PM +0200, Alexander Langer wrote: > Is that the version which supports tab-indenting in the modules file? Not yet, sorry. -- Will Andrews <andrewsw@purdue.edu> <will@FreeBSD.org> GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 13:39: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from grimreaper.grondar.za (grimreaper.grondar.za [196.7.18.138]) by hub.freebsd.org (Postfix) with ESMTP id 2FE1537B423; Sun, 20 Aug 2000 13:39:01 -0700 (PDT) Received: from grimreaper.grondar.za (mark@localhost [127.0.0.1]) by grimreaper.grondar.za (8.11.0/8.11.0) with ESMTP id e7KKaNG21382; Sun, 20 Aug 2000 22:36:24 +0200 (SAST) (envelope-from mark@grimreaper.grondar.za) Message-Id: <200008202036.e7KKaNG21382@grimreaper.grondar.za> To: Poul-Henning Kamp <phk@critter.freebsd.dk> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml References: <89531.966793907@critter> In-Reply-To: <89531.966793907@critter> ; from Poul-Henning Kamp <phk@critter.freebsd.dk> "Sun, 20 Aug 2000 19:51:47 +0200." Date: Sun, 20 Aug 2000 22:36:23 +0200 From: Mark Murray <mark@grondar.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > >> 55.411822290, 11.336162915, "phk" # Slagelse, Denmark > > > >Ye gods! > > > >That is accurate (within an order of magnitute) to a millimeter!! > > yes :-) OK, this begs the questions; which square millimetre did you choose, why, and how? :-) M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 13:41:30 2000 Delivered-To: cvs-all@freebsd.org Received: from gatekeeper.whistle.com (gatekeeper.whistle.com [207.76.204.2]) by hub.freebsd.org (Postfix) with ESMTP id DEB2637B424; Sun, 20 Aug 2000 13:41:26 -0700 (PDT) Received: from bubba.whistle.com (bubba.whistle.com [207.76.205.7]) by gatekeeper.whistle.com (8.9.3/8.9.3) with ESMTP id NAA05467; Sun, 20 Aug 2000 13:36:04 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.3/8.9.3) id NAA51971; Sun, 20 Aug 2000 13:36:04 -0700 (PDT) (envelope-from archie) From: Archie Cobbs <archie@whistle.com> Message-Id: <200008202036.NAA51971@bubba.whistle.com> Subject: Re: cvs commit: src/usr.sbin/ppp README.changes mp.c In-Reply-To: <200008190941.e7J9fSF94932@hak.lan.Awfulhak.org> from Brian Somers at "Aug 19, 2000 10:41:28 am" To: Brian Somers <brian@Awfulhak.org> Date: Sun, 20 Aug 2000 13:36:04 -0700 (PDT) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL68 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Brian Somers writes: > > > As ppp currently only does IP as an NCP, and IP packets are allowed > > > to be delivered out-of-order, I think this is ok. > > > > If you're doing Van Jacobson header compression, for example, > > with connection ID compression, out of order packets can really > > screw things up. > > True, but as ppp will only ever generate one out-of-order packet > under normal circumstances, this just means that if the two packets > in question are from the same tcp stream, the first will get dropped. > > Perhaps it would be better if PROTO_IP packets were only sent when > there's only one link open *AND* no other links are in any sort of > trying-to-open state ? I'm sure it's fine the way it is.. in practice a small packet reordering window is probably not going to lead to big problems or anything. It just falls into that cateogory of things that have the potential to lead to really mysterious, hard-to-debug behavior later on, and it's good to at least be aware of that possibility. For example, if in the future someone implements a new network protocol that is particularly sensitive to it. -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 13:44:34 2000 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (beachchick.freebsd.dk [212.242.32.208]) by hub.freebsd.org (Postfix) with ESMTP id 81D4E37B42C; Sun, 20 Aug 2000 13:44:28 -0700 (PDT) Received: from critter (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id WAA90117; Sun, 20 Aug 2000 22:44:16 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Mark Murray <mark@grondar.za> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml In-Reply-To: Your message of "Sun, 20 Aug 2000 22:36:23 +0200." <200008202036.e7KKaNG21382@grimreaper.grondar.za> Date: Sun, 20 Aug 2000 22:44:16 +0200 Message-ID: <90115.966804256@critter> From: Poul-Henning Kamp <phk@critter.freebsd.dk> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200008202036.e7KKaNG21382@grimreaper.grondar.za>, Mark Murray write s: >> >> 55.411822290, 11.336162915, "phk" # Slagelse, Denmark >> > >> >Ye gods! >> > >> >That is accurate (within an order of magnitute) to a millimeter!! >> >> yes :-) > >OK, this begs the questions; which square millimetre did you >choose, why, and how? :-) It's actually the location of the phase center of the GPS antenna mounted on a pole behind my lab, so on average it's about 20 m off in the horizontal plane and about 5 m wrong in the vertical plane, but since we don't have heights in xearth that hardly matters :-) -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 13:47:19 2000 Delivered-To: cvs-all@freebsd.org Received: from scribe.cc.purdue.edu (scribe.cc.purdue.edu [128.210.11.6]) by hub.freebsd.org (Postfix) with ESMTP id 4D10137B42C; Sun, 20 Aug 2000 13:47:15 -0700 (PDT) Received: from [128.211.209.78] by scribe.cc.purdue.edu with ESMTP; Sun, 20 Aug 2000 12:47:43 -0500 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id F31EE1931; Sun, 20 Aug 2000 12:42:51 -0500 (EST) Date: Sun, 20 Aug 2000 12:42:51 -0500 From: Will Andrews <will@physics.purdue.edu> To: Ben Smithurst <ben@FreeBSD.org> Cc: Rajesh Vaidheeswarran <rv@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Message-Id: <20000820124251.K8055@argon.gryphonsoft.com> Mail-Followup-To: Ben Smithurst <ben@FreeBSD.org>, Rajesh Vaidheeswarran <rv@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200008200355.UAA79612@freefall.freebsd.org> <20000820172258.S58928@strontium.scientia.demon.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000820172258.S58928@strontium.scientia.demon.co.uk>; from ben@FreeBSD.org on Sun, Aug 20, 2000 at 05:22:58PM +0100 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Aug 20, 2000 at 05:22:58PM +0100, Ben Smithurst wrote: > Latitude and longitude, in degrees. There should > be a website which can tell you this based on your > postcode/zip-code/whatever-is-appropriate-for-your-country, but I don't > know of one except www.streetmap.co.uk which is UK only. > > You've got to love phk's entry, too. Most people are happy with 1 or 2 > decimal places, not him. :-) The Yahoo map will be accurate to four decimal places (Well, six, but I imagine the 0's indicate that they ignore any significant digits after the fourth). -- Will Andrews <will@physics.purdue.edu> <will@FreeBSD.org> GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 13:52:48 2000 Delivered-To: cvs-all@freebsd.org Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by hub.freebsd.org (Postfix) with ESMTP id 4463837B423; Sun, 20 Aug 2000 13:52:43 -0700 (PDT) Received: from parish.my.domain ([62.255.97.218]) by mta03-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20000820205241.GSFC16423.mta03-svc.ntlworld.com@parish.my.domain>; Sun, 20 Aug 2000 21:52:41 +0100 Received: (from mark@localhost) by parish.my.domain (8.9.3/8.9.3) id VAA02648; Sun, 20 Aug 2000 21:52:45 +0100 (BST) (envelope-from mark) Date: Sun, 20 Aug 2000 21:52:45 +0100 From: Mark Ovens <marko@freebsd.org> To: Ben Smithurst <ben@FreeBSD.org>, Rajesh Vaidheeswarran <rv@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Message-ID: <20000820215244.P254@parish> References: <200008200355.UAA79612@freefall.freebsd.org> <20000820172258.S58928@strontium.scientia.demon.co.uk> <20000820124251.K8055@argon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <20000820124251.K8055@argon.gryphonsoft.com>; from will@physics.purdue.edu on Sun, Aug 20, 2000 at 12:42:51PM -0500 Organization: Total lack of Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Aug 20, 2000 at 12:42:51PM -0500, Will Andrews wrote: > On Sun, Aug 20, 2000 at 05:22:58PM +0100, Ben Smithurst wrote: > > Latitude and longitude, in degrees. There should > > be a website which can tell you this based on your > > postcode/zip-code/whatever-is-appropriate-for-your-country, but I don't > > know of one except www.streetmap.co.uk which is UK only. > > > > You've got to love phk's entry, too. Most people are happy with 1 or 2 > > decimal places, not him. :-) > > The Yahoo map will be accurate to four decimal places (Well, six, but I > imagine the 0's indicate that they ignore any significant digits after > the fourth). > But it's only useful for people in the US and Canada. > -- > Will Andrews <will@physics.purdue.edu> <will@FreeBSD.org> > GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- > O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ > G++ e>++++ h! r- y? OK, I give in. Wotsit mean? > -- 4.4 - The number of the Beastie ________________________________________________________________ 51.44°N FreeBSD - The Power To Serve http://www.freebsd.org 2.057°W My Webpage http://ukug.uk.freebsd.org/~mark mailto:marko@freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 14: 7:48 2000 Delivered-To: cvs-all@freebsd.org Received: from fly.lglobus.ru (fly.lglobus.ru [195.34.224.130]) by hub.freebsd.org (Postfix) with ESMTP id 651E237B42C; Sun, 20 Aug 2000 14:07:38 -0700 (PDT) Received: (from rover@localhost) by fly.lglobus.ru (8.9.3/8.9.3) id BAA70319; Mon, 21 Aug 2000 01:07:43 +0400 (MSD) (envelope-from rover) Date: Mon, 21 Aug 2000 01:07:43 +0400 From: "Oleg V. Volkov" <rover@lglobus.ru> To: Mark Ovens <marko@FreeBSD.ORG> Cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Message-ID: <20000821010743.A70199@fly.lglobus.ru> Reply-To: ca_rover@lglobus.ru References: <200008200355.UAA79612@freefall.freebsd.org> <20000820172258.S58928@strontium.scientia.demon.co.uk> <20000820124251.K8055@argon.gryphonsoft.com> <20000820215244.P254@parish> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000820215244.P254@parish>; from marko@FreeBSD.ORG on Sun, Aug 20, 2000 at 09:52:45PM +0100 Organization: -=/ SR 13 /=- Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Aug 20, 2000 at 09:52:45PM +0100, Mark Ovens wrote: > > -- > > Will Andrews <will@physics.purdue.edu> <will@FreeBSD.org> > > GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- > > O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ > > G++ e>++++ h! r- y? > OK, I give in. Wotsit mean? Geek Code. -- Oleg V. Volkov aka Rover EH: CM Rover Join Elite Imperial Fleet! http://www.emperorshammer.org E-mail redirector: sr-13@mail.ru (always up) -=/ SR 13 /=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 14: 9:56 2000 Delivered-To: cvs-all@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 163D437B424; Sun, 20 Aug 2000 14:09:41 -0700 (PDT) Received: from strontium.scientia.demon.co.uk ([192.168.91.36] ident=root) by scientia.demon.co.uk with esmtp (Exim 3.16 #1) id 13QbBa-000DlB-00; Sun, 20 Aug 2000 20:55:14 +0100 Received: (from ben@localhost) by strontium.scientia.demon.co.uk (8.9.3/8.9.3) id UAA46980; Sun, 20 Aug 2000 20:55:14 +0100 (BST) (envelope-from ben) Date: Sun, 20 Aug 2000 20:55:14 +0100 From: Ben Smithurst <ben@FreeBSD.org> To: Warner Losh <imp@village.org> Cc: Rajesh Vaidheeswarran <rv@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Message-ID: <20000820205514.B84036@strontium.scientia.demon.co.uk> References: <20000820172258.S58928@strontium.scientia.demon.co.uk> <200008200355.UAA79612@freefall.freebsd.org> <20000820172258.S58928@strontium.scientia.demon.co.uk> <200008201757.LAA33298@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008201757.LAA33298@harmony.village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Warner Losh wrote: > Don't ask us what time it is either, we might have to tell you. Please do. :-) [I may regret asking this...] -- Ben Smithurst / ben@FreeBSD.org / PGP: 0x99392F7D FreeBSD Documentation Project / To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 14:12:45 2000 Delivered-To: cvs-all@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 6492F37B422; Sun, 20 Aug 2000 14:12:36 -0700 (PDT) Received: from strontium.scientia.demon.co.uk ([192.168.91.36] ident=root) by scientia.demon.co.uk with esmtp (Exim 3.16 #1) id 13QcOO-000Dt5-00; Sun, 20 Aug 2000 22:12:32 +0100 Received: (from ben@localhost) by strontium.scientia.demon.co.uk (8.9.3/8.9.3) id WAA50540; Sun, 20 Aug 2000 22:12:31 +0100 (BST) (envelope-from ben) Date: Sun, 20 Aug 2000 22:12:31 +0100 From: Ben Smithurst <ben@FreeBSD.org> To: Mark Ovens <marko@freebsd.org> Cc: Rajesh Vaidheeswarran <rv@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Message-ID: <20000820221231.D84036@strontium.scientia.demon.co.uk> References: <200008200355.UAA79612@freefall.freebsd.org> <20000820172258.S58928@strontium.scientia.demon.co.uk> <20000820124251.K8055@argon.gryphonsoft.com> <20000820215244.P254@parish> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000820215244.P254@parish> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mark Ovens wrote: >> Will Andrews <will@physics.purdue.edu> <will@FreeBSD.org> >> GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- >> O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ >> G++ e>++++ h! r- y? > > OK, I give in. Wotsit mean? that Will is a geek. :-) see <http://www.geekcode.com/> -- Ben Smithurst / ben@FreeBSD.org / PGP: 0x99392F7D FreeBSD Documentation Project / To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 14:13:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5301537B424; Sun, 20 Aug 2000 14:13:51 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA40298; Sun, 20 Aug 2000 14:13:51 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008202113.OAA40298@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Sun, 20 Aug 2000 14:13:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/a2dev Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/20 14:13:51 PDT Modified files: devel/a2dev Makefile Log: Use freebsd.org address for maintainership. Revision Changes Path 1.7 +2 -2 ports/devel/a2dev/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 14:34:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0948237B422; Sun, 20 Aug 2000 14:34:42 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA42108; Sun, 20 Aug 2000 14:34:42 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200008202134.OAA42108@freefall.freebsd.org> From: Poul-Henning Kamp <phk@FreeBSD.org> Date: Sun, 20 Aug 2000 14:34:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files src/sys/dev/bktr bktr_os.c src/sys/dev/md md.c src/sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c src/sys/i386/conf GENERIC src/sys/i4b/driver i4b_ctl.c i4b_rbch.c i4b_tel.c i4b_trace.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/08/20 14:34:39 PDT Modified files: sys/conf files sys/dev/bktr bktr_os.c sys/dev/md md.c sys/i386/conf GENERIC sys/i4b/driver i4b_ctl.c i4b_rbch.c i4b_tel.c i4b_trace.c sys/i4b/layer4 i4b_i4bdrv.c sys/isa fd.c sys/kern init_main.c kern_conf.c subr_disk.c subr_diskslice.c tty_pty.c sys/net bpf.c if_tun.c sys/sys conf.h kernel.h sys/ufs/mfs mfs_vfsops.c Added files: sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c Removed files: sys/miscfs/devfs README devfs_proto.h devfs_tree.c devfs_vfsops.c devfs_vnops.c devfsdefs.h reproto.sh sys/sys devfsext.h Log: Remove all traces of Julians DEVFS (incl from kern/subr_diskslice.c) Remove old DEVFS support fields from dev_t. Make uid, gid & mode members of dev_t and set them in make_dev(). Use correct uid, gid & mode in make_dev in disk minilayer. Add support for registering alias names for a dev_t using the new function make_dev_alias(). These will show up as symlinks in DEVFS. Use makedev() rather than make_dev() for MFSs magic devices to prevent DEVFS from noticing this abuse. Add a field for DEVFS inode number in dev_t. Add new DEVFS in fs/devfs. Add devfs cloning to: disk minilayer (ie: ad(4), sd(4), cd(4) etc etc) md(4), tun(4), bpf(4), fd(4) If DEVFS add -d flag to /sbin/inits args to make it mount devfs. Add commented out DEVFS to GENERIC Revision Changes Path 1.397 +4 -4 src/sys/conf/files 1.11 +1 -15 src/sys/dev/bktr/bktr_os.c 1.14 +60 -10 src/sys/dev/md/md.c 1.270 +2 -1 src/sys/i386/conf/GENERIC 1.11 +1 -12 src/sys/i4b/driver/i4b_ctl.c 1.11 +1 -13 src/sys/i4b/driver/i4b_rbch.c 1.11 +1 -14 src/sys/i4b/driver/i4b_tel.c 1.10 +1 -13 src/sys/i4b/driver/i4b_trace.c 1.12 +1 -12 src/sys/i4b/layer4/i4b_i4bdrv.c 1.188 +77 -13 src/sys/isa/fd.c 1.139 +6 -1 src/sys/kern/init_main.c 1.79 +55 -16 src/sys/kern/kern_conf.c 1.30 +76 -3 src/sys/kern/subr_disk.c 1.89 +1 -109 src/sys/kern/subr_diskslice.c 1.78 +65 -10 src/sys/kern/tty_pty.c 1.64 +33 -1 src/sys/net/bpf.c 1.76 +35 -1 src/sys/net/if_tun.c 1.115 +12 -5 src/sys/sys/conf.h 1.67 +1 -2 src/sys/sys/kernel.h 1.86 +3 -2 src/sys/ufs/mfs/mfs_vfsops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 14:38:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B45E537B43C; Sun, 20 Aug 2000 14:38:54 -0700 (PDT) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA42488; Sun, 20 Aug 2000 14:38:54 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Message-Id: <200008202138.OAA42488@freefall.freebsd.org> From: Jean-Marc Zucconi <jmz@FreeBSD.org> Date: Sun, 20 Aug 2000 14:38:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/lapack Makefile ports/math/lapack/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jmz 2000/08/20 14:38:54 PDT Modified files: math/lapack Makefile math/lapack/pkg PLIST Log: Add support for profiled libraries. Submitted by: AMAKAWA Shuhei <sa264@cam.ac.uk> Revision Changes Path 1.21 +12 -1 ports/math/lapack/Makefile 1.9 +2 -0 ports/math/lapack/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 14:42:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D7A137B423; Sun, 20 Aug 2000 14:42:28 -0700 (PDT) Received: (from kbyanc@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA44153; Sun, 20 Aug 2000 14:42:28 -0700 (PDT) (envelope-from kbyanc@FreeBSD.org) Message-Id: <200008202142.OAA44153@freefall.freebsd.org> From: Kelly Yancey <kbyanc@FreeBSD.org> Date: Sun, 20 Aug 2000 14:42:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/fcgi Makefile ports/www/fcgi/files md5 ports/www/fcgi/patches patch-ab ports/www/fcgi/pkg DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kbyanc 2000/08/20 14:42:27 PDT Modified files: www/fcgi Makefile www/fcgi/files md5 www/fcgi/patches patch-ab www/fcgi/pkg DESCR Log: Update fcgi dev-kit to version 2.2.0. From the release announcement: This release has a C++ lib, thread support (in the fcgiapp and Perl lib), and some platform fixes. Revision Changes Path 1.7 +4 -3 ports/www/fcgi/Makefile 1.2 +1 -1 ports/www/fcgi/files/md5 1.2 +64 -103 ports/www/fcgi/patches/patch-ab 1.4 +0 -4 ports/www/fcgi/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 14:43:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C64EE37B42C; Sun, 20 Aug 2000 14:43:52 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id OAA44232; Sun, 20 Aug 2000 14:43:52 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Sun, 20 Aug 2000 14:43:52 -0700 (PDT) From: Kris Kennaway <kris@FreeBSD.org> To: Poul-Henning Kamp <phk@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files src/sys/dev/bktr bktr_os.c src/sys/dev/md md.c src/sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c src/sys/i386/conf GENERIC src/sys/i4b/driver i4b_ctl.c i4b_rbch.c i4b_tel.c i4b_trace.c ... In-Reply-To: <200008202134.OAA42108@freefall.freebsd.org> Message-ID: <Pine.BSF.4.21.0008201442260.43992-100000@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 20 Aug 2000, Poul-Henning Kamp wrote: > Log: [...] Once again it seems reviews have gone out of style for major rewrites. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe <forsythe@alum.mit.edu> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 14:44:31 2000 Delivered-To: cvs-all@freebsd.org Received: from mta06-svc.ntlworld.com (mta06-svc.ntlworld.com [62.253.162.46]) by hub.freebsd.org (Postfix) with ESMTP id 001CE37B422; Sun, 20 Aug 2000 14:44:26 -0700 (PDT) Received: from parish.my.domain ([62.255.97.218]) by mta07-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20000820200338.JHTW295.mta07-svc.ntlworld.com@parish.my.domain>; Sun, 20 Aug 2000 21:03:38 +0100 Received: (from mark@localhost) by parish.my.domain (8.9.3/8.9.3) id VAA02263; Sun, 20 Aug 2000 21:03:44 +0100 (BST) (envelope-from mark) Date: Sun, 20 Aug 2000 21:03:43 +0100 From: Mark Ovens <marko@freebsd.org> To: Ben Smithurst <ben@freebsd.org> Cc: Rajesh Vaidheeswarran <rv@freebsd.org>, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Message-ID: <20000820210343.G254@parish> References: <200008200355.UAA79612@freefall.freebsd.org> <20000820172258.S58928@strontium.scientia.demon.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <20000820172258.S58928@strontium.scientia.demon.co.uk>; from ben@freebsd.org on Sun, Aug 20, 2000 at 05:22:58PM +0100 Organization: Total lack of Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Aug 20, 2000 at 05:22:58PM +0100, Ben Smithurst wrote: > Rajesh Vaidheeswarran wrote: > > > Didn't quite know what the numbers in > > ports/astro/xearth/files/freebsd.committers.markers meant. So, left > > that alone :-) > > Latitude and longitude, in degrees. There should > be a website which can tell you this based on your > postcode/zip-code/whatever-is-appropriate-for-your-country, but I don't > know of one except www.streetmap.co.uk which is UK only. > I just drew lines on an Ordnance Survey map from my street to the edge of the map and read off the scale. Computers?, the Internet? who needs 'em :) > You've got to love phk's entry, too. Most people are happy with 1 or 2 > decimal places, not him. :-) > > 55.411822290, 11.336162915, "phk" # Slagelse, Denmark > > -- > Ben Smithurst / ben@FreeBSD.org / PGP: 0x99392F7D > FreeBSD Documentation Project / > -- 4.4 - The number of the Beastie ________________________________________________________________ 51.44°N FreeBSD - The Power To Serve http://www.freebsd.org 2.057°W My Webpage http://ukug.uk.freebsd.org/~mark mailto:marko@freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 14:46:30 2000 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (beachchick.freebsd.dk [212.242.32.208]) by hub.freebsd.org (Postfix) with ESMTP id EDC0237B43E; Sun, 20 Aug 2000 14:46:25 -0700 (PDT) Received: from critter (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id XAA90426; Sun, 20 Aug 2000 23:46:24 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Kris Kennaway <kris@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files src/sys/dev/bktr bktr_os.c src/sys/dev/md md.c src/sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c src/sys/i386/conf GENERIC src/sys/i4b/driver i4b_ctl.c i4b_rbch.c i4b_tel.c i4b_trace.c ... In-Reply-To: Your message of "Sun, 20 Aug 2000 14:43:52 PDT." <Pine.BSF.4.21.0008201442260.43992-100000@freefall.freebsd.org> Date: Sun, 20 Aug 2000 23:46:24 +0200 Message-ID: <90424.966807984@critter> From: Poul-Henning Kamp <phk@critter.freebsd.dk> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <Pine.BSF.4.21.0008201442260.43992-100000@freefall.freebsd.org>, Kri s Kennaway writes: >On Sun, 20 Aug 2000, Poul-Henning Kamp wrote: > >> Log: > >[...] > >Once again it seems reviews have gone out of style for major rewrites. Kris, You have not yourself spent any time looking at this patch, have you ? Did you have any intention to do so ? If yes, did you tell me that in email at any point ? -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 15:19: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 781A737B424; Sun, 20 Aug 2000 15:18:57 -0700 (PDT) Received: (from cg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA48338; Sun, 20 Aug 2000 15:18:57 -0700 (PDT) (envelope-from cg@FreeBSD.org) Message-Id: <200008202218.PAA48338@freefall.freebsd.org> From: Cameron Grant <cg@FreeBSD.org> Date: Sun, 20 Aug 2000 15:18:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/isa ad1816.c ess.c mss.c sb.c src/sys/dev/sound/pci aureal.c csapcm.c ds1.c emu10k1.c es137x.c neomagic.c solo.c t4dwave.c via82c686.c src/sys/dev/sound/pcm feeder.h channel.c channel.h datatypes.h dsp.c fake.c feeder.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cg 2000/08/20 15:18:57 PDT Modified files: sys/dev/sound/isa ad1816.c ess.c mss.c sb.c sys/dev/sound/pci aureal.c csapcm.c ds1.c emu10k1.c es137x.c neomagic.c solo.c t4dwave.c via82c686.c sys/dev/sound/pcm channel.c channel.h datatypes.h dsp.c fake.c feeder.c sound.h Added files: sys/dev/sound/pcm feeder.h Log: rework feeder sytem to allow feeders in klds modify driver capability reporting format to list every audio format seperately- required for above and because we could not previously indicate that mono was unsupported. there should be no functional impact. Revision Changes Path 1.11 +13 -5 src/sys/dev/sound/isa/ad1816.c 1.8 +25 -9 src/sys/dev/sound/isa/ess.c 1.56 +32 -17 src/sys/dev/sound/isa/mss.c 1.56 +30 -23 src/sys/dev/sound/isa/sb.c 1.13 +15 -9 src/sys/dev/sound/pci/aureal.c 1.13 +16 -8 src/sys/dev/sound/pci/csapcm.c 1.10 +21 -11 src/sys/dev/sound/pci/ds1.c 1.14 +28 -8 src/sys/dev/sound/pci/emu10k1.c 1.22 +15 -9 src/sys/dev/sound/pci/es137x.c 1.15 +8 -5 src/sys/dev/sound/pci/neomagic.c 1.11 +23 -9 src/sys/dev/sound/pci/solo.c 1.15 +23 -9 src/sys/dev/sound/pci/t4dwave.c 1.2 +15 -9 src/sys/dev/sound/pci/via82c686.c 1.35 +50 -5 src/sys/dev/sound/pcm/channel.c 1.12 +4 -4 src/sys/dev/sound/pcm/channel.h 1.15 +19 -2 src/sys/dev/sound/pcm/datatypes.h 1.28 +4 -4 src/sys/dev/sound/pcm/dsp.c 1.5 +16 -4 src/sys/dev/sound/pcm/fake.c 1.10 +273 -130 src/sys/dev/sound/pcm/feeder.c 1.18 +2 -1 src/sys/dev/sound/pcm/sound.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 15:25:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DE6BB37B423; Sun, 20 Aug 2000 15:25:20 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id PAA48785; Sun, 20 Aug 2000 15:25:20 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Sun, 20 Aug 2000 15:25:20 -0700 (PDT) From: Kris Kennaway <kris@FreeBSD.org> To: Poul-Henning Kamp <phk@critter.freebsd.dk> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files src/sys/dev/bktr bktr_os.c src/sys/dev/md md.c src/sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c src/sys/i386/conf GENERIC src/sys/i4b/driver i4b_ctl.c i4b_rbch.c i4b_tel.c i4b_trace.c ... In-Reply-To: <90424.966807984@critter> Message-ID: <Pine.BSF.4.21.0008201520250.48450-100000@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 20 Aug 2000, Poul-Henning Kamp wrote: > You have not yourself spent any time looking at this patch, have you ? Whether or not I am capable of reviewing this patch is beside the point, there are a number of people in this technical community who are capable and interested in this area, and soliciting their opinions before committing is both sensible development style and polite to your fellow developers, most of whom do attempt to solicit reviews instead of just committing their code regardless of what others may think of it. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe <forsythe@alum.mit.edu> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 15:34:12 2000 Delivered-To: cvs-all@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 53DAF37B423; Sun, 20 Aug 2000 15:34:09 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e7KMY8F00301; Sun, 20 Aug 2000 15:34:08 -0700 (PDT) Date: Sun, 20 Aug 2000 15:34:08 -0700 From: Alfred Perlstein <bright@wintelcom.net> To: Kris Kennaway <kris@FreeBSD.org> Cc: Poul-Henning Kamp <phk@critter.freebsd.dk>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files src/sys/dev/bktr bktr_os.c src/sys/dev/md md.c src/sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c src/sys/i386/conf GENERIC src/sys/i4b/driver i4b_ctl.c i4b_rbch.c i4b_tel.c i4b_trace.c ... Message-ID: <20000820153408.F4854@fw.wintelcom.net> References: <90424.966807984@critter> <Pine.BSF.4.21.0008201520250.48450-100000@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <Pine.BSF.4.21.0008201520250.48450-100000@freefall.freebsd.org>; from kris@FreeBSD.org on Sun, Aug 20, 2000 at 03:25:20PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Kris Kennaway <kris@FreeBSD.org> [000820 15:25] wrote: > On Sun, 20 Aug 2000, Poul-Henning Kamp wrote: > > > You have not yourself spent any time looking at this patch, have you ? > > Whether or not I am capable of reviewing this patch is beside the point, > there are a number of people in this technical community who are capable > and interested in this area, and soliciting their opinions before > committing is both sensible development style and polite to your fellow > developers, most of whom do attempt to solicit reviews instead of just > committing their code regardless of what others may think of it. He did ask several days ago about this no one responded, since phk is actively working on FreeBSD it should be maintained and the bugs (if any) ironed out with usage. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 15:35:26 2000 Delivered-To: cvs-all@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 37D0637B424; Sun, 20 Aug 2000 15:35:22 -0700 (PDT) Received: from beppo.feral.com (beppo [192.67.166.79]) by feral.com (8.9.3/8.9.3) with ESMTP id PAA00904; Sun, 20 Aug 2000 15:33:46 -0700 Date: Sun, 20 Aug 2000 15:33:48 -0700 (PDT) From: Matthew Jacob <mjacob@feral.com> Reply-To: mjacob@feral.com To: Poul-Henning Kamp <phk@critter.freebsd.dk> Cc: Kris Kennaway <kris@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files src/sys/dev/bktr bktr_os.c src/sys/dev/md md.c src/sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c src/sys/i386/conf GENERIC src/sys/i4b/driver i4b_ctl.c i4b_rbch.c i4b_tel.c i4b_trace.c ... In-Reply-To: <90424.966807984@critter> Message-ID: <Pine.BSF.4.21.0008201533060.20617-100000@beppo.feral.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have to agree with you. Poul did put this out for review. It was probably a short cycle to move to commit, and it would have been nice to have an overall architecture written down, but it's not all that different from what he's been talking about all along. On Sun, 20 Aug 2000, Poul-Henning Kamp wrote: > In message <Pine.BSF.4.21.0008201442260.43992-100000@freefall.freebsd.org>, Kri > s Kennaway writes: > >On Sun, 20 Aug 2000, Poul-Henning Kamp wrote: > > > >> Log: > > > >[...] > > > >Once again it seems reviews have gone out of style for major rewrites. > > Kris, > > You have not yourself spent any time looking at this patch, have you ? > > Did you have any intention to do so ? > > If yes, did you tell me that in email at any point ? > > -- > Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 > phk@FreeBSD.ORG | TCP/IP since RFC 956 > FreeBSD coreteam member | BSD since 4.3-tahoe > Never attribute to malice what can adequately be explained by incompetence. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 16:22:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35DC737B423; Sun, 20 Aug 2000 16:22:11 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id QAA54673; Sun, 20 Aug 2000 16:22:11 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Sun, 20 Aug 2000 16:22:11 -0700 (PDT) From: Kris Kennaway <kris@FreeBSD.org> To: Poul-Henning Kamp <phk@critter.freebsd.dk> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files src/sys/dev/bktr bktr_os.c src/sys/dev/md md.c src/sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c src/sys/i386/conf GENERIC src/sys/i4b/driver i4b_ctl.c i4b_rbch.c i4b_tel.c i4b_trace.c ... In-Reply-To: <90424.966807984@critter> Message-ID: <Pine.BSF.4.21.0008201620560.54552-100000@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 20 Aug 2000, Poul-Henning Kamp wrote: > In message <Pine.BSF.4.21.0008201442260.43992-100000@freefall.freebsd.org>, Kri > s Kennaway writes: > >On Sun, 20 Aug 2000, Poul-Henning Kamp wrote: > > > >> Log: > > > >[...] > > > >Once again it seems reviews have gone out of style for major rewrites. Okay, I apologise - I wrote this just after I got up and I guess I was crankier than usual. I forgot that a couple of people had looked over the patch already. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe <forsythe@alum.mit.edu> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 16:59:52 2000 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 7C7E437B423; Sun, 20 Aug 2000 16:59:47 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id QAA11209; Sun, 20 Aug 2000 16:59:46 -0700 (PDT) (envelope-from obrien) Date: Sun, 20 Aug 2000 16:59:46 -0700 From: "David O'Brien" <obrien@FreeBSD.org> To: Brian Feldman <green@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile config.h job.c main.c Message-ID: <20000820165946.A91919@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200008162331.QAA29065@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008162331.QAA29065@freefall.freebsd.org>; from green@FreeBSD.org on Wed, Aug 16, 2000 at 04:31:44PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 16, 2000 at 04:31:44PM -0700, Brian Feldman wrote: > Modified files: > usr.bin/make Makefile config.h job.c main.c > Log: > Allow use of the ${MAKE_SHELL} variable to specify alternate shells for > make(1) to use. Setting it to "sh" and "ksh" are the only values which > work right ATM; I wouldn't expect "csh" to get you far ;) You had much negative feedback on this. So are you working on a fix that will be more acceptable, or are you going to back this out? -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 17:49:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE69F37B424; Sun, 20 Aug 2000 17:49:11 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA61844; Sun, 20 Aug 2000 17:49:11 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200008210049.RAA61844@freefall.freebsd.org> From: Steve Price <steve@FreeBSD.org> Date: Sun, 20 Aug 2000 17:49:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/XFree86-4/pkg INSTALL X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/08/20 17:49:11 PDT Modified files: x11/XFree86-4/pkg INSTALL Log: - Don't require interaction while PACKAGE_BUILDING. - Only ask this question once either before building or during PRE-INSTALL. Revision Changes Path 1.2 +4 -0 ports/x11/XFree86-4/pkg/INSTALL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 17:51:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E2E737B42C; Sun, 20 Aug 2000 17:51:27 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA62003; Sun, 20 Aug 2000 17:51:27 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200008210051.RAA62003@freefall.freebsd.org> From: Steve Price <steve@FreeBSD.org> Date: Sun, 20 Aug 2000 17:51:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/XFree86-4/patches patch-9 ports/x11/XFree86-4/pkg PLIST.alpha ports/x11/XFree86-4/scripts configure X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/08/20 17:51:27 PDT Modified files: x11/XFree86-4/scripts configure Added files: x11/XFree86-4/patches patch-9 x11/XFree86-4/pkg PLIST.alpha Log: Welcome XFree86-4 into the world of FreeBSD/Alpha. Revision Changes Path 1.62 +9 -0 ports/x11/XFree86-4/scripts/configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 17:52:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 62C2F37B424; Sun, 20 Aug 2000 17:52:31 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA62120; Sun, 20 Aug 2000 17:52:31 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200008210052.RAA62120@freefall.freebsd.org> From: Steve Price <steve@FreeBSD.org> Date: Sun, 20 Aug 2000 17:52:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/PicMonger Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/08/20 17:52:31 PDT Modified files: news/PicMonger Makefile Log: Add missing line continuation character in LIB_DEPENDS. Revision Changes Path 1.2 +3 -2 ports/news/PicMonger/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 17:53:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 60CB037B423; Sun, 20 Aug 2000 17:53:23 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA62229; Sun, 20 Aug 2000 17:53:23 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200008210053.RAA62229@freefall.freebsd.org> From: Steve Price <steve@FreeBSD.org> Date: Sun, 20 Aug 2000 17:53:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/timidity++/patches patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/08/20 17:53:23 PDT Modified files: audio/timidity++/patches patch-ab Log: Properly disable fp calls on FreeBSD/Alpha. Revision Changes Path 1.7 +1 -1 ports/audio/timidity++/patches/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 17:54:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0AB7937B424; Sun, 20 Aug 2000 17:54:44 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA62333; Sun, 20 Aug 2000 17:54:44 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200008210054.RAA62333@freefall.freebsd.org> From: Steve Price <steve@FreeBSD.org> Date: Sun, 20 Aug 2000 17:54:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/uclmmbase/patches patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/08/20 17:54:43 PDT Added files: devel/uclmmbase/patches patch-ab Log: Remove -Werror from CFLAGS because it was causing builds to fall over on the Alpha. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 17:57: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7ADE737B43E; Sun, 20 Aug 2000 17:56:58 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA62551; Sun, 20 Aug 2000 17:56:58 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200008210056.RAA62551@freefall.freebsd.org> From: Steve Price <steve@FreeBSD.org> Date: Sun, 20 Aug 2000 17:56:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/emacs20-dl-wnn6 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/08/20 17:56:58 PDT Modified files: japanese/emacs20-dl-wnn6 Makefile Log: While PACKAGE_BUILDING we need autoconf around so that we can configure the emacs20-dl port. Revision Changes Path 1.17 +2 -1 ports/japanese/emacs20-dl-wnn6/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 19:10: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 0DFD037B422; Sun, 20 Aug 2000 19:10:03 -0700 (PDT) Date: Sun, 20 Aug 2000 22:10:01 -0400 (EDT) From: Brian Fundakowski Feldman <green@FreeBSD.org> X-Sender: green@green.dyndns.org To: David O'Brien <obrien@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile config.h job.c main.c In-Reply-To: <20000820165946.A91919@dragon.nuxi.com> Message-ID: <Pine.BSF.4.21.0008202206450.99305-100000@green.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 20 Aug 2000, David O'Brien wrote: > On Wed, Aug 16, 2000 at 04:31:44PM -0700, Brian Feldman wrote: > > Modified files: > > usr.bin/make Makefile config.h job.c main.c > > Log: > > Allow use of the ${MAKE_SHELL} variable to specify alternate shells for > > make(1) to use. Setting it to "sh" and "ksh" are the only values which > > work right ATM; I wouldn't expect "csh" to get you far ;) > > You had much negative feedback on this. So are you working on a fix that > will be more acceptable, or are you going to back this out? It seems to me the discussion is still on about whether we want to support the ${SHELL} variable or not. If there's a consensus on that, it means that there will be a well-supported way to default the shell (as in make.conf.local), so I'll be happy to use that instead. > -- > -- David (obrien@FreeBSD.org) -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 19:11:46 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id B2D7B37B42C; Sun, 20 Aug 2000 19:11:42 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id UAA51005; Sun, 20 Aug 2000 20:11:41 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id UAA35357; Sun, 20 Aug 2000 20:10:39 -0600 (MDT) Message-Id: <200008210210.UAA35357@harmony.village.org> To: Mark Murray <mark@grondar.za> Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Cc: Poul-Henning Kamp <phk@critter.freebsd.dk>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Sun, 20 Aug 2000 22:36:23 +0200." <200008202036.e7KKaNG21382@grimreaper.grondar.za> References: <200008202036.e7KKaNG21382@grimreaper.grondar.za> <89531.966793907@critter> Date: Sun, 20 Aug 2000 20:10:39 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200008202036.e7KKaNG21382@grimreaper.grondar.za> Mark Murray writes: : OK, this begs the questions; which square millimetre did you : choose, why, and how? :-) Likely the one that the scratch in the floor that says "We've surveyed this to the millimeter and you are X,Y" :-) Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 19:13:39 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id E531B37B424; Sun, 20 Aug 2000 19:13:32 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id UAA51017; Sun, 20 Aug 2000 20:13:31 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id UAA35384; Sun, 20 Aug 2000 20:12:30 -0600 (MDT) Message-Id: <200008210212.UAA35384@harmony.village.org> To: Ben Smithurst <ben@FreeBSD.org> Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Cc: Rajesh Vaidheeswarran <rv@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Sun, 20 Aug 2000 20:55:14 BST." <20000820205514.B84036@strontium.scientia.demon.co.uk> References: <20000820205514.B84036@strontium.scientia.demon.co.uk> <20000820172258.S58928@strontium.scientia.demon.co.uk> <200008200355.UAA79612@freefall.freebsd.org> <20000820172258.S58928@strontium.scientia.demon.co.uk> <200008201757.LAA33298@harmony.village.org> Date: Sun, 20 Aug 2000 20:12:30 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000820205514.B84036@strontium.scientia.demon.co.uk> Ben Smithurst writes: : Warner Losh wrote: : : > Don't ask us what time it is either, we might have to tell you. : : Please do. :-) : : [I may regret asking this...] Well, that would depend on where you are, now wouldn't it :-) And the information would be stale by the time I got it to you :-) Warner P.S. Actually, knowing where you are means knowing what time it is to a very high degree of accuracy, which is why a time geek like phk knows where he is because he always knows what time it is. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 19:15:43 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 87E4D37B423; Sun, 20 Aug 2000 19:15:38 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id UAA51037; Sun, 20 Aug 2000 20:15:37 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id UAA35416; Sun, 20 Aug 2000 20:14:36 -0600 (MDT) Message-Id: <200008210214.UAA35416@harmony.village.org> To: Poul-Henning Kamp <phk@FreeBSD.org> Subject: Re: cvs commit: src/sys/conf files src/sys/dev/bktr bktr_os.c src/sys/dev/md md.c src/sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c src/sys/i386/conf GENERIC src/sys/i4b/driver i4b_ctl.c i4b_rbch.c i4b_tel.c i4b_trace.c ... Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Sun, 20 Aug 2000 14:34:39 PDT." <200008202134.OAA42108@freefall.freebsd.org> References: <200008202134.OAA42108@freefall.freebsd.org> Date: Sun, 20 Aug 2000 20:14:36 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200008202134.OAA42108@freefall.freebsd.org> Poul-Henning Kamp writes: : Add devfs cloning to: : disk minilayer (ie: ad(4), sd(4), cd(4) etc etc) Why bother with sd? Shouldn't that be da? : md(4), tun(4), bpf(4), fd(4) ... : Add commented out DEVFS to GENERIC Question: Is this DEVFS interrupt context safe? The old DEVFS didn't deal well with devices arriving in an interrupt context, which CAM does. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 19:16:17 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 512B537B42C; Sun, 20 Aug 2000 19:16:12 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id UAA51045; Sun, 20 Aug 2000 20:16:11 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id UAA35439; Sun, 20 Aug 2000 20:15:09 -0600 (MDT) Message-Id: <200008210215.UAA35439@harmony.village.org> To: Kris Kennaway <kris@FreeBSD.org> Subject: Re: cvs commit: src/sys/conf files src/sys/dev/bktr bktr_os.c src/sys/dev/md md.c src/sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c src/sys/i386/conf GENERIC src/sys/i4b/driver i4b_ctl.c i4b_rbch.c i4b_tel.c i4b_trace.c ... Cc: Poul-Henning Kamp <phk@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Sun, 20 Aug 2000 14:43:52 PDT." <Pine.BSF.4.21.0008201442260.43992-100000@freefall.freebsd.org> References: <Pine.BSF.4.21.0008201442260.43992-100000@freefall.freebsd.org> Date: Sun, 20 Aug 2000 20:15:09 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <Pine.BSF.4.21.0008201442260.43992-100000@freefall.freebsd.org> Kris Kennaway writes: : Once again it seems reviews have gone out of style for major rewrites. Phk posted the patches a while ago for this, did he not? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 19:16:58 2000 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 7B01D37B423; Sun, 20 Aug 2000 19:16:53 -0700 (PDT) Received: (from ache@localhost) by nagual.pp.ru (8.11.0/8.11.0) id e7L2Gqb50123; Mon, 21 Aug 2000 06:16:52 +0400 (MSD) (envelope-from ache) Date: Mon, 21 Aug 2000 06:16:50 +0400 From: "Andrey A. Chernov" <ache@nagual.pp.ru> To: Brian Fundakowski Feldman <green@FreeBSD.org> Cc: "David O'Brien" <obrien@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile config.h job.c main.c Message-ID: <20000821061649.A50081@nagual.pp.ru> References: <20000820165946.A91919@dragon.nuxi.com> <Pine.BSF.4.21.0008202206450.99305-100000@green.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <Pine.BSF.4.21.0008202206450.99305-100000@green.dyndns.org>; from green@FreeBSD.org on Sun, Aug 20, 2000 at 10:10:01PM -0400 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Aug 20, 2000 at 10:10:01PM -0400, Brian Fundakowski Feldman wrote: > It seems to me the discussion is still on about whether we want to support > the ${SHELL} variable or not. If there's a consensus on that, it means No doubts there, we need to support it because we need to conform POSIX. -- Andrey A. Chernov <ache@nagual.pp.ru> http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 19:33:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E870237B422; Sun, 20 Aug 2000 19:33:18 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA73710; Sun, 20 Aug 2000 19:33:18 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008210233.TAA73710@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Sun, 20 Aug 2000 19:33:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/surfaw Makefile ports/www/surfaw/files md5 ports/www/surfaw/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/20 19:33:18 PDT Removed files: www/surfaw Makefile www/surfaw/files md5 www/surfaw/pkg COMMENT DESCR PLIST Log: Surfaw has been renamed to surfraw Approved by: Maintainer, asami To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 19:35:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A4A4137B422; Sun, 20 Aug 2000 19:35:26 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA74082; Sun, 20 Aug 2000 19:35:26 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008210235.TAA74082@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Sun, 20 Aug 2000 19:35:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/surfraw Makefile ports/www/surfraw/files md5 ports/www/surfraw/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/20 19:35:26 PDT Modified files: www Makefile Added files: www/surfraw Makefile www/surfraw/files md5 www/surfraw/pkg COMMENT DESCR PLIST Log: Upgrade to surfraw 0.5.7 (software has been renamed from surfaw) Approved by: Maintainer, asami Revision Changes Path 1.246 +2 -2 ports/www/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 19:49:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3006037B422; Sun, 20 Aug 2000 19:49:43 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA75617; Sun, 20 Aug 2000 19:49:43 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008210249.TAA75617@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Sun, 20 Aug 2000 19:49:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/surfraw/patches patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/20 19:49:43 PDT Added files: www/surfraw/patches patch-aa patch-ab Log: Actually make this work To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 20:18:45 2000 Delivered-To: cvs-all@freebsd.org Received: from picnic.chuckr.org (picnic.chuckr.org [216.254.96.118]) by hub.freebsd.org (Postfix) with ESMTP id 2BA3937B424; Sun, 20 Aug 2000 20:18:36 -0700 (PDT) Received: from localhost (chuckr@localhost) by picnic.chuckr.org (8.9.3/8.9.3) with ESMTP id XAA04632; Sun, 20 Aug 2000 23:17:40 -0400 (EDT) (envelope-from chuckr@picnic.chuckr.org) Date: Sun, 20 Aug 2000 23:17:38 -0400 (EDT) From: Chuck Robey <chuckr@picnic.chuckr.org> To: Bruce Evans <bde@zeta.org.au> Cc: "Andrey A. Chernov" <ache@nagual.pp.ru>, Brian Fundakowski Feldman <green@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile config.h job.c main.c In-Reply-To: <Pine.BSF.4.21.0008180131500.1746-100000@besplex.bde.org> Message-ID: <Pine.BSF.4.21.0008202315520.674-100000@picnic.chuckr.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 18 Aug 2000, Bruce Evans wrote: > On Thu, 17 Aug 2000, Andrey A. Chernov wrote: > > > On Thu, Aug 17, 2000 at 12:38:05AM -0400, Brian Fundakowski Feldman wrote: > > > On Thu, 17 Aug 2000, Andrey A. Chernov wrote: > > > > There always was ${SHELL} variable for it present in 'make', isn't ? > > > > > > To be honest, it really doesn't work right. This does, however :) This > > > is a very simple change, anyway; some shells require special handling > > > to set up, etc. If you want to make ${SHELL} work better... =) > > > > Do we want another non-standard feature to be different from the rest of > > the world? F.e. GNU make use ${SHELL} for this purpose too. > > > > What is exactly wrong with ${SHELL} variable? IMHO this worth fixing and > > not worth yet another incompatibility. > > ${SHELL} is undocumented and doesn't affect `make'. I think it is > intentionally left out. `make' has a .SHELL directive which is > extensively documented in the tutorial but not even mentioned in > the man page. > > We certainly don't want a second nonstandard way of doing this. I wonder just how many other things about make aren't documented in the man page. Relying on the man page, I just looked silly when I told someone that ".include" is the only way to include files (it turns out that it works just fine without the "." introducer too). > > Bruce > > > ---------------------------------------------------------------------------- Chuck Robey | Interests include C & Java programming, FreeBSD, chuckr@picnic.chuckr.org| electronics, communications, and signal processing. New Year's Resolution: I will not sphroxify gullible people into looking up fictitious words in the dictionary. ---------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 20:39:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B83C837B424; Sun, 20 Aug 2000 20:39:43 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA82003; Sun, 20 Aug 2000 20:39:43 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008210339.UAA82003@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Sun, 20 Aug 2000 20:39:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/eb Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/20 20:39:43 PDT Modified files: japanese/eb Makefile Log: Remove extra spaces Submitted by: Maintainer Revision Changes Path 1.21 +2 -2 ports/japanese/eb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 23: 7:32 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.ninth-circle.org (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id 88AE537B422; Sun, 20 Aug 2000 23:07:27 -0700 (PDT) Received: (from asmodai@localhost) by lucifer.ninth-circle.org (8.9.3/8.9.3) id IAA11308; Mon, 21 Aug 2000 08:07:26 +0200 (CEST) (envelope-from asmodai) Date: Mon, 21 Aug 2000 08:07:26 +0200 From: Jeroen Ruigrok van der Werven <jruigrok@via-net-works.nl> To: Ben Smithurst <ben@FreeBSD.org>, Rajesh Vaidheeswarran <rv@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Message-ID: <20000821080726.A11207@lucifer.bart.nl> References: <200008200355.UAA79612@freefall.freebsd.org> <20000820172258.S58928@strontium.scientia.demon.co.uk> <20000820124251.K8055@argon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000820124251.K8055@argon.gryphonsoft.com>; from will@physics.purdue.edu on Sun, Aug 20, 2000 at 12:42:51PM -0500 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [basic physics and maths] -On [20000820 22:50], Will Andrews (will@physics.purdue.edu) wrote: >The Yahoo map will be accurate to four decimal places (Well, six, but I >imagine the 0's indicate that they ignore any significant digits after >the fourth). If they specify 0's _after_ the decimal delimiter those 0's _are_ significant. ;) FreeBSD-Physics/Maths anyone? ;) -- Jeroen Ruigrok van der Werven Network- and systemadministrator <jruigrok@via-net-works.nl> VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl Infinite Dreams, I can't deny them, Infinity is hard to comprehend... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 23:30:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E7DF737B423; Sun, 20 Aug 2000 23:30:45 -0700 (PDT) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA03448; Sun, 20 Aug 2000 23:30:45 -0700 (PDT) (envelope-from markm@FreeBSD.org) Message-Id: <200008210630.XAA03448@freefall.freebsd.org> From: Mark Murray <markm@FreeBSD.org> Date: Sun, 20 Aug 2000 23:30:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.usr.dist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG markm 2000/08/20 23:30:45 PDT Modified files: etc/mtree BSD.usr.dist Log: Move $PERL/IO/Socket to the right place. Reported by: ache Revision Changes Path 1.198 +3 -3 src/etc/mtree/BSD.usr.dist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 23:42:58 2000 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.129.65]) by hub.freebsd.org (Postfix) with ESMTP id D9F7437B424; Sun, 20 Aug 2000 23:42:55 -0700 (PDT) Received: from rover.village.org (rover.village.org [204.144.255.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13A236E421F; Sun, 20 Aug 2000 23:42:54 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id AAA51883; Mon, 21 Aug 2000 00:41:37 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id AAA36562; Mon, 21 Aug 2000 00:40:34 -0600 (MDT) Message-Id: <200008210640.AAA36562@harmony.village.org> To: Jeroen Ruigrok van der Werven <jruigrok@via-net-works.nl> Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Cc: Ben Smithurst <ben@FreeBSD.org>, Rajesh Vaidheeswarran <rv@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Mon, 21 Aug 2000 08:07:26 +0200." <20000821080726.A11207@lucifer.bart.nl> References: <20000821080726.A11207@lucifer.bart.nl> <200008200355.UAA79612@freefall.freebsd.org> <20000820172258.S58928@strontium.scientia.demon.co.uk> <20000820124251.K8055@argon.gryphonsoft.com> Date: Mon, 21 Aug 2000 00:40:34 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000821080726.A11207@lucifer.bart.nl> Jeroen Ruigrok van der Werven writes: : If they specify 0's _after_ the decimal delimiter those 0's _are_ : significant. ;) Not necessarily. Only if the program was written by someone that groks significant digits, which is a vanishingly small number of programmers from what I've seen... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Aug 20 23:56:26 2000 Delivered-To: cvs-all@freebsd.org Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 21C7037B423; Sun, 20 Aug 2000 23:56:21 -0700 (PDT) X-Envelope-Sender-Is: ust@cert.siemens.de (at relayer david.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by david.siemens.de (8.10.1/8.10.1) with ESMTP id e7L6uKU27599; Mon, 21 Aug 2000 08:56:20 +0200 (MET DST) Received: from mars.cert.siemens.de (ust.mchp.siemens.de [139.23.201.17]) by mail2.siemens.de (8.10.1/8.10.1) with ESMTP id e7L6uJa28897; Mon, 21 Aug 2000 08:56:20 +0200 (MET DST) Received: from alaska.cert.siemens.de (reims.mchp.siemens.de [139.23.202.134]) by mars.cert.siemens.de (8.11.0/8.11.0/Siemens CERT [ $Revision: 1.8 ]) with ESMTP id e7L6uJq24744; Mon, 21 Aug 2000 08:56:19 +0200 (CEST) Received: (from ust@localhost) by alaska.cert.siemens.de (8.11.0/8.11.0/alaska [ $Revision: 1.4 ]) id e7L6uJ446991; Mon, 21 Aug 2000 06:56:19 GMT Date: Mon, 21 Aug 2000 08:56:19 +0200 From: Udo Schweigert <ust@cert.siemens.de> To: Kris Kennaway <kris@FreeBSD.ORG> Cc: Udo Schweigert <ust@cert.siemens.de>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/secure/lib/libcrypto Makefile src/secure/lib/librsaintl Makefile src/secure/lib/libssl Makefile Message-ID: <20000821085619.A46904@alaska.cert.siemens.de> Mail-Followup-To: Kris Kennaway <kris@FreeBSD.ORG>, Udo Schweigert <ust@cert.siemens.de>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <20000820202904.A40559@alaska.cert.siemens.de> <Pine.BSF.4.21.0008201321210.24903-100000@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <Pine.BSF.4.21.0008201321210.24903-100000@freefall.freebsd.org>; from kris@FreeBSD.ORG on Sun, Aug 20, 2000 at 01:23:27PM -0700 X-Operating-System: FreeBSD 4.1-STABLE Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Aug 20, 2000 at 13:23:27 -0700, Kris Kennaway wrote: > On Sun, 20 Aug 2000, Udo Schweigert wrote: > > > The patch avoiding this is: > > > > --- Makefile.orig Sun Aug 20 19:46:29 2000 > > +++ Makefile Sun Aug 20 20:15:45 2000 > > @@ -183,7 +183,7 @@ > > pem/pem2.h pkcs12/pkcs12.h pkcs7/pkcs7.h rand/rand.h rc2/rc2.h \ > > rc4/rc4.h rc5/rc5.h ripemd/ripemd.h rsa/rsa.h stack/safestack.h \ > > sha/sha.h stack/stack.h tmdiff.h txt_db/txt_db.h x509/x509.h \ > > - x509/x509_vfy.h x509v3/x509v3.h > > + x509/x509_vfy.h x509v3/x509v3.h evp/evp.h > > > > .if defined(MAKE_IDEA) && ${MAKE_IDEA} == YES > > HDRS+= idea/idea.h > > Well, that patch is wrong because: > > .if !defined(MAKE_IDEA) || ${MAKE_IDEA} != YES > sed '/^#ifndef NO_IDEA$$/,/^#endif$$/d' ${LCRYPTO_SRC}/evp/evp.h > > \ > ${.OBJDIR}/evp.h.new > ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ > ${.OBJDIR}/evp.h.new ${DESTDIR}/usr/include/openssl/evp.h > .else > ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ > ${LCRYPTO_SRC}/evp/evp.h ${DESTDIR}/usr/include/openssl/evp.h > .endif > > Were you trying to install with MAKE_IDEA or without? Without MAKE_IDEA. -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 ZT IK 3, Siemens CERT | Fax : +49 89 636 41166 D-81730 Muenchen / Germany | email : ust@cert.siemens.de PGP-2/5 fingerprint | D8 A5 DF 34 EC 87 E8 C6 E2 26 C4 D0 EE 80 36 B2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 0: 5:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CFD4F37B423; Mon, 21 Aug 2000 00:05:27 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id AAA08630; Mon, 21 Aug 2000 00:05:27 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Mon, 21 Aug 2000 00:05:27 -0700 (PDT) From: Kris Kennaway <kris@FreeBSD.org> To: Udo Schweigert <ust@cert.siemens.de> Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/secure/lib/libcrypto Makefile src/secure/lib/librsaintl Makefile src/secure/lib/libssl Makefile In-Reply-To: <20000821085619.A46904@alaska.cert.siemens.de> Message-ID: <Pine.BSF.4.21.0008210003390.7053-100000@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 21 Aug 2000, Udo Schweigert wrote: > > Were you trying to install with MAKE_IDEA or without? > > Without MAKE_IDEA. This is quite bizarre - I've run 2 make worlds from a clean 4.1 system (one with IDEA, one without), and one from -current, and all worked fine..I also havent heard any other build failures. I'd look for corruption of your source tree. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe <forsythe@alum.mit.edu> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 0:16:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 537C437B449; Mon, 21 Aug 2000 00:16:20 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA09836; Mon, 21 Aug 2000 00:16:20 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008210716.AAA09836@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 00:16:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors Makefile ports/editors/codecommander Makefile ports/editors/codecommander/files md5 ports/editors/codecommander/patches patch-aa ports/editors/codecommander/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 00:16:20 PDT Modified files: editors Makefile Removed files: editors/codecommander Makefile editors/codecommander/files md5 editors/codecommander/patches patch-aa editors/codecommander/pkg COMMENT DESCR PLIST Log: Remove codecommander and activate latte (repo-copied because the name of the project has been changed). Repo-copy by: asami Revision Changes Path 1.125 +2 -2 ports/editors/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 0:18:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 03B8237B42C; Mon, 21 Aug 2000 00:18:32 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA10196; Mon, 21 Aug 2000 00:18:32 -0700 (PDT) (envelope-from des@FreeBSD.org) Message-Id: <200008210718.AAA10196@freefall.freebsd.org> From: Dag-Erling Smorgrav <des@FreeBSD.org> Date: Mon, 21 Aug 2000 00:18:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libfetch ftp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG des 2000/08/21 00:18:31 PDT Modified files: lib/libfetch ftp.c Log: Grok 125 replies to passive RETR. This fixes an interoperability bug with Microsoft FTP Service. Reported by: asmodai, eivind Revision Changes Path 1.41 +3 -2 src/lib/libfetch/ftp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 0:18:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 936B337B424; Mon, 21 Aug 2000 00:18:50 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA10258; Mon, 21 Aug 2000 00:18:50 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008210718.AAA10258@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 00:18:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 00:18:50 PDT Modified files: . modules Log: Remove codecommander and add editors_latte --> ports/editors/latte (repo-copy). Revision Changes Path 1.1578 +2 -2 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 0:19:42 2000 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (beachchick.freebsd.dk [212.242.32.208]) by hub.freebsd.org (Postfix) with ESMTP id 7B57F37B423; Mon, 21 Aug 2000 00:19:35 -0700 (PDT) Received: from critter (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id JAA90723; Mon, 21 Aug 2000 09:19:35 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Kris Kennaway <kris@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files src/sys/dev/bktr bktr_os.c src/sys/dev/md md.c src/sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c src/sys/i386/conf GENERIC src/sys/i4b/driver i4b_ctl.c i4b_rbch.c i4b_tel.c i4b_trace.c ... In-Reply-To: Your message of "Sun, 20 Aug 2000 15:25:20 PDT." <Pine.BSF.4.21.0008201520250.48450-100000@freefall.freebsd.org> Date: Mon, 21 Aug 2000 09:19:35 +0200 Message-ID: <90718.966842375@critter> From: Poul-Henning Kamp <phk@critter.freebsd.dk> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <Pine.BSF.4.21.0008201520250.48450-100000@freefall.freebsd.org>, Kri s Kennaway writes: >On Sun, 20 Aug 2000, Poul-Henning Kamp wrote: > >> You have not yourself spent any time looking at this patch, have you ? > >Whether or not I am capable of reviewing this patch is beside the point, >there are a number of people in this technical community who are capable >and interested in this area, and soliciting their opinions before >committing is both sensible development style and polite to your fellow >developers, most of whom do attempt to solicit reviews instead of just >committing their code regardless of what others may think of it. You did see my announcement of the patch, didn't you ? -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 0:21:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B82A937B422; Mon, 21 Aug 2000 00:21:27 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA10659; Mon, 21 Aug 2000 00:21:27 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008210721.AAA10659@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 00:21:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators Makefile ports/emulators/vmware-tools Makefile ports/emulators/vmware-tools/files md5 ports/emulators/vmware-tools/pkg COMMENT DESCR MESSAGE PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 00:21:27 PDT Modified files: emulators Makefile Added files: emulators/vmware-tools Makefile emulators/vmware-tools/files md5 emulators/vmware-tools/pkg COMMENT DESCR MESSAGE PLIST Log: Add vmware-tools, VMware tools for FreeBSD guest OS (X Server only). PR: ports/20612 Submitted by: Makoto MATSUSHITA <matusita@jp.FreeBSD.org> Modified by: knu Revision Changes Path 1.56 +2 -1 ports/emulators/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 0:21:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A439437B59E; Mon, 21 Aug 2000 00:21:34 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA10711; Mon, 21 Aug 2000 00:21:34 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008210721.AAA10711@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 00:21:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 00:21:34 PDT Modified files: . modules Log: vmware-tools --> ports/emulators/vmware-tools Revision Changes Path 1.1579 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 0:23:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE4EC37B42C; Mon, 21 Aug 2000 00:23:53 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA11069; Mon, 21 Aug 2000 00:23:53 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008210723.AAA11069@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 00:23:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators Makefile ports/emulators/linux-vmware-toolbox Makefile ports/emulators/linux-vmware-toolbox/files md5 ports/emulators/linux-vmware-toolbox/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 00:23:53 PDT Modified files: emulators Makefile Added files: emulators/linux-vmware-toolbox Makefile emulators/linux-vmware-toolbox/files md5 emulators/linux-vmware-toolbox/pkg COMMENT DESCR PLIST Log: Add linux-vmware-toolbox, VMware toolbox for FreeBSD Guest OS (full-featured Linux version). PR: ports/20612 Submitted by: Makoto MATSUSHITA <matusita@jp.FreeBSD.org> Modified by: knu Revision Changes Path 1.57 +2 -1 ports/emulators/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 0:24: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 85B5137B422; Mon, 21 Aug 2000 00:23:58 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA11108; Mon, 21 Aug 2000 00:23:58 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008210723.AAA11108@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 00:23:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 00:23:58 PDT Modified files: . modules Log: linux-vmware-toolbox --> ports/emulators/linux-vmware-toolbox Revision Changes Path 1.1580 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 0:27:12 2000 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (beachchick.freebsd.dk [212.242.32.208]) by hub.freebsd.org (Postfix) with ESMTP id DAF9537B42C; Mon, 21 Aug 2000 00:27:06 -0700 (PDT) Received: from critter (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id JAA91480; Mon, 21 Aug 2000 09:27:02 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Warner Losh <imp@village.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files src/sys/dev/bktr bktr_os.c src/sys/dev/md md.c src/sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c src/sys/i386/conf GENERIC src/sys/i4b/driver i4b_ctl.c i4b_rbch.c i4b_tel.c i4b_trace.c ... In-Reply-To: Your message of "Sun, 20 Aug 2000 20:14:36 MDT." <200008210214.UAA35416@harmony.village.org> Date: Mon, 21 Aug 2000 09:27:02 +0200 Message-ID: <91478.966842822@critter> From: Poul-Henning Kamp <phk@critter.freebsd.dk> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200008210214.UAA35416@harmony.village.org>, Warner Losh writes: >In message <200008202134.OAA42108@freefall.freebsd.org> Poul-Henning Kamp writes: >: Add devfs cloning to: >: disk minilayer (ie: ad(4), sd(4), cd(4) etc etc) > >Why bother with sd? Shouldn't that be da? > >: md(4), tun(4), bpf(4), fd(4) >... >: Add commented out DEVFS to GENERIC > >Question: Is this DEVFS interrupt context safe? The old DEVFS didn't >deal well with devices arriving in an interrupt context, which CAM >does. This one is interrupt context safe. The assignment of the devfs inode number is a cheap atomic instruction which is the only thing done in interrupt context. The rest of the action happens in the context of the process accesing devs. This also means that if you have N devfs's which are rarely accessed the effort to keep their state up to date is optimized away -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 0:40:15 2000 Delivered-To: cvs-all@freebsd.org Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131]) by hub.freebsd.org (Postfix) with ESMTP id C30A037B423; Mon, 21 Aug 2000 00:40:09 -0700 (PDT) X-Envelope-Sender-Is: ust@cert.siemens.de (at relayer goliath.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by goliath.siemens.de (8.10.1/8.10.1) with ESMTP id e7L7e7c23350; Mon, 21 Aug 2000 09:40:08 +0200 (MET DST) Received: from mars.cert.siemens.de (ust.mchp.siemens.de [139.23.201.17]) by mail2.siemens.de (8.10.1/8.10.1) with ESMTP id e7L7e7a18084; Mon, 21 Aug 2000 09:40:07 +0200 (MET DST) Received: from alaska.cert.siemens.de (reims.mchp.siemens.de [139.23.202.134]) by mars.cert.siemens.de (8.11.0/8.11.0/Siemens CERT [ $Revision: 1.8 ]) with ESMTP id e7L7e7q25142; Mon, 21 Aug 2000 09:40:07 +0200 (CEST) Received: (from ust@localhost) by alaska.cert.siemens.de (8.11.0/8.11.0/alaska [ $Revision: 1.4 ]) id e7L7e6v23141; Mon, 21 Aug 2000 07:40:06 GMT Date: Mon, 21 Aug 2000 09:40:06 +0200 From: Udo Schweigert <ust@cert.siemens.de> To: Kris Kennaway <kris@FreeBSD.ORG> Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/secure/lib/libcrypto Makefile src/secure/lib/librsaintl Makefile src/secure/lib/libssl Makefile Message-ID: <20000821094006.A14677@alaska.cert.siemens.de> Mail-Followup-To: Kris Kennaway <kris@FreeBSD.ORG>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <20000821085619.A46904@alaska.cert.siemens.de> <Pine.BSF.4.21.0008210003390.7053-100000@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <Pine.BSF.4.21.0008210003390.7053-100000@freefall.freebsd.org>; from kris@FreeBSD.ORG on Mon, Aug 21, 2000 at 12:05:27AM -0700 X-Operating-System: FreeBSD 4.1-STABLE Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Aug 21, 2000 at 00:05:27 -0700, Kris Kennaway wrote: > On Mon, 21 Aug 2000, Udo Schweigert wrote: > > > > Were you trying to install with MAKE_IDEA or without? > > > > Without MAKE_IDEA. > > This is quite bizarre - I've run 2 make worlds from a clean 4.1 system > (one with IDEA, one without), and one from -current, and all worked > fine..I also havent heard any other build failures. > > I'd look for corruption of your source tree. > Sorry. You are right. My first try was a "make -DNOCLEAN world" which failed. The next tries were directly in /usr/src/secure/lib/libcrypto which also failed. Now I tried a "make world" and it just passed the openssl stuff without an error. Thanks and best regards. -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 ZT IK 3, Siemens CERT | Fax : +49 89 636 41166 D-81730 Muenchen / Germany | email : ust@cert.siemens.de PGP-2/5 fingerprint | D8 A5 DF 34 EC 87 E8 C6 E2 26 C4 D0 EE 80 36 B2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 0:45:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7EFED37B424; Mon, 21 Aug 2000 00:45:38 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA13051; Mon, 21 Aug 2000 00:45:38 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200008210745.AAA13051@freefall.freebsd.org> From: Poul-Henning Kamp <phk@FreeBSD.org> Date: Mon, 21 Aug 2000 00:45:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/md opt_devfs.h Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/08/21 00:45:38 PDT Modified files: sys/modules/md Makefile Added files: sys/modules/md opt_devfs.h Log: Add dummy opt_devfs.h file. Revision Changes Path 1.6 +2 -2 src/sys/modules/md/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 0:55:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D24137B42C; Mon, 21 Aug 2000 00:55:33 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA14131; Mon, 21 Aug 2000 00:55:33 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008210755.AAA14131@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 00:55:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/latte Makefile ports/editors/latte/files md5 ports/editors/latte/patches patch-aa ports/editors/latte/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 00:55:33 PDT Modified files: editors/latte Makefile editors/latte/files md5 editors/latte/patches patch-aa editors/latte/pkg COMMENT DESCR PLIST Log: Update to 0.9.11. Revision Changes Path 1.3 +6 -7 ports/editors/latte/Makefile 1.2 +1 -1 ports/editors/latte/files/md5 1.2 +2 -2 ports/editors/latte/patches/patch-aa 1.2 +1 -1 ports/editors/latte/pkg/COMMENT 1.2 +9 -5 ports/editors/latte/pkg/DESCR 1.2 +50 -52 ports/editors/latte/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 1:10: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from unicorn.blackhats.org (unicorn.blackhats.org [194.109.83.155]) by hub.freebsd.org (Postfix) with ESMTP id D17E037B424; Mon, 21 Aug 2000 01:09:55 -0700 (PDT) Received: by unicorn.blackhats.org (Postfix, from userid 1002) id 52B1012C4C; Mon, 21 Aug 2000 08:17:27 +0200 (CEST) Date: Mon, 21 Aug 2000 08:17:27 +0200 From: The Unicorn <unicorn@blackhats.org> To: Poul-Henning Kamp <phk@critter.freebsd.dk> Cc: Mark Murray <mark@grondar.za>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Message-ID: <20000821081727.J27780@unicorn.blackhats.org> References: <200008202036.e7KKaNG21382@grimreaper.grondar.za> <90115.966804256@critter> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <90115.966804256@critter>; from phk@critter.freebsd.dk on Sun, Aug 20, 2000 at 10:44:16PM +0200 X-Files: The Truth Is Out There! Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 20 Aug 2000, Poul-Henning Kamp wrote: > In message <200008202036.e7KKaNG21382@grimreaper.grondar.za>, Mark Murray write > s: > >> >> 55.411822290, 11.336162915, "phk" # Slagelse, Denmark > >> > > >> >Ye gods! > >> > > >> >That is accurate (within an order of magnitute) to a millimeter!! > >> > >> yes :-) > > > >OK, this begs the questions; which square millimetre did you > >choose, why, and how? :-) > > It's actually the location of the phase center of the GPS antenna > mounted on a pole behind my lab, so on average it's about 20 m off > in the horizontal plane and about 5 m wrong in the vertical plane, > but since we don't have heights in xearth that hardly matters :-) And in any case (more than) close enough for aiming an ICBM ;-) > -- > Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 > phk@FreeBSD.ORG | TCP/IP since RFC 956 > FreeBSD coreteam member | BSD since 4.3-tahoe > Never attribute to malice what can adequately be explained by incompetence. --- End of Quoted Text --- Ciao, Unicorn. -- ======= _ __,;;;/ TimeWaster ================================================ ,;( )_, )~\| A Truly Wise Man Never Plays PGP: 64 07 5D 4C 3F 81 22 73 ;; // `--; Leapfrog With A Unicorn... 52 9D 87 08 51 AA 35 F0 ==='= ;\ = | ==== Youth is Not a Time in Life, It is a State of Mind! ======= Echelon Teasers: NSA CIA FBI Mossad BVD MI5 Cocaine Cuba Revolution Espionage To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 1:19:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E162237B424; Mon, 21 Aug 2000 01:19:46 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA18085; Mon, 21 Aug 2000 01:19:46 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008210819.BAA18085@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Mon, 21 Aug 2000 01:19:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.obj.mk X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/21 01:19:46 PDT Modified files: (Branch: RELENG_4) share/mk bsd.obj.mk Log: MFC rev 1.33: quote the argument to test -n . Revision Changes Path 1.30.2.4 +2 -2 src/share/mk/bsd.obj.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 1:59:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D2B037B42C; Mon, 21 Aug 2000 01:59:13 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA22605; Mon, 21 Aug 2000 01:59:13 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008210859.BAA22605@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 01:59:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/grn Makefile ports/news/grn/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 01:59:13 PDT Modified files: news/grn Makefile news/grn/files md5 Log: Update to 0.0.27. Revision Changes Path 1.2 +2 -2 ports/news/grn/Makefile 1.2 +1 -1 ports/news/grn/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 2:39:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4375137B43E; Mon, 21 Aug 2000 02:39:09 -0700 (PDT) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA27870; Mon, 21 Aug 2000 02:39:09 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Message-Id: <200008210939.CAA27870@freefall.freebsd.org> From: Nick Hibma <n_hibma@FreeBSD.org> Date: Mon, 21 Aug 2000 02:39:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb umass.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG n_hibma 2000/08/21 02:39:08 PDT Modified files: sys/dev/usb umass.c Log: Fix up the command in the destination buffer, not the source. This makes the conversion from Test-Unit-Ready to Start-Stop-Unit in the case of SCSI (Iomega Zip drive) actually work. Revision Changes Path 1.33 +3 -3 src/sys/dev/usb/umass.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 3: 7:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D54FA37B449; Mon, 21 Aug 2000 03:07:37 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA32534; Mon, 21 Aug 2000 03:07:37 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008211007.DAA32534@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 03:07:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/adasockets Makefile ports/sysutils/battstat-applet Makefile ports/ftp/caitoo Makefile ports/net/crescendo Makefile ports/graphics/dia Makefile ports/devel/dryad Makefile ports/biology/emboss Makefile ports/x11-toolkits/fox Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 03:07:37 PDT Modified files: net/adasockets Makefile sysutils/battstat-applet Makefile ftp/caitoo Makefile net/crescendo Makefile graphics/dia Makefile devel/dryad Makefile biology/emboss Makefile x11-toolkits/fox Makefile devel/gnomedebug Makefile x11-toolkits/gtk-- Makefile x11-toolkits/guile-gnome Makefile x11-toolkits/guile-gtk Makefile textproc/jade Makefile graphics/jpeg Makefile irc/kvirc Makefile net/kxicq Makefile devel/libol Makefile lang/oo2c Makefile textproc/openjade Makefile net/openldap Makefile palm/pilot-link Makefile graphics/plotutils Makefile x11-toolkits/py-gtk Makefile x11-toolkits/py-kde Makefile x11-toolkits/py-qt Makefile devel/sip Makefile devel/t1lib Makefile x11-wm/windowmaker-i18n Makefile audio/wsoundserver Makefile Log: USE_LIBTOOL implies GNU_CONFIGURE, so remove redundant GNU_CONFIGURE lines. Revision Changes Path 1.2 +1 -2 ports/net/adasockets/Makefile 1.2 +1 -2 ports/sysutils/battstat-applet/Makefile 1.2 +1 -2 ports/ftp/caitoo/Makefile 1.3 +1 -2 ports/net/crescendo/Makefile 1.8 +1 -2 ports/graphics/dia/Makefile 1.7 +1 -2 ports/devel/dryad/Makefile 1.3 +1 -2 ports/biology/emboss/Makefile 1.10 +1 -2 ports/x11-toolkits/fox/Makefile 1.6 +1 -2 ports/devel/gnomedebug/Makefile 1.24 +1 -2 ports/x11-toolkits/gtk--/Makefile 1.7 +1 -2 ports/x11-toolkits/guile-gnome/Makefile 1.9 +1 -2 ports/x11-toolkits/guile-gtk/Makefile 1.27 +1 -2 ports/textproc/jade/Makefile 1.25 +1 -2 ports/graphics/jpeg/Makefile 1.13 +1 -2 ports/irc/kvirc/Makefile 1.4 +1 -2 ports/net/kxicq/Makefile 1.5 +1 -2 ports/devel/libol/Makefile 1.2 +1 -2 ports/lang/oo2c/Makefile 1.26 +1 -2 ports/textproc/openjade/Makefile 1.17 +1 -2 ports/net/openldap/Makefile 1.39 +1 -2 ports/palm/pilot-link/Makefile 1.16 +1 -2 ports/graphics/plotutils/Makefile 1.39 +1 -2 ports/x11-toolkits/py-gtk/Makefile 1.3 +1 -2 ports/x11-toolkits/py-kde/Makefile 1.3 +1 -2 ports/x11-toolkits/py-qt/Makefile 1.7 +1 -2 ports/devel/sip/Makefile 1.11 +1 -2 ports/devel/t1lib/Makefile 1.78 +1 -2 ports/x11-wm/windowmaker-i18n/Makefile 1.17 +1 -2 ports/audio/wsoundserver/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 3:17: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.ninth-circle.org (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id 19D1D37B423; Mon, 21 Aug 2000 03:16:51 -0700 (PDT) Received: (from asmodai@localhost) by lucifer.ninth-circle.org (8.9.3/8.9.3) id MAA32205; Mon, 21 Aug 2000 12:16:46 +0200 (CEST) (envelope-from asmodai) Date: Mon, 21 Aug 2000 12:16:45 +0200 From: Jeroen Ruigrok van der Werven <jruigrok@via-net-works.nl> To: Dag-Erling Smorgrav <des@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libfetch ftp.c Message-ID: <20000821121645.H12581@lucifer.bart.nl> References: <200008210718.AAA10196@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008210718.AAA10196@freefall.freebsd.org>; from des@FreeBSD.org on Mon, Aug 21, 2000 at 12:18:31AM -0700 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20000821 09:20], Dag-Erling Smorgrav (des@FreeBSD.org) wrote: > Log: > Grok 125 replies to passive RETR. This fixes an interoperability bug with > Microsoft FTP Service. Cool thanks. =) But Eivind said to me you didn't experience the problem on your development box. But it was still a problem then? -- Jeroen Ruigrok van der Werven Network- and systemadministrator <jruigrok@via-net-works.nl> VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl Strength, like beauty, is in the eyes of the beholder... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 3:21:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7DCC937B423; Mon, 21 Aug 2000 03:21:31 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA34061; Mon, 21 Aug 2000 03:21:31 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008211021.DAA34061@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 03:21:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ee ee.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 03:21:31 PDT Modified files: usr.bin/ee ee.c Log: Fix a bug introduced by my own previous commit (addition of the current line/column display). I overlooked that ee(1) doesn't maintain proper line numbering when adding/removing lines, so after those operations linenumber displayed may not match the reality. Also use proper variable for current column diaplay, because the one used previously reflects the offset of current char, which doesn't equial screen position when tabs present. Reviewed by: bp Revision Changes Path 1.19 +19 -4 src/usr.bin/ee/ee.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 3:29:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF4F337B42C; Mon, 21 Aug 2000 03:29:09 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA35228; Mon, 21 Aug 2000 03:29:09 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200008211029.DAA35228@freefall.freebsd.org> From: "Jordan K. Hubbard" <jkh@FreeBSD.org> Date: Mon, 21 Aug 2000 03:29:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/camserv Makefile ports/graphics/camserv/files md5 ports/graphics/camserv/patches patch-aa ports/graphics/camserv/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/08/21 03:29:09 PDT Modified files: graphics Makefile Added files: graphics/camserv Makefile graphics/camserv/files md5 graphics/camserv/patches patch-aa graphics/camserv/pkg COMMENT DESCR PLIST Log: Camserv is a program to do streaming video through the web. Streaming video can be sent to both Netscape and Internet Explorer clients in multi-part JPEG format. Supports cards handled by the bktr(4) driver. PR: 20116 Submitted by: Charles Hein <chein@GeekDude.com> Revision Changes Path 1.210 +2 -1 ports/graphics/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 3:29:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DCF737B43F; Mon, 21 Aug 2000 03:29:15 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA35268; Mon, 21 Aug 2000 03:29:15 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200008211029.DAA35268@freefall.freebsd.org> From: "Jordan K. Hubbard" <jkh@FreeBSD.org> Date: Mon, 21 Aug 2000 03:29:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/08/21 03:29:15 PDT Modified files: . modules Log: camserv --> ports/graphics/camserv Revision Changes Path 1.1581 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 3:55:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C67F437B423; Mon, 21 Aug 2000 03:55:21 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA38205; Mon, 21 Aug 2000 03:55:21 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008211055.DAA38205@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 03:55:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/screem Makefile ports/www/screem/files md5 ports/www/screem/patches patch-ab patch-ac ports/www/screem/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 03:55:21 PDT Modified files: www/screem Makefile www/screem/files md5 www/screem/pkg PLIST Added files: www/screem/patches patch-ab Removed files: www/screem/patches patch-ac Log: Update to 0.3.0. Revision Changes Path 1.14 +4 -3 ports/www/screem/Makefile 1.5 +1 -1 ports/www/screem/files/md5 1.6 +63 -0 ports/www/screem/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 4:35:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 381E637B43F; Mon, 21 Aug 2000 04:35:31 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA46115; Mon, 21 Aug 2000 04:35:31 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008211135.EAA46115@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 04:35:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gtkstep-pastel Makefile ports/x11-toolkits/gtkstep-pastel/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 04:35:30 PDT Modified files: x11-toolkits/gtkstep-pastel Makefile x11-toolkits/gtkstep-pastel/files md5 Log: Update to 200007290343. Revision Changes Path 1.2 +5 -7 ports/x11-toolkits/gtkstep-pastel/Makefile 1.2 +1 -1 ports/x11-toolkits/gtkstep-pastel/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 4:56:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B0F6F37B422; Mon, 21 Aug 2000 04:56:53 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA48486; Mon, 21 Aug 2000 04:56:53 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008211156.EAA48486@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 04:56:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/colorstep Makefile ports/x11-toolkits/colorstep/files md5 ports/x11-toolkits/colorstep/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 04:56:53 PDT Modified files: x11-toolkits Makefile Added files: x11-toolkits/colorstep Makefile x11-toolkits/colorstep/files md5 x11-toolkits/colorstep/pkg COMMENT DESCR PLIST Log: Add colorstep a nice GTK+ theme engine based on GtkStep and Step-pastel. Revision Changes Path 1.88 +2 -1 ports/x11-toolkits/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 4:57:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E382937B42C; Mon, 21 Aug 2000 04:57:09 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA48522; Mon, 21 Aug 2000 04:57:09 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008211157.EAA48522@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 04:57:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 04:57:09 PDT Modified files: . modules Log: colorstep --> ports/x11-toolkits/colorstep Revision Changes Path 1.1582 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 5:16:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 09E7837B42C; Mon, 21 Aug 2000 05:16:45 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA51897; Mon, 21 Aug 2000 05:16:45 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008211216.FAA51897@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 05:16:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/engradient Makefile ports/x11-toolkits/engradient/files md5 ports/x11-toolkits/engradient/patches patch-aa ports/x11-toolkits/engradient/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 05:16:44 PDT Modified files: x11-toolkits Makefile Added files: x11-toolkits/engradient Makefile x11-toolkits/engradient/files md5 x11-toolkits/engradient/patches patch-aa x11-toolkits/engradient/pkg COMMENT DESCR PLIST Log: Add engradient - a GTK+ engine-gradient theme based off of the IceGradient theme. Revision Changes Path 1.89 +2 -1 ports/x11-toolkits/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 5:17: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BDF637B422; Mon, 21 Aug 2000 05:17:02 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA51955; Mon, 21 Aug 2000 05:17:02 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008211217.FAA51955@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 05:17:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 05:17:02 PDT Modified files: . modules Log: engradient --> ports/x11-toolkits/engradient Revision Changes Path 1.1583 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 5:25:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 85D5837B423; Mon, 21 Aug 2000 05:25:09 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA53000; Mon, 21 Aug 2000 05:25:09 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008211225.FAA53000@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Mon, 21 Aug 2000 05:25:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys poll.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/21 05:25:09 PDT Modified files: sys/sys poll.h Log: Synchronize the poll() prototype with the one provided in the poll(2) manual page. PR: 20677 Submitted by: "Ralf S. Engelschall" <rse@engelschall.com> Revision Changes Path 1.7 +2 -2 src/sys/sys/poll.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 5:26: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 04D1D37B423; Mon, 21 Aug 2000 05:25:59 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA53080; Mon, 21 Aug 2000 05:25:59 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008211225.FAA53080@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Mon, 21 Aug 2000 05:25:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys poll.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/21 05:25:58 PDT Modified files: (Branch: RELENG_4) sys/sys poll.h Log: MFC rev 1.7: sync poll() prototype with manpage. Revision Changes Path 1.6.2.1 +2 -2 src/sys/sys/poll.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 5:46: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A69E737B42C; Mon, 21 Aug 2000 05:45:57 -0700 (PDT) Received: (from motoyuki@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA55529; Mon, 21 Aug 2000 05:45:57 -0700 (PDT) (envelope-from motoyuki@FreeBSD.org) Message-Id: <200008211245.FAA55529@freefall.freebsd.org> From: Motoyuki Konno <motoyuki@FreeBSD.org> Date: Mon, 21 Aug 2000 05:45:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ja/releases index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG motoyuki 2000/08/21 05:45:57 PDT Modified files: ja/releases index.sgml Log: Fix typo: 4.0R release notes already translated into Japanese. Revision Changes Path 1.30 +3 -3 www/ja/releases/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 6:19: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E87D937B422; Mon, 21 Aug 2000 06:18:56 -0700 (PDT) Received: (from tanimura@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA61107; Mon, 21 Aug 2000 06:18:56 -0700 (PDT) (envelope-from tanimura@FreeBSD.org) Message-Id: <200008211318.GAA61107@freefall.freebsd.org> From: Seigo Tanimura <tanimura@FreeBSD.org> Date: Mon, 21 Aug 2000 06:18:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/rp rp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tanimura 2000/08/21 06:18:56 PDT Modified files: sys/dev/rp rp.c Log: Fix a bug upon initialization. (_INDX_ADDR -> _INDX_DATA) Revision Changes Path 1.37 +7 -6 src/sys/dev/rp/rp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 7: 8:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C115E37B424; Mon, 21 Aug 2000 07:08:44 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA29584; Mon, 21 Aug 2000 07:08:44 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008211408.HAA29584@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 07:08:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/doc/papers/bufbio bio.ms X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 07:08:44 PDT Modified files: share/doc/papers/bufbio bio.ms Log: Fix typos. Approved by: phk Revision Changes Path 1.2 +4 -4 src/share/doc/papers/bufbio/bio.ms To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 7:17: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F05B637B422; Mon, 21 Aug 2000 07:17:05 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA30737; Mon, 21 Aug 2000 07:17:05 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008211417.HAA30737@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 07:17:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/icegradient Makefile ports/x11-toolkits/icegradient/files blabla md5 ports/x11-toolkits/icegradient/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 07:17:05 PDT Modified files: x11-toolkits Makefile Added files: x11-toolkits/icegradient Makefile x11-toolkits/icegradient/files blabla md5 x11-toolkits/icegradient/pkg COMMENT DESCR PLIST Log: Add icegradient - a GTK+ gradient theme engine based on ThinIce. Revision Changes Path 1.90 +2 -1 ports/x11-toolkits/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 7:17:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E5D937B422; Mon, 21 Aug 2000 07:17:31 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA30812; Mon, 21 Aug 2000 07:17:31 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008211417.HAA30812@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 07:17:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 07:17:31 PDT Modified files: . modules Log: icegradient --> ports/x11-toolkits/icegradient Revision Changes Path 1.1584 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 7:29:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E000A37B423; Mon, 21 Aug 2000 07:29:16 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA32503; Mon, 21 Aug 2000 07:29:16 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008211429.HAA32503@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 07:29:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gtk-engines-collection Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 07:29:16 PDT Modified files: x11-toolkits/gtk-engines-collection Makefile Log: Add colorstep, engradient and icegradient. Revision Changes Path 1.5 +5 -2 ports/x11-toolkits/gtk-engines-collection/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 7:33:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B57137B424; Mon, 21 Aug 2000 07:33:21 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA32987; Mon, 21 Aug 2000 07:33:21 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008211433.HAA32987@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Mon, 21 Aug 2000 07:33:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/21 07:33:21 PDT Modified files: etc rc Log: After some discussion with markm, back out most of rev 1.221, which really wasn't such a hot idea in retrospect. If the random device isn't available, it probably isn't wanted. If it's wanted, it should be enabled in loader.conf. Revision Changes Path 1.229 +2 -10 src/etc/rc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 7:35: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 4A66337B43E; Mon, 21 Aug 2000 07:35:01 -0700 (PDT) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id KAA06425; Mon, 21 Aug 2000 10:35:01 -0400 (EDT) (envelope-from wollman) Date: Mon, 21 Aug 2000 10:35:01 -0400 (EDT) From: Garrett Wollman <wollman@khavrinen.lcs.mit.edu> Message-Id: <200008211435.KAA06425@khavrinen.lcs.mit.edu> To: Brian Fundakowski Feldman <green@FreeBSD.ORG> Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make Makefile config.h job.c main.c In-Reply-To: <Pine.BSF.4.21.0008191351290.60744-100000@green.dyndns.org> References: <399EC343.75A93A8@cup.hp.com> <Pine.BSF.4.21.0008191351290.60744-100000@green.dyndns.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG <<On Sat, 19 Aug 2000 13:57:45 -0400 (EDT), Brian Fundakowski Feldman <green@FreeBSD.ORG> said: > Building make(1) specially to change the default isn't wrong: if the user > is advanced enough to be changing make(1)'s default shell ...then the user is totally whacked. make(1) is *defined* to use the Bourne shell, period. It's a bug that our make even allows the user to change this. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 7:37:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 57E8037B422; Mon, 21 Aug 2000 07:37:53 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA33599; Mon, 21 Aug 2000 07:37:53 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008211437.HAA33599@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Mon, 21 Aug 2000 07:37:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/21 07:37:53 PDT Modified files: etc rc Log: Only whack pseudo-terminals into shape if they exist. They might not yet exist in the DEVFS case. Revision Changes Path 1.230 +6 -4 src/etc/rc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 7:42:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 80C6037B43C; Mon, 21 Aug 2000 07:42:49 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA34291; Mon, 21 Aug 2000 07:42:49 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200008211442.HAA34291@freefall.freebsd.org> From: Poul-Henning Kamp <phk@FreeBSD.org> Date: Mon, 21 Aug 2000 07:42:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/kerninclude kerninclude.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/08/21 07:42:49 PDT Modified files: tools/tools/kerninclude kerninclude.sh Log: Make this work with current makefiles again. Revision Changes Path 1.3 +22 -23 src/tools/tools/kerninclude/kerninclude.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 7:45:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A79A37B423; Mon, 21 Aug 2000 07:45:20 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA34649; Mon, 21 Aug 2000 07:45:20 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200008211445.HAA34649@freefall.freebsd.org> From: Poul-Henning Kamp <phk@FreeBSD.org> Date: Mon, 21 Aug 2000 07:45:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/devfs devfs_devs.c devfs_vfsops.c devfs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/08/21 07:45:20 PDT Modified files: sys/fs/devfs devfs_devs.c devfs_vfsops.c devfs_vnops.c Log: Fix devfs_access() bug on directories. Remove unused #includes. Bug spotted by: markm Revision Changes Path 1.2 +1 -4 src/sys/fs/devfs/devfs_devs.c 1.2 +1 -3 src/sys/fs/devfs/devfs_vfsops.c 1.2 +10 -10 src/sys/fs/devfs/devfs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 7:58:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B50337B424; Mon, 21 Aug 2000 07:58:43 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA36335; Mon, 21 Aug 2000 07:58:43 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200008211458.HAA36335@freefall.freebsd.org> From: Ade Lovett <ade@FreeBSD.org> Date: Mon, 21 Aug 2000 07:58:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/pspell Makefile ports/textproc/pspell/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/08/21 07:58:43 PDT Modified files: textproc/pspell Makefile textproc/pspell/files md5 Log: Update to 0.11.2 Revision Changes Path 1.8 +3 -3 ports/textproc/pspell/Makefile 1.4 +1 -1 ports/textproc/pspell/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 7:59: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 33FC837B43C; Mon, 21 Aug 2000 07:59:01 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA36429; Mon, 21 Aug 2000 07:59:01 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200008211459.HAA36429@freefall.freebsd.org> From: Ade Lovett <ade@FreeBSD.org> Date: Mon, 21 Aug 2000 07:59:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/aspell Makefile ports/textproc/aspell/files md5 ports/textproc/aspell/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/08/21 07:59:01 PDT Modified files: textproc/aspell Makefile textproc/aspell/files md5 textproc/aspell/pkg PLIST Log: Update to 0.32.5 Revision Changes Path 1.24 +3 -3 ports/textproc/aspell/Makefile 1.13 +1 -1 ports/textproc/aspell/files/md5 1.12 +2 -1 ports/textproc/aspell/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 7:59:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 70F4837B449; Mon, 21 Aug 2000 07:59:20 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA36491; Mon, 21 Aug 2000 07:59:20 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200008211459.HAA36491@freefall.freebsd.org> From: Ade Lovett <ade@FreeBSD.org> Date: Mon, 21 Aug 2000 07:59:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/gaspell Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/08/21 07:59:19 PDT Modified files: textproc/gaspell Makefile Log: Follow new shlib revision from textproc/aspell Revision Changes Path 1.7 +2 -2 ports/textproc/gaspell/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 7:59:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2179837B42C; Mon, 21 Aug 2000 07:59:37 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA36609; Mon, 21 Aug 2000 07:59:37 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200008211459.HAA36609@freefall.freebsd.org> From: Ade Lovett <ade@FreeBSD.org> Date: Mon, 21 Aug 2000 07:59:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/eog Makefile ports/graphics/eog/files md5 ports/graphics/eog/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/08/21 07:59:37 PDT Modified files: graphics/eog Makefile graphics/eog/files md5 graphics/eog/pkg PLIST Log: Update to 0.4 Revision Changes Path 1.14 +7 -5 ports/graphics/eog/Makefile 1.4 +1 -1 ports/graphics/eog/files/md5 1.4 +41 -0 ports/graphics/eog/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 8:47:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A7DF137B422; Mon, 21 Aug 2000 08:47:10 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA43743; Mon, 21 Aug 2000 08:47:10 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008211547.IAA43743@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 08:47:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/maelstrom Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 08:47:10 PDT Modified files: games/maelstrom Makefile Log: Fix security issues. Submitted by: kris Revision Changes Path 1.20 +7 -1 ports/games/maelstrom/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 9:40:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 132DC37B422; Mon, 21 Aug 2000 09:40:13 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA51481; Mon, 21 Aug 2000 09:40:13 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200008211640.JAA51481@freefall.freebsd.org> From: "Chris D. Faulhaber" <jedgar@FreeBSD.org> Date: Mon, 21 Aug 2000 09:40:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/yank Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/08/21 09:40:12 PDT Modified files: deskutils/yank Makefile Log: o Install in ${X11BASE} instead of ${LOCALBASE} so GNOME panel finds the application files. o Change dependencies to gnomecore instead of gnomelibs to get rid of the 'extra' failures. Submitted by: ade Revision Changes Path 1.9 +3 -4 ports/deskutils/yank/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 9:46: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E95FF37B423; Mon, 21 Aug 2000 09:45:57 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA52345; Mon, 21 Aug 2000 09:45:57 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200008211645.JAA52345@freefall.freebsd.org> From: Ade Lovett <ade@FreeBSD.org> Date: Mon, 21 Aug 2000 09:45:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/gnucash Makefile ports/deskutils/gnucash/files md5 ports/deskutils/gnucash/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/08/21 09:45:57 PDT Modified files: deskutils/gnucash Makefile deskutils/gnucash/files md5 deskutils/gnucash/pkg PLIST Log: Update to 1.4.4 Submitted by: will (in part) Revision Changes Path 1.20 +12 -21 ports/deskutils/gnucash/Makefile 1.6 +1 -1 ports/deskutils/gnucash/files/md5 1.5 +2 -1 ports/deskutils/gnucash/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 10: 8:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 40A0B37B423; Mon, 21 Aug 2000 10:08:26 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA57501; Mon, 21 Aug 2000 10:08:26 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200008211708.KAA57501@freefall.freebsd.org> From: "Chris D. Faulhaber" <jedgar@FreeBSD.org> Date: Mon, 21 Aug 2000 10:08:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/kdbg/pkg DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/08/21 10:08:26 PDT Modified files: devel/kdbg/pkg DESCR Log: Fix fennerism (correct WWW) Revision Changes Path 1.3 +1 -1 ports/devel/kdbg/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 12:10:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4854537B666; Mon, 21 Aug 2000 12:10:19 -0700 (PDT) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA75880; Mon, 21 Aug 2000 12:10:19 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200008211910.MAA75880@freefall.freebsd.org> From: Ben Smithurst <ben@FreeBSD.org> Date: Mon, 21 Aug 2000 12:10:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/08/21 12:10:18 PDT Modified files: en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml Log: Mention mergemaster(8) in the "Update /etc" and "Update /dev" sections, plus a couple of other small changes to the "Update /etc" section. Revision Changes Path 1.55 +30 -17 doc/en_US.ISO_8859-1/books/handbook/cutting-edge/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 12:27: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8676637B822; Mon, 21 Aug 2000 12:27:04 -0700 (PDT) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA77678; Mon, 21 Aug 2000 12:27:04 -0700 (PDT) (envelope-from dannyboy@FreeBSD.org) Message-Id: <200008211927.MAA77678@freefall.freebsd.org> From: Daniel Harris <dannyboy@FreeBSD.org> Date: Mon, 21 Aug 2000 12:27:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/wine/files README.patch patch-3.3-sys-ldtshare X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dannyboy 2000/08/21 12:27:04 PDT Modified files: emulators/wine/files README.patch Removed files: emulators/wine/files patch-3.3-sys-ldtshare Log: Removed patch-3.3-sys-ldtshare and update README.patch accordingly. PR: 11287 Submitted by: MAINTAINER Revision Changes Path 1.4 +2 -29 ports/emulators/wine/files/README.patch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 12:52:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DE1F837B505; Mon, 21 Aug 2000 12:52:41 -0700 (PDT) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA80941; Mon, 21 Aug 2000 12:52:41 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Message-Id: <200008211952.MAA80941@freefall.freebsd.org> From: Chris Piazza <cpiazza@FreeBSD.org> Date: Mon, 21 Aug 2000 12:52:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/gnapster Makefile ports/audio/gnapster/files md5 ports/audio/gnapster/patches patch-ae patch-af X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cpiazza 2000/08/21 12:52:41 PDT Modified files: audio/gnapster Makefile audio/gnapster/files md5 Added files: audio/gnapster/patches patch-ae patch-af Log: Update to 1.3.11 Submitted by: Roman Shterenzon <roman@harmonic.co.il> Revision Changes Path 1.16 +2 -2 ports/audio/gnapster/Makefile 1.7 +1 -1 ports/audio/gnapster/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 12:58:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C877B37B449; Mon, 21 Aug 2000 12:58:48 -0700 (PDT) Received: (from dirk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA81883; Mon, 21 Aug 2000 12:58:48 -0700 (PDT) (envelope-from dirk@FreeBSD.org) Message-Id: <200008211958.MAA81883@freefall.freebsd.org> From: Dirk Froemberg <dirk@FreeBSD.org> Date: Mon, 21 Aug 2000 12:58:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/a2ps-letter/patches patch-aa ports/print/a2ps-letter/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dirk 2000/08/21 12:58:48 PDT Modified files: print/a2ps-letter/patches patch-aa print/a2ps-letter/pkg PLIST Log: Prevent a2ps from going crazy: Don't let it install files in /. No response from: maintainer Revision Changes Path 1.11 +11 -2 ports/print/a2ps-letter/patches/patch-aa 1.20 +5 -0 ports/print/a2ps-letter/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 13: 4:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D0D137B424; Mon, 21 Aug 2000 13:04:54 -0700 (PDT) Received: (from dirk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA82788; Mon, 21 Aug 2000 13:04:54 -0700 (PDT) (envelope-from dirk@FreeBSD.org) Message-Id: <200008212004.NAA82788@freefall.freebsd.org> From: Dirk Froemberg <dirk@FreeBSD.org> Date: Mon, 21 Aug 2000 13:04:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/tidy Makefile ports/www/tidy/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dirk 2000/08/21 13:04:54 PDT Modified files: www/tidy Makefile www/tidy/files md5 Log: Upgrade to Aug 4, 2000 version. PR: ports/20732 Submitted by: Scott A. Kenney <saken@hotel.rmta.org> (maintainer) Revision Changes Path 1.19 +3 -3 ports/www/tidy/Makefile 1.13 +1 -1 ports/www/tidy/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 13:54:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 239C837B443; Mon, 21 Aug 2000 13:54:45 -0700 (PDT) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA90031; Mon, 21 Aug 2000 13:54:45 -0700 (PDT) (envelope-from dannyboy@FreeBSD.org) Message-Id: <200008212054.NAA90031@freefall.freebsd.org> From: Daniel Harris <dannyboy@FreeBSD.org> Date: Mon, 21 Aug 2000 13:54:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/kcd Makefile ports/misc/kcd/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dannyboy 2000/08/21 13:54:44 PDT Modified files: misc/kcd Makefile misc/kcd/files md5 Log: Update to version 5.0.2. PR: 20747 Submitted by: Ports Fury Revision Changes Path 1.7 +2 -2 ports/misc/kcd/Makefile 1.4 +1 -1 ports/misc/kcd/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 14: 0:27 2000 Delivered-To: cvs-all@freebsd.org Received: from genius.systems.pavilion.net (genesis.tao.org.uk [194.242.131.254]) by hub.freebsd.org (Postfix) with ESMTP id 03C1B37B424; Mon, 21 Aug 2000 14:00:21 -0700 (PDT) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id DAF1A9B07; Mon, 21 Aug 2000 22:00:19 +0100 (BST) Date: Mon, 21 Aug 2000 22:00:19 +0100 From: Josef Karthauser <joe@pavilion.net> To: Chris Piazza <cpiazza@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/audio/gnapster Makefile ports/audio/gnapster/files md5 ports/audio/gnapster/patches patch-ae patch-af Message-ID: <20000821220019.A577@pavilion.net> References: <200008211952.MAA80941@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008211952.MAA80941@freefall.freebsd.org>; from cpiazza@FreeBSD.org on Mon, Aug 21, 2000 at 12:52:41PM -0700 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Aug 21, 2000 at 12:52:41PM -0700, Chris Piazza wrote: > cpiazza 2000/08/21 12:52:41 PDT > > Modified files: > audio/gnapster Makefile > audio/gnapster/files md5 > Added files: > audio/gnapster/patches patch-ae patch-af > Log: > Update to 1.3.11 > > Submitted by: Roman Shterenzon <roman@harmonic.co.il> Are they still developing this thing? Joe -- Josef Karthauser FreeBSD: How many times have you booted today? Technical Manager Viagra for your server (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@uk.freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 14: 0:45 2000 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id 8ABD037B507; Mon, 21 Aug 2000 14:00:35 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.awfulhak.org [172.16.0.12]) by Awfulhak.org (8.9.3/8.9.3) with ESMTP id VAA14565; Mon, 21 Aug 2000 21:59:08 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.0/8.11.0) with ESMTP id e7LKx2473044; Mon, 21 Aug 2000 21:59:02 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200008212059.e7LKx2473044@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Brian Somers <brian@Awfulhak.org> Cc: Peter Wemm <peter@netplex.com.au>, Brian Somers <brian@FreeBSD.ORG>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@Awfulhak.org Subject: Moving setproctitle() to libc (was: Re: cvs commit: src/usr.sbin/pppctl Makefile pppctl.c) In-Reply-To: Message from Brian Somers <brian@Awfulhak.org> of "Wed, 16 Aug 2000 21:43:37 BST." <200008162043.VAA11343@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 21 Aug 2000 21:59:01 +0100 From: Brian Somers <brian@Awfulhak.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm gonna ask for a repo-copy of src/lib/libutil/setproctitle.{c,3} to src/lib/libc/gen/ in a couple of days. If anybody has any objections, please make them now as I do not intend to reverse this (due to the obvious bootstrap problems). > > Brian Somers wrote: > > > > brian 2000/08/16 05:01:18 PDT > > > > > > > > Modified files: > > > > usr.sbin/pppctl Makefile pppctl.c > > > > Log: > > > > If the -p option is used, use setproctitle() to hide it's argument > > > > (a password) asap. > > > > > > > > Revision Changes Path > > > > 1.6 +3 -3 src/usr.sbin/pppctl/Makefile > > > > 1.22 +36 -3 src/usr.sbin/pppctl/pppctl.c > > > > > > Interestingly enough, it turns out that both OpenBSD and NetBSD have > > > setproctitle() in libc rather than in libutil. Does anyone have any > > > objections to us following suit ? At a guess I would think > > > setproctitle() isn't used in any of the bootstrap/build stuff, so it > > > would *probably* be an easy transition if nobody complains.... > > > > I had been planning to move it. It causes problems in libperl.so as it > > would add an extra dynamic dependency to libutil. > > What about namespace pollution issues ? If this is moved, are the > ANSI/POSIX/c99 types going to raise the banners ? > > > Cheers, > > -Peter > > -- > > Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au > > "All of this is for nothing if we don't go to the stars" - JMS/B5 > > -- > Brian <brian@Awfulhak.org> <brian@[uk.]FreeBSD.org> > <http://www.Awfulhak.org> <brian@[uk.]OpenBSD.org> > Don't _EVER_ lose your sense of humour ! > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 14: 5:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C58B37B446; Mon, 21 Aug 2000 14:05:45 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA92682; Mon, 21 Aug 2000 14:05:45 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008212105.OAA92682@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 14:05:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/alpha/gen _setjmp.S setjmp.S sigsetjmp.S X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 14:05:45 PDT Modified files: lib/libc/alpha/gen _setjmp.S setjmp.S sigsetjmp.S Log: Remove duplicate FreeBSD id tags. Revision Changes Path 1.6 +1 -2 src/lib/libc/alpha/gen/_setjmp.S 1.13 +1 -2 src/lib/libc/alpha/gen/setjmp.S 1.6 +1 -2 src/lib/libc/alpha/gen/sigsetjmp.S To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 14: 8:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F23737B424; Mon, 21 Aug 2000 14:08:35 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA93100; Mon, 21 Aug 2000 14:08:35 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008212108.OAA93100@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 14:08:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/alpha/gen _setjmp.S X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 14:08:35 PDT Modified files: (Branch: RELENG_4) lib/libc/alpha/gen _setjmp.S Log: MFC: Remove extra FreeBSD id tag. Revision Changes Path 1.4.2.2 +1 -2 src/lib/libc/alpha/gen/_setjmp.S To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 14: 9:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B2D1F37B443; Mon, 21 Aug 2000 14:09:29 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA93240; Mon, 21 Aug 2000 14:09:29 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008212109.OAA93240@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 14:09:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/alpha/gen divrem.m4 fabs.S frexp.c infinity.c isinf.c ldexp.c modf.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 14:09:29 PDT Modified files: (Branch: RELENG_4) lib/libc/alpha/gen divrem.m4 fabs.S frexp.c infinity.c isinf.c ldexp.c modf.c Log: MFC: Add FreeBSD id tag. Revision Changes Path 1.2.2.1 +1 -0 src/lib/libc/alpha/gen/divrem.m4 1.1.1.1.6.1 +1 -0 src/lib/libc/alpha/gen/fabs.S 1.1.1.1.6.1 +1 -0 src/lib/libc/alpha/gen/frexp.c 1.1.1.1.6.1 +1 -0 src/lib/libc/alpha/gen/infinity.c 1.1.1.1.6.1 +1 -0 src/lib/libc/alpha/gen/isinf.c 1.1.1.1.6.1 +1 -0 src/lib/libc/alpha/gen/ldexp.c 1.1.1.1.6.1 +1 -0 src/lib/libc/alpha/gen/modf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 14:18:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA5CF37B505; Mon, 21 Aug 2000 14:18:45 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id OAA94570; Mon, 21 Aug 2000 14:18:45 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Mon, 21 Aug 2000 14:18:45 -0700 (PDT) From: Kris Kennaway <kris@FreeBSD.org> To: Josef Karthauser <joe@pavilion.net> Cc: Chris Piazza <cpiazza@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/audio/gnapster Makefile ports/audio/gnapster/files md5 ports/audio/gnapster/patches patch-ae patch-af In-Reply-To: <20000821220019.A577@pavilion.net> Message-ID: <Pine.BSF.4.21.0008211417500.93765-100000@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 21 Aug 2000, Josef Karthauser wrote: > On Mon, Aug 21, 2000 at 12:52:41PM -0700, Chris Piazza wrote: > > cpiazza 2000/08/21 12:52:41 PDT > > > > Modified files: > > audio/gnapster Makefile > > audio/gnapster/files md5 > > Added files: > > audio/gnapster/patches patch-ae patch-af > > Log: > > Update to 1.3.11 > > > > Submitted by: Roman Shterenzon <roman@harmonic.co.il> > > Are they still developing this thing? There are now napster servers which are not affiliated with Napster, inc. and therefore probably arent being targetted by the current lawsuit. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe <forsythe@alum.mit.edu> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 14:32:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B61437B423; Mon, 21 Aug 2000 14:32:27 -0700 (PDT) Received: (from dima@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA96415; Mon, 21 Aug 2000 14:32:27 -0700 (PDT) (envelope-from dima@FreeBSD.org) Message-Id: <200008212132.OAA96415@freefall.freebsd.org> From: Dima Ruban <dima@FreeBSD.org> Date: Mon, 21 Aug 2000 14:32:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/acroread4 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dima 2000/08/21 14:32:26 PDT Modified files: print/acroread4 Makefile Log: Change MASTER_SITE from ftp-pac.adobe.com to ftp.adobe.com. Revision Changes Path 1.27 +2 -2 ports/print/acroread4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 14:37:42 2000 Delivered-To: cvs-all@freebsd.org Received: from mail.telemere.net (mail.telemere.net [63.224.9.4]) by hub.freebsd.org (Postfix) with ESMTP id 0B21D37B423; Mon, 21 Aug 2000 14:37:36 -0700 (PDT) Received: by mail.telemere.net (Postfix, from userid 1001) id 450C020F01; Mon, 21 Aug 2000 16:40:46 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by mail.telemere.net (Postfix) with ESMTP id 40C5B1D101; Mon, 21 Aug 2000 16:40:46 -0500 (CDT) Date: Mon, 21 Aug 2000 16:40:41 -0500 (CDT) From: Visigoth <visigoth@telemere.net> To: Peter Wemm <peter@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/dpt dpt_isa.c dpt.h dpt_eisa.c dpt_pci.c dpt_scsi.c In-Reply-To: <200008071848.LAA83462@freefall.freebsd.org> Message-ID: <Pine.BSF.4.21.0008211632001.94008-100000@mail.telemere.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Mon, 7 Aug 2000, Peter Wemm wrote: > peter 2000/08/07 11:48:15 PDT > > Modified files: (Branch: RELENG_4) > sys/dev/dpt dpt.h dpt_eisa.c dpt_pci.c dpt_scsi.c > Added files: (Branch: RELENG_4) > sys/dev/dpt dpt_isa.c > Log: > MFC: newbusify, add isa support > > Revision Changes Path > 1.8.2.1 +4 -3 src/sys/dev/dpt/dpt.h > 1.12.2.1 +86 -113 src/sys/dev/dpt/dpt_eisa.c > 1.17.2.1 +139 -124 src/sys/dev/dpt/dpt_pci.c > 1.28.2.1 +24 -18 src/sys/dev/dpt/dpt_scsi.c I believe that this commit broke operation of normal PM3334UW pci cards possibly due to an issue that I detailed in kern/20706. None of my machines which run DPT's can currently run off the new mods... Is there anyone with a PM3334 that HAS the new version of the driver running properly? I think the issue could surround a comment I saw in the dpt.h which states that info gotten from the dpt controller will be both in network byte order as well as big-endian. Currently the gist of my issue is that the bios asigns it irq 9, and when probing it, the kernel ends up thinking it is on irq 16 and therefore panic(9)ing... Thanks all... Damieon Stark Sr. Unix Systems Administrator visigoth@telemere.net PGP Public Key: www.telemere.net/~visigoth/visigoth.asc ____________________________________________________________________________ | M$ -Where do you want to go today? | Linux -Where do you want to go tomorrow?| FreeBSD - The POWER to serve Freebsd -Are you guys coming or what? | http://www.freebsd.org | | - ---------------------------------------------------------------------------- -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.1i iQA/AwUBOaGTzTnmC/+RTnGeEQLONgCeJfKSTlS//jF9p0/NSbyMzUXqgOkAoNJL h1PIREqboTNd5ob6iP9TLBC+ =gKWY -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 15:11: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E50937B423; Mon, 21 Aug 2000 15:11:04 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA01947; Mon, 21 Aug 2000 15:11:04 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008212211.PAA01947@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 15:11:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/db/hash hsearch.c search.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 15:11:03 PDT Modified files: (Branch: RELENG_4) lib/libc/db/hash hsearch.c Removed files: (Branch: RELENG_4) lib/libc/db/hash search.h Log: MFC: - Change hcreate to take a size_t rather than u_int - Remove private search.h - Add FreeBSD id tag. Revision Changes Path 1.2.8.1 +4 -2 src/lib/libc/db/hash/hsearch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 15:42:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2490737B617; Mon, 21 Aug 2000 15:42:10 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA05014; Mon, 21 Aug 2000 15:42:10 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008212242.PAA05014@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 15:42:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 15:42:10 PDT Modified files: release Makefile Log: Touch ftp.1 and cdrom.1 when those stages are done to speed up make rerelease when a release dies very late. Revision Changes Path 1.565 +3 -1 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 15:44:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4199237B618; Mon, 21 Aug 2000 15:44:48 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA05356; Mon, 21 Aug 2000 15:44:48 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008212244.PAA05356@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 15:44:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/db/test dbtest.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 15:44:48 PDT Modified files: (Branch: RELENG_4) lib/libc/db/test dbtest.c Log: MFC: Prevent TMPDIR overflow. Revision Changes Path 1.3.8.1 +5 -1 src/lib/libc/db/test/dbtest.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 15:50:46 2000 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id C5CD837B423; Mon, 21 Aug 2000 15:50:42 -0700 (PDT) Received: (from ache@localhost) by nagual.pp.ru (8.11.0/8.11.0) id e7LMoTF57191; Tue, 22 Aug 2000 02:50:29 +0400 (MSD) (envelope-from ache) Date: Tue, 22 Aug 2000 02:50:25 +0400 From: "Andrey A. Chernov" <ache@nagual.pp.ru> To: Garrett Wollman <wollman@khavrinen.lcs.mit.edu> Cc: Brian Fundakowski Feldman <green@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile config.h job.c main.c Message-ID: <20000822025023.A57035@nagual.pp.ru> References: <399EC343.75A93A8@cup.hp.com> <Pine.BSF.4.21.0008191351290.60744-100000@green.dyndns.org> <200008211435.KAA06425@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008211435.KAA06425@khavrinen.lcs.mit.edu>; from wollman@khavrinen.lcs.mit.edu on Mon, Aug 21, 2000 at 10:35:01AM -0400 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Aug 21, 2000 at 10:35:01AM -0400, Garrett Wollman wrote: > make(1) is *defined* to use the Bourne shell, period. It's a bug that > our make even allows the user to change this. No, according to POSIX.2 make must support ${SHELL} variable (not environment one!) to change shell. -- Andrey A. Chernov <ache@nagual.pp.ru> http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 15:51:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0815537B424; Mon, 21 Aug 2000 15:51:46 -0700 (PDT) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA07713; Mon, 21 Aug 2000 15:51:46 -0700 (PDT) (envelope-from dannyboy@FreeBSD.org) Message-Id: <200008212251.PAA07713@freefall.freebsd.org> From: Daniel Harris <dannyboy@FreeBSD.org> Date: Mon, 21 Aug 2000 15:51:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/wine Makefile ports/emulators/wine/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dannyboy 2000/08/21 15:51:45 PDT Modified files: emulators/wine Makefile emulators/wine/pkg PLIST Log: Makefile simplification and removed references to a removed patch. PR: 20736 Submitted by: MAINTAINER Revision Changes Path 1.91 +3 -4 ports/emulators/wine/Makefile 1.11 +0 -1 ports/emulators/wine/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 16:12:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 96AD337B423; Mon, 21 Aug 2000 16:12:28 -0700 (PDT) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA13139; Mon, 21 Aug 2000 16:12:28 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200008212312.QAA13139@freefall.freebsd.org> From: Brian Feldman <green@FreeBSD.org> Date: Mon, 21 Aug 2000 16:12:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/eject/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/08/21 16:12:28 PDT Added files: sysutils/eject/patches patch-aa Log: Fix several (of course, root-exploitable) buffer overflows. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 16:20: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A34437B424; Mon, 21 Aug 2000 16:20:06 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA14019; Mon, 21 Aug 2000 16:20:06 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008212320.QAA14019@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 16:20:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/linux_devtools/pkg INSTALL X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 16:20:06 PDT Modified files: devel/linux_devtools/pkg INSTALL Log: Fix brokenness in last commit: o Add missing fi o s/$GREP/grep/g Reported by: Siegbert Baude <siegbert.baude@gmx.de> Revision Changes Path 1.2 +2 -1 ports/devel/linux_devtools/pkg/INSTALL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 16:25:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DCD337B61A; Mon, 21 Aug 2000 16:25:31 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA14446; Mon, 21 Aug 2000 16:25:31 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008212325.QAA14446@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 16:25:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/linux_devtools Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 16:25:31 PDT Modified files: devel/linux_devtools Makefile Log: The redhat 6.1 packages are under old-releases. Revision Changes Path 1.23 +2 -2 ports/devel/linux_devtools/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 16:43:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DC16437B616; Mon, 21 Aug 2000 16:43:26 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA16066; Mon, 21 Aug 2000 16:43:26 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008212343.QAA16066@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 16:43:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/linux_base/pkg INSTALL X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 16:43:26 PDT Modified files: emulators/linux_base/pkg INSTALL Log: Add missing ';;' in previous commit. Revision Changes Path 1.2 +1 -0 ports/emulators/linux_base/pkg/INSTALL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 17:32:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 43A8537B424; Mon, 21 Aug 2000 17:32:53 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA21721; Mon, 21 Aug 2000 17:32:53 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008220032.RAA21721@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Mon, 21 Aug 2000 17:32:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet ip_fw.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/21 17:32:53 PDT Modified files: sys/netinet ip_fw.h Log: Remove obsolete comment. Revision Changes Path 1.52 +1 -2 src/sys/netinet/ip_fw.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 17:33:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 30BDC37B423; Mon, 21 Aug 2000 17:33:19 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA21790; Mon, 21 Aug 2000 17:33:19 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008220033.RAA21790@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Mon, 21 Aug 2000 17:33:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet ip_fw.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/21 17:33:19 PDT Modified files: (Branch: RELENG_4) sys/netinet ip_fw.h Log: MFC: remove obsolete comment. Revision Changes Path 1.47.2.3 +1 -2 src/sys/netinet/ip_fw.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:24:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E06137B43E; Mon, 21 Aug 2000 18:24:36 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA28060; Mon, 21 Aug 2000 18:24:36 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220124.SAA28060@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 18:24:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_ipc.h linux_signal.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 18:24:36 PDT Added files: sys/compat/linux linux_ipc.h linux_signal.h Log: Provide prototypes for functions used by MD code. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:27:21 2000 Delivered-To: cvs-all@freebsd.org Received: from peak.mountin.net (peak.mountin.net [207.227.119.2]) by hub.freebsd.org (Postfix) with ESMTP id B414B37B422; Mon, 21 Aug 2000 18:27:17 -0700 (PDT) Received: (from daemon@localhost) by peak.mountin.net (8.9.1/8.9.1) id UAA00908; Mon, 21 Aug 2000 20:23:34 -0500 (CDT) (envelope-from jeff-ml@mountin.net) Received: from dial-71.max1.wa.cyberlynk.net(207.227.118.71) by peak.mountin.net via smap (V1.3) id sma000902; Mon Aug 21 20:23:06 2000 Message-Id: <4.3.2.20000821201657.00b495f0@207.227.119.2> X-Sender: jeff-ml@207.227.119.2 X-Mailer: QUALCOMM Windows Eudora Version 4.3 Date: Mon, 21 Aug 2000 20:20:34 -0500 To: The Unicorn <unicorn@blackhats.org>, Poul-Henning Kamp <phk@critter.freebsd.dk> From: "Jeffrey J. Mountin" <jeff-ml@mountin.net> Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml www/en/news newsflash.sgml Cc: Mark Murray <mark@grondar.za>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: <20000821081727.J27780@unicorn.blackhats.org> References: <90115.966804256@critter> <200008202036.e7KKaNG21382@grimreaper.grondar.za> <90115.966804256@critter> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 08:17 AM 8/21/00 +0200, The Unicorn wrote: >On Sun, 20 Aug 2000, Poul-Henning Kamp wrote: > > > It's actually the location of the phase center of the GPS antenna > > mounted on a pole behind my lab, so on average it's about 20 m off > > in the horizontal plane and about 5 m wrong in the vertical plane, > > but since we don't have heights in xearth that hardly matters :-) > >And in any case (more than) close enough for aiming an ICBM ;-) And is most likely the reason why the changed to allow a 10X increase in accuracy of GPS units available to the public. IOW, close counts for explosions, but cars with navigation systems may wish stay on the road or at least the right side of it. <g> Jeff Mountin - jeff@mountin.net Systems/Network Administrator FreeBSD - the power to serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:27:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6AC7A37B424; Mon, 21 Aug 2000 18:27:36 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA28446; Mon, 21 Aug 2000 18:27:36 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220127.SAA28446@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 18:27:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_file.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 18:27:36 PDT Modified files: sys/compat/linux linux_file.c Log: Update include directives and remove linux_execve. Revision Changes Path 1.41 +4 -24 src/sys/compat/linux/linux_file.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:28:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 67B6237B423; Mon, 21 Aug 2000 18:28:36 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA28552; Mon, 21 Aug 2000 18:28:36 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220128.SAA28552@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 18:28:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_ioctl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 18:28:36 PDT Modified files: sys/compat/linux linux_ioctl.c Log: Update include directives. Revision Changes Path 1.54 +6 -6 src/sys/compat/linux/linux_ioctl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:31:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2420337B42C; Mon, 21 Aug 2000 18:31:24 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA28770; Mon, 21 Aug 2000 18:31:24 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220131.SAA28770@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 18:31:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_ipc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 18:31:23 PDT Modified files: sys/compat/linux linux_ipc.c Log: Update include directives. Make the sem*, msg* and shm* function non-static as they are called from MD code. Move linux_ipc to MD code. Revision Changes Path 1.17 +16 -59 src/sys/compat/linux/linux_ipc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:32:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE0F937B424; Mon, 21 Aug 2000 18:32:14 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA28906; Mon, 21 Aug 2000 18:32:14 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220132.SAA28906@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 18:32:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_mib.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 18:32:14 PDT Modified files: sys/compat/linux linux_mib.c Log: Update include directives. Revision Changes Path 1.6 +3 -3 src/sys/compat/linux/linux_mib.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:45:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 486ED37B422; Mon, 21 Aug 2000 18:45:50 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA30214; Mon, 21 Aug 2000 18:45:50 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220145.SAA30214@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 18:45:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/SWIG-devel Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 18:45:50 PDT Modified files: devel/SWIG-devel Makefile Log: Repocopied from SWIG, because 1.3a3 is actually a development version incompatible with 1.1p5, which is a stable version. Thus 1.3a3 should take its place as SWIG-devel and 1.1p5 should take its place back as SWIG. Also: - Remove a mirror which does not hold a distfile anymore - Add perl5 to CATEGORIES - Take over the maintainership (from ports@FreeBSD.org) Revision Changes Path 1.30 +3 -4 ports/devel/SWIG-devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:46:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 871BB37B424; Mon, 21 Aug 2000 18:46:31 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA30316; Mon, 21 Aug 2000 18:46:31 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008220146.SAA30316@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 18:46:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys fcntl.h unistd.h src/sys/vm vm_mmap.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 18:46:31 PDT Modified files: (Branch: RELENG_4) sys/sys fcntl.h unistd.h sys/vm vm_mmap.c Log: MFC: Implement POSIX.1b shared memory objects. Revision Changes Path 1.9.2.1 +19 -3 src/sys/sys/fcntl.h 1.22.2.2 +5 -1 src/sys/sys/unistd.h 1.108.2.2 +11 -1 src/sys/vm/vm_mmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:46:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C77F837B423; Mon, 21 Aug 2000 18:46:47 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA30356; Mon, 21 Aug 2000 18:46:47 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220146.SAA30356@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 18:46:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 18:46:47 PDT Modified files: devel Makefile Log: Activate SWIG-devel. Revision Changes Path 1.332 +2 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:47: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8839D37B443; Mon, 21 Aug 2000 18:46:50 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA30390; Mon, 21 Aug 2000 18:46:50 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220146.SAA30390@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 18:46:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_misc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 18:46:50 PDT Modified files: sys/compat/linux linux_misc.c Log: Update include directives. Move linux_select to MD code (i386 compat. syscall). Move linux_fork, linux_vfork, linux_clone, linux_mmap, linux_pipe, linux_ioperm, linux_iopl and linux_modify_ldt to MD code. Revision Changes Path 1.83 +6 -382 src/sys/compat/linux/linux_misc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:48:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BBEBC37B422; Mon, 21 Aug 2000 18:48:12 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA30554; Mon, 21 Aug 2000 18:48:12 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008220148.SAA30554@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 18:48:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen posixshm.c shm_open.3 Makefile.inc X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 18:48:12 PDT Modified files: (Branch: RELENG_4) lib/libc/gen Makefile.inc Added files: (Branch: RELENG_4) lib/libc/gen posixshm.c shm_open.3 Log: MFC: Add shm_open(3) and shm_unlink(3). Revision Changes Path 1.62.2.3 +5 -3 src/lib/libc/gen/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:48:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D31C37B423; Mon, 21 Aug 2000 18:48:13 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA30565; Mon, 21 Aug 2000 18:48:13 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220148.SAA30565@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 18:48:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 18:48:13 PDT Modified files: . modules Log: SWIG-devel --> ports/devel/SWIG-devel Revision Changes Path 1.1585 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:49:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 08D5837B424; Mon, 21 Aug 2000 18:49:55 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA30682; Mon, 21 Aug 2000 18:49:55 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220149.SAA30682@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 18:49:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_signal.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 18:49:54 PDT Modified files: sys/compat/linux linux_signal.c Log: Update include directives. Make linux_to_bsd_sigset and linux_do_sigaction non-static. Move linux_sigaction. linux_sigsuspend, linux_rt_sigsuspend, linux_pause and linux_sigaltstack to MD code. Revision Changes Path 1.22 +7 -159 src/sys/compat/linux/linux_signal.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:50:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0CD3F37B42C; Mon, 21 Aug 2000 18:50:32 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA30823; Mon, 21 Aug 2000 18:50:32 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220150.SAA30823@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 18:50:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_socket.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 18:50:31 PDT Modified files: sys/compat/linux linux_socket.c Log: Update include directives. Revision Changes Path 1.18 +4 -4 src/sys/compat/linux/linux_socket.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:51:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E1BB437B424; Mon, 21 Aug 2000 18:51:11 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA30971; Mon, 21 Aug 2000 18:51:11 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220151.SAA30971@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 18:51:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_stats.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 18:51:11 PDT Modified files: sys/compat/linux linux_stats.c Log: Update include directives. Revision Changes Path 1.22 +4 -5 src/sys/compat/linux/linux_stats.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:51:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5EAD437B424; Mon, 21 Aug 2000 18:51:38 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA31087; Mon, 21 Aug 2000 18:51:38 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008220151.SAA31087@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 18:51:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen getpwent.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 18:51:38 PDT Modified files: (Branch: RELENG_4) lib/libc/gen getpwent.c Log: MFC: sprintf -> snprintf paranoia Revision Changes Path 1.53.2.1 +4 -4 src/lib/libc/gen/getpwent.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:51:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E5E7537B422; Mon, 21 Aug 2000 18:51:54 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA31175; Mon, 21 Aug 2000 18:51:54 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220151.SAA31175@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 18:51:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_util.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 18:51:54 PDT Modified files: sys/compat/linux linux_util.c Log: Update include directives. Revision Changes Path 1.12 +2 -3 src/sys/compat/linux/linux_util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:52:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE2FC37B424; Mon, 21 Aug 2000 18:52:50 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA31314; Mon, 21 Aug 2000 18:52:50 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008220152.SAA31314@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 18:52:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen readdir.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 18:52:50 PDT Modified files: (Branch: RELENG_4) lib/libc/gen readdir.c Log: MFC: #include <string.h> for memcpy() prototype Revision Changes Path 1.5.2.1 +2 -1 src/lib/libc/gen/readdir.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:54: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A47FB37B424; Mon, 21 Aug 2000 18:54:02 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA31589; Mon, 21 Aug 2000 18:54:02 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220154.SAA31589@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 18:54:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/SWIG Makefile ports/devel/SWIG/files md5 ports/devel/SWIG/patches patch-ad patch-ae patch-af patch-ag ports/devel/SWIG/pkg DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 18:54:02 PDT Modified files: devel/SWIG Makefile devel/SWIG/files md5 devel/SWIG/pkg DESCR PLIST Added files: devel/SWIG/patches patch-ad patch-ae patch-af patch-ag Log: Resurrect SWIG 1.1p5 after a repocopy. - Add patches to make it work with Perl 5.6.0 - Remove a mirror which does not hold a distfile anymore - Add perl5 to CATEGORIES - Take over the maintainership (from ports@FreeBSD.org) Revision Changes Path 1.30 +10 -9 ports/devel/SWIG/Makefile 1.14 +1 -1 ports/devel/SWIG/files/md5 1.4 +0 -1 ports/devel/SWIG/pkg/DESCR 1.13 +74 -59 ports/devel/SWIG/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:54:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5686E37B423; Mon, 21 Aug 2000 18:54:40 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA31683; Mon, 21 Aug 2000 18:54:40 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008220154.SAA31683@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 18:54:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale collcmp.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 18:54:40 PDT Modified files: (Branch: RELENG_4) lib/libc/locale collcmp.c Log: MFC: Fix comment Revision Changes Path 1.12.2.1 +2 -2 src/lib/libc/locale/collcmp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:59:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 95B5E37B43E; Mon, 21 Aug 2000 18:59:08 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA32325; Mon, 21 Aug 2000 18:59:08 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220159.SAA32325@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 18:59:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/swigruby Makefile ports/devel/swigruby/files md5 ports/devel/swigruby/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 18:59:08 PDT Modified files: devel Makefile Added files: devel/swigruby Makefile devel/swigruby/files md5 devel/swigruby/pkg COMMENT DESCR PLIST Log: Add swigruby, Ruby module for SWIG. Revision Changes Path 1.333 +2 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 18:59:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 99ACC37B43C; Mon, 21 Aug 2000 18:59:38 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA32450; Mon, 21 Aug 2000 18:59:38 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220159.SAA32450@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 18:59:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 18:59:38 PDT Modified files: . modules Log: swigruby --> ports/devel/swigruby Revision Changes Path 1.1586 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 19: 6: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 522DB37B42C; Mon, 21 Aug 2000 19:06:00 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA34440; Mon, 21 Aug 2000 19:06:00 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008220206.TAA34440@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 19:05:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale isalnum.3 isalpha.3 isblank.3 iscntrl.3 isdigit.3 isgraph.3 islower.3 isprint.3 ispunct.3 isspace.3 isupper.3 isxdigit.3 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 19:05:58 PDT Modified files: (Branch: RELENG_4) lib/libc/locale isalnum.3 isalpha.3 isblank.3 iscntrl.3 isdigit.3 isgraph.3 islower.3 isprint.3 ispunct.3 isspace.3 isupper.3 isxdigit.3 Log: MFC: - Describe valid argument domain for 8-bit wide locales to prevent common error calling ctype functions with signed char as an argument - Add reference to multibyte(3) Revision Changes Path 1.7.2.2 +11 -1 src/lib/libc/locale/isalnum.3 1.7.2.2 +11 -1 src/lib/libc/locale/isalpha.3 1.4.2.2 +11 -1 src/lib/libc/locale/isblank.3 1.6.2.2 +11 -1 src/lib/libc/locale/iscntrl.3 1.6.2.2 +11 -1 src/lib/libc/locale/isdigit.3 1.7.2.2 +11 -1 src/lib/libc/locale/isgraph.3 1.7.2.2 +11 -1 src/lib/libc/locale/islower.3 1.7.2.2 +11 -1 src/lib/libc/locale/isprint.3 1.7.2.2 +11 -1 src/lib/libc/locale/ispunct.3 1.6.2.2 +11 -1 src/lib/libc/locale/isspace.3 1.8.2.2 +11 -1 src/lib/libc/locale/isupper.3 1.6.2.2 +11 -1 src/lib/libc/locale/isxdigit.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 19: 8:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A9BEB37B43E; Mon, 21 Aug 2000 19:08:27 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA34665; Mon, 21 Aug 2000 19:08:27 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008220208.TAA34665@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 19:08:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale isascii.3 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 19:08:27 PDT Modified files: (Branch: RELENG_4) lib/libc/locale isascii.3 Log: MFC: Reword test condition better. Previous variant was true for negative characters too. Revision Changes Path 1.5.2.2 +3 -3 src/lib/libc/locale/isascii.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 19:16: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F4DD37B424; Mon, 21 Aug 2000 19:15:55 -0700 (PDT) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA35477; Mon, 21 Aug 2000 19:15:55 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200008220215.TAA35477@freefall.freebsd.org> From: Brian Feldman <green@FreeBSD.org> Date: Mon, 21 Aug 2000 19:15:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include unistd.h src/lib/libcrypt Makefile crypt.3 crypt.c crypt.h src/lib/libutil Makefile login_cap.c login_cap.h login_cap.3 src/secure/lib/libcrypt Makefile src/usr.bin/passwd local_passwd.c src/usr.sbin/pw Makefile pw_user.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/08/21 19:15:54 PDT Modified files: include unistd.h lib/libcrypt Makefile crypt.3 crypt.c crypt.h lib/libutil Makefile login_cap.c login_cap.h login_cap.3 secure/lib/libcrypt Makefile usr.bin/passwd local_passwd.c usr.sbin/pw Makefile pw_user.c Log: Add working and easy crypt(3)-switching. Yes, we need a whole new API for crypt(3) by now. In any case: Add crypt_set_format(3) + documentation to -lcrypt. Add login_setcryptfmt(3) + documentation to -lutil. Support for switching crypt formats in passwd(8). Support for switching crypt formats in pw(8). The simple synopsis is: edit login.conf; add a passwd_format field set to "des" or "md5"; go nuts :) Reviewed by: peter Revision Changes Path 1.38 +3 -1 src/include/unistd.h 1.25 +3 -2 src/lib/libcrypt/Makefile 1.9 +44 -9 src/lib/libcrypt/crypt.3 1.15 +52 -9 src/lib/libcrypt/crypt.c 1.5 +1 -2 src/lib/libcrypt/crypt.h 1.34 +6 -2 src/lib/libutil/Makefile 1.19 +14 -1 src/lib/libutil/login_cap.c 1.4 +2 -1 src/lib/libutil/login_cap.h 1.21 +22 -2 src/lib/libutil/login_cap.3 1.28 +2 -1 src/secure/lib/libcrypt/Makefile 1.25 +8 -15 src/usr.bin/passwd/local_passwd.c 1.12 +3 -3 src/usr.sbin/pw/Makefile 1.43 +21 -2 src/usr.sbin/pw/pw_user.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 19:17:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F3B9837B42C; Mon, 21 Aug 2000 19:17:54 -0700 (PDT) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA35645; Mon, 21 Aug 2000 19:17:54 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200008220217.TAA35645@freefall.freebsd.org> From: Brian Feldman <green@FreeBSD.org> Date: Mon, 21 Aug 2000 19:17:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libcrypt Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/08/21 19:17:54 PDT Modified files: lib/libcrypt Makefile Log: How did you sneak in... Revision Changes Path 1.26 +2 -2 src/lib/libcrypt/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 19:18:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A0D737B43C; Mon, 21 Aug 2000 19:18:43 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA35760; Mon, 21 Aug 2000 19:18:43 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008220218.TAA35760@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 19:18:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale tolower.3 toupper.3 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 19:18:43 PDT Modified files: (Branch: RELENG_4) lib/libc/locale tolower.3 toupper.3 Log: MFC: - Describe valid argument domain for 8-bit wide locales to prevent common error calling ctype functions with signed char as an argument - Add reference to multibyte(3) - Remove unneeded comment. Revision Changes Path 1.6.2.2 +11 -10 src/lib/libc/locale/tolower.3 1.5.2.2 +12 -11 src/lib/libc/locale/toupper.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 19:24: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D94D637B440; Mon, 21 Aug 2000 19:24:04 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA36255; Mon, 21 Aug 2000 19:24:04 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220224.TAA36255@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 19:24:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux linux_machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 19:24:04 PDT Added files: sys/i386/linux linux_machdep.c Log: Collect the MD syscalls from /sys/compat/linux here. Since this is a new file, fix most of the style bugs at the same time. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 19:25:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 61AB437B423; Mon, 21 Aug 2000 19:25:52 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA36510; Mon, 21 Aug 2000 19:25:52 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008220225.TAA36510@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 19:25:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net getaddrinfo.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 19:25:52 PDT Modified files: (Branch: RELENG_4) lib/libc/net getaddrinfo.c Log: MFC: Use _close() instead of close() in addrconfig() to keep it from becoming a potential cancellation point in libc_r. Revision Changes Path 1.9.2.4 +4 -4 src/lib/libc/net/getaddrinfo.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 19:28:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7193037B422; Mon, 21 Aug 2000 19:28:21 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA36790; Mon, 21 Aug 2000 19:28:21 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008220228.TAA36790@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 19:28:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net getaddrinfo.3 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 19:28:21 PDT Modified files: (Branch: RELENG_4) lib/libc/net getaddrinfo.3 Log: MFC: - Mention that getipnodeby* and get{addr,name}info are not thread-safe. (sync with kame) - s/.Os KAME/.Os/ Revision Changes Path 1.2.2.3 +67 -4 src/lib/libc/net/getaddrinfo.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 19:33: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D1A637B43C; Mon, 21 Aug 2000 19:33:01 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA37620; Mon, 21 Aug 2000 19:33:01 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220233.TAA37620@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 19:33:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese Makefile ports/japanese/rbnamazu Makefile ports/japanese/rbnamazu/files md5 ports/japanese/rbnamazu/patches patch-aa ports/japanese/rbnamazu/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 19:33:01 PDT Modified files: japanese Makefile Added files: japanese/rbnamazu Makefile japanese/rbnamazu/files md5 japanese/rbnamazu/patches patch-aa japanese/rbnamazu/pkg COMMENT DESCR PLIST Log: Add ja-rbnamazu, a client of the "Namazu" full-text search engine written in Ruby. Revision Changes Path 1.289 +2 -1 ports/japanese/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 19:33:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A34DF37B423; Mon, 21 Aug 2000 19:33:26 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA37692; Mon, 21 Aug 2000 19:33:26 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220233.TAA37692@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 19:33:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 19:33:25 PDT Modified files: . modules Log: rbnamazu --> ports/japanese/rbnamazu Revision Changes Path 1.1587 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 19:34: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2CD1E37B424; Mon, 21 Aug 2000 19:34:06 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA37836; Mon, 21 Aug 2000 19:34:06 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008220234.TAA37836@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 19:34:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net getipnodebyname.3 getnameinfo.3 if_indextoname.3 inet6_option_space.3 inet6_rthdr_space.3 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 19:34:06 PDT Modified files: (Branch: RELENG_4) lib/libc/net getipnodebyname.3 getnameinfo.3 if_indextoname.3 inet6_option_space.3 inet6_rthdr_space.3 Log: MFC: - Mention that getipnodeby* and get{addr,name}info are not thread-safe. (sync with kame) - s/.Os KAME/.Os/ Revision Changes Path 1.2.2.2 +32 -9 src/lib/libc/net/getipnodebyname.3 1.2.2.4 +10 -7 src/lib/libc/net/getnameinfo.3 1.2.2.2 +2 -2 src/lib/libc/net/if_indextoname.3 1.1.2.2 +2 -2 src/lib/libc/net/inet6_option_space.3 1.1.2.3 +2 -2 src/lib/libc/net/inet6_rthdr_space.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 19:44:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D38937B422; Mon, 21 Aug 2000 19:44:20 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA39109; Mon, 21 Aug 2000 19:44:20 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008220244.TAA39109@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Mon, 21 Aug 2000 19:44:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/include ieeefp.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/21 19:44:19 PDT Modified files: (Branch: RELENG_4) sys/alpha/include ieeefp.h Log: MFC: fp_except -> fp_except_t Revision Changes Path 1.3.2.2 +2 -2 src/sys/alpha/include/ieeefp.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 19:57: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6AD2237B446; Mon, 21 Aug 2000 19:56:58 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA40466; Mon, 21 Aug 2000 19:56:58 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220256.TAA40466@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 19:56:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 19:56:58 PDT Modified files: . modules Log: Prefix `ja-' to all Japanese ports. Use tabs for sequential spaces. (Mostly introduced by addport ;) Revision Changes Path 1.1588 +114 -115 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 20:14:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C68237B424; Mon, 21 Aug 2000 20:14:40 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA43542; Mon, 21 Aug 2000 20:14:40 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200008220314.UAA43542@freefall.freebsd.org> From: "Jordan K. Hubbard" <jkh@FreeBSD.org> Date: Mon, 21 Aug 2000 20:14:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall devices.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/08/21 20:14:40 PDT Modified files: release/sysinstall devices.c Log: Remove device type field - there are no block devices left. Revision Changes Path 1.125 +33 -42 src/release/sysinstall/devices.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 20:41:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A473C37B42C; Mon, 21 Aug 2000 20:41:07 -0700 (PDT) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA45876; Mon, 21 Aug 2000 20:41:07 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200008220341.UAA45876@freefall.freebsd.org> From: Jun Kuriyama <kuriyama@FreeBSD.org> Date: Mon, 21 Aug 2000 20:41:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/apache13 Makefile ports/www/apache13+ipv6 Makefile ports/www/apache13-ssl Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/08/21 20:41:07 PDT Modified files: www/apache13 Makefile www/apache13+ipv6 Makefile www/apache13-ssl Makefile Log: Cosmetic changes to reduce difference between apache13 ports. (whitespace/tab, re-ordering, same $DISTNAME) This is preparation for ports/18788 updates. Approved by: adam@algroup.co.uk, sumikawa No response from: ache (sorry for stepping on your toes) Revision Changes Path 1.82 +25 -25 ports/www/apache13/Makefile 1.7 +23 -23 ports/www/apache13+ipv6/Makefile 1.68 +16 -10 ports/www/apache13-ssl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 21:26: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2462A37B42C; Mon, 21 Aug 2000 21:25:58 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA52021; Mon, 21 Aug 2000 21:25:58 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200008220425.VAA52021@freefall.freebsd.org> From: Warner Losh <imp@FreeBSD.org> Date: Mon, 21 Aug 2000 21:25:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard pccard.c pccardvar.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/08/21 21:25:58 PDT Modified files: sys/dev/pccard pccard.c pccardvar.h Log: Save a pointer to the dev, if any, that each function attach. Remove some bogus printfs. Revision Changes Path 1.14 +7 -3 src/sys/dev/pccard/pccard.c 1.14 +2 -1 src/sys/dev/pccard/pccardvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 21:39:38 2000 Delivered-To: cvs-all@freebsd.org Received: from gidora.zeta.org.au (gidora.zeta.org.au [203.26.10.25]) by hub.freebsd.org (Postfix) with SMTP id B920137B422 for <cvs-all@FreeBSD.org>; Mon, 21 Aug 2000 21:39:33 -0700 (PDT) Received: (qmail 2676 invoked from network); 22 Aug 2000 04:39:30 -0000 Received: from unknown (HELO bde.zeta.org.au) (203.2.228.102) by gidora.zeta.org.au with SMTP; 22 Aug 2000 04:39:30 -0000 Date: Tue, 22 Aug 2000 14:39:24 +1000 (EST) From: Bruce Evans <bde@zeta.org.au> X-Sender: bde@besplex.bde.org To: Ruslan Ermilov <ru@sunbay.com> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile config.h job.c main.c In-Reply-To: <20000821102340.B88757@sunbay.com> Message-ID: <Pine.BSF.4.21.0008221422380.1674-100000@besplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 21 Aug 2000, Ruslan Ermilov wrote: > On Sun, Aug 20, 2000 at 05:39:20PM +1000, Bruce Evans wrote: > [...] > > > > I think > > > > .SHELL: path=ksh > > > > in /etc/make.conf.local is supposed to do this, but it currently gives > > core dumps for freeing of a bad pointer. > > > Do not I already fixed that (see attached)? I thought I was running with your patch (and wondered if it caused the problem :-)), but apparently not -- there is no core dump now. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 22: 1:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 76A5B37B422; Mon, 21 Aug 2000 22:01:13 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA55042; Mon, 21 Aug 2000 22:01:13 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220501.WAA55042@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 22:01:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files.alpha files.i386 files.pc98 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 22:01:09 PDT Modified files: sys/conf files.alpha files.i386 files.pc98 Log: Style fixes: o Put the backslash in a fixed column by preference, o Sort the list of files. Revision Changes Path 1.54 +65 -66 src/sys/conf/files.alpha 1.323 +30 -29 src/sys/conf/files.i386 1.160 +28 -27 src/sys/conf/files.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 22:55: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54AD837B424; Mon, 21 Aug 2000 22:55:00 -0700 (PDT) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA63896; Mon, 21 Aug 2000 22:55:00 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200008220555.WAA63896@freefall.freebsd.org> From: Jun Kuriyama <kuriyama@FreeBSD.org> Date: Mon, 21 Aug 2000 22:55:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/08/21 22:55:00 PDT Modified files: en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml Log: s@</parA>@</para>@; Revision Changes Path 1.56 +2 -2 doc/en_US.ISO_8859-1/books/handbook/cutting-edge/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 22:57:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC7EC37B423; Mon, 21 Aug 2000 22:57:55 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA64193; Mon, 21 Aug 2000 22:57:55 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220557.WAA64193@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 22:57:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/tdfx tdfx_linux.h src/sys/i386/linux linux_sysvec.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 22:57:55 PDT Modified files: sys/dev/tdfx tdfx_linux.h sys/i386/linux linux_sysvec.c Log: Update include directives for Linuxulator headers after the MD/MI split. Revision Changes Path 1.4 +4 -4 src/sys/dev/tdfx/tdfx_linux.h 1.61 +2 -2 src/sys/i386/linux/linux_sysvec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 23: 2: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A650537B42C; Mon, 21 Aug 2000 23:02:02 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA64577; Mon, 21 Aug 2000 23:02:02 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220602.XAA64577@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Mon, 21 Aug 2000 23:02:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files.i386 files.pc98 src/sys/modules/linux Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/21 23:02:02 PDT Modified files: sys/conf files.i386 files.pc98 sys/modules/linux Makefile Log: Connect the new sources in /sys/compat/linux and the new file in /sys/i386/linux. Revision Changes Path 1.324 +11 -10 src/sys/conf/files.i386 1.161 +11 -10 src/sys/conf/files.pc98 1.38 +4 -5 src/sys/modules/linux/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 23: 7:46 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.ninth-circle.org (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id 67A5F37B43E; Mon, 21 Aug 2000 23:07:42 -0700 (PDT) Received: (from asmodai@localhost) by lucifer.ninth-circle.org (8.9.3/8.9.3) id IAA84854; Tue, 22 Aug 2000 08:07:41 +0200 (CEST) (envelope-from asmodai) Date: Tue, 22 Aug 2000 08:07:41 +0200 From: Jeroen Ruigrok van der Werven <jruigrok@via-net-works.nl> To: Dirk Froemberg <dirk@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/print/a2ps-letter/patches patch-aa ports/print/a2ps-letter/pkg PLIST Message-ID: <20000822080741.B84695@lucifer.bart.nl> References: <200008211958.MAA81883@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008211958.MAA81883@freefall.freebsd.org>; from dirk@FreeBSD.org on Mon, Aug 21, 2000 at 12:58:48PM -0700 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20000821 22:00], Dirk Froemberg (dirk@FreeBSD.org) wrote: > Log: > Prevent a2ps from going crazy: Don't let it install files in /. Thank you! And all this time I was thinking if I was crazy that it did that. -- Jeroen Ruigrok van der Werven Network- and systemadministrator <jruigrok@via-net-works.nl> VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl To err is human, to forgive divine... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 23:22:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 235D237B424; Mon, 21 Aug 2000 23:22:33 -0700 (PDT) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA68210; Mon, 21 Aug 2000 23:22:33 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200008220622.XAA68210@freefall.freebsd.org> From: Jun Kuriyama <kuriyama@FreeBSD.org> Date: Mon, 21 Aug 2000 23:22:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook authors.ent doc/ja_JP.eucJP/books/handbook/basics chapter.sgml doc/ja_JP.eucJP/books/handbook/contrib chapter.sgml doc/ja_JP.eucJP/books/handbook/cutting-edge chapter.sgml doc/ja_JP.eucJP/books/handbook/mirrors chapter.sgml doc/ja_JP.eucJP/books/handbook/pgpkeys chapter.sgml ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/08/21 23:22:33 PDT Modified files: ja_JP.eucJP/books/handbook authors.ent ja_JP.eucJP/books/handbook/basics chapter.sgml ja_JP.eucJP/books/handbook/contrib chapter.sgml ja_JP.eucJP/books/handbook/cutting-edge chapter.sgml ja_JP.eucJP/books/handbook/mirrors chapter.sgml ja_JP.eucJP/books/handbook/pgpkeys chapter.sgml ja_JP.eucJP/books/handbook/policies chapter.sgml ja_JP.eucJP/books/handbook/staff chapter.sgml Log: Merge following changes in the English version. 1.113 -> 1.114 authors.ent 1.21 -> 1.22 basics/chapter.sgml 1.277 -> 1.280 contrib/chapter.sgml 1.53 -> 1.56 cutting-edge/chapter.sgml 1.80 -> 1.81 mirrors/chapter.sgml 1.40 -> 1.41 pgpkeys/chapter.sgml 1.17 -> 1.18 policies/chapter.sgml 1.150 -> 1.151 staff/chapter.sgml Revision Changes Path 1.35 +4 -2 doc/ja_JP.eucJP/books/handbook/authors.ent 1.12 +2 -2 doc/ja_JP.eucJP/books/handbook/basics/chapter.sgml 1.42 +10 -6 doc/ja_JP.eucJP/books/handbook/contrib/chapter.sgml 1.19 +33 -15 doc/ja_JP.eucJP/books/handbook/cutting-edge/chapter.sgml 1.29 +7 -2 doc/ja_JP.eucJP/books/handbook/mirrors/chapter.sgml 1.14 +2 -2 doc/ja_JP.eucJP/books/handbook/pgpkeys/chapter.sgml 1.10 +3 -3 doc/ja_JP.eucJP/books/handbook/policies/chapter.sgml 1.31 +6 -2 doc/ja_JP.eucJP/books/handbook/staff/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 23:46:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 538F137B424; Mon, 21 Aug 2000 23:46:53 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA70241; Mon, 21 Aug 2000 23:46:53 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220646.XAA70241@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 23:46:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ruby-racc Makefile ports/devel/ruby-racc/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 23:46:53 PDT Modified files: devel/ruby-racc Makefile devel/ruby-racc/pkg PLIST Log: To separate runtime libraries from this port, add a "RUNTIME" knob for the forthcoming slave port. Revision Changes Path 1.9 +22 -12 ports/devel/ruby-racc/Makefile 1.6 +0 -4 ports/devel/ruby-racc/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 23:48:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 27F7637B43C; Mon, 21 Aug 2000 23:48:25 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA70463; Mon, 21 Aug 2000 23:48:25 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220648.XAA70463@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 23:48:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/ruby-racc-runtime Makefile ports/devel/ruby-racc-runtime/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 23:48:25 PDT Modified files: devel Makefile Added files: devel/ruby-racc-runtime Makefile devel/ruby-racc-runtime/pkg COMMENT DESCR PLIST Log: This port is ruby-racc-runtime, the runtime libraries for Racc, separated from ruby-racc. Revision Changes Path 1.334 +2 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 23:49:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4224737B423; Mon, 21 Aug 2000 23:49:14 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA70555; Mon, 21 Aug 2000 23:49:14 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220649.XAA70555@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 23:49:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 23:49:14 PDT Modified files: . modules Log: ruby-racc-runtime --> ports/devel/ruby-racc-runtime Revision Changes Path 1.1589 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 23:52:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F0A4637B43E; Mon, 21 Aug 2000 23:52:18 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA71294; Mon, 21 Aug 2000 23:52:18 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220652.XAA71294@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Mon, 21 Aug 2000 23:52:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/ruby-rdtool Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/21 23:52:18 PDT Modified files: textproc/ruby-rdtool Makefile Log: RUN_DEPENDS on devel/ruby-racc-runtime. Revision Changes Path 1.7 +2 -1 ports/textproc/ruby-rdtool/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 23:55:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 62F7437B43C; Mon, 21 Aug 2000 23:55:38 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA71709; Mon, 21 Aug 2000 23:55:38 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008220655.XAA71709@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Mon, 21 Aug 2000 23:55:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/jext Makefile ports/editors/jext/files md5 ports/editors/jext/patches patch-aa ports/editors/jext/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/21 23:55:38 PDT Modified files: editors/jext Makefile editors/jext/files md5 editors/jext/patches patch-aa editors/jext/pkg PLIST Log: Update to 2.8.1.1. Revision Changes Path 1.9 +18 -30 ports/editors/jext/Makefile 1.4 +1 -1 ports/editors/jext/files/md5 1.2 +10 -10 ports/editors/jext/patches/patch-aa 1.3 +60 -48 ports/editors/jext/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Aug 21 23:58:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC56837B424; Mon, 21 Aug 2000 23:58:45 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA72068; Mon, 21 Aug 2000 23:58:45 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008220658.XAA72068@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Mon, 21 Aug 2000 23:58:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/apsfilter6 Makefile ports/print/apsfilter6/files md5 ports/print/apsfilter6/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/21 23:58:45 PDT Modified files: print/apsfilter6 Makefile print/apsfilter6/files md5 print/apsfilter6/pkg PLIST Log: - Updated apsfilter port to lastest devel snapshot which will soon become apsfilter 6.0-RELEASE. - The installation directory changed from ${PREFIX}/apsfilter to ${PREFIX}/share/apsfilter - Its possible to run SETUP on a NFS client from mounted ${PREFIX}/share and so to install apsfilter on NFS clients ... - Now Linux and FreeBSD have the same installation directory. - /etc/apsfilter contains since 6.0 (2 weeks ago) a little directory structure for every printer. - Switching between apsfilter releases is possible by simply changing the destination of the symblic link /etc/apsfilter/basedir. Apsfilter V 6.0 _is_ in my humble opineon stable and useable and the best apsfilter release ever since filtersetup and such things have gone ... apsfilter has been modernized from ground up. So please test test test. Revision Changes Path 1.68 +2 -2 ports/print/apsfilter6/Makefile 1.33 +1 -1 ports/print/apsfilter6/files/md5 1.12 +22 -22 ports/print/apsfilter6/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 0: 5:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 07CB737B43C; Tue, 22 Aug 2000 00:05:13 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA72908; Tue, 22 Aug 2000 00:05:12 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220705.AAA72908@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 00:05:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ruby-strscan Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 00:05:12 PDT Modified files: devel/ruby-strscan Makefile Log: Do not install examples if NOPORTDOCS. Revision Changes Path 1.5 +2 -2 ports/devel/ruby-strscan/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 0: 8:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A62137B422; Tue, 22 Aug 2000 00:08:35 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA74594; Tue, 22 Aug 2000 00:08:34 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008220708.AAA74594@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Tue, 22 Aug 2000 00:08:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux linux_file.c linux_ioctl.c linux_ioctl.h linux_ipc.c linux_mib.c linux_mib.h linux_misc.c linux_signal.c linux_socket.c linux_stats.c linux_util.c linux_util.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/22 00:08:34 PDT Removed files: sys/i386/linux linux_file.c linux_ioctl.c linux_ioctl.h linux_ipc.c linux_mib.c linux_mib.h linux_misc.c linux_signal.c linux_socket.c linux_stats.c linux_util.c linux_util.h Log: Finish the Linuxulator MD/MI split. In summary: o This file has been moved to sys/compat/linux, o Any MD syscalls in this file are moved to linux_machdep.c in sys/i386/linux, o Include directives, makefiles and config files have been updated. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 0:22:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A29D137B43F; Tue, 22 Aug 2000 00:22:57 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA79880; Tue, 22 Aug 2000 00:22:57 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220722.AAA79880@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 00:22:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ruby-strscan Makefile ports/devel/ruby-strscan/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 00:22:57 PDT Modified files: devel/ruby-strscan Makefile devel/ruby-strscan/pkg PLIST Log: Oops, scanner.rb was not an example, but a part of the library.. ;) Revision Changes Path 1.6 +11 -9 ports/devel/ruby-strscan/Makefile 1.2 +1 -2 ports/devel/ruby-strscan/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 1:36:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 29EEB37B424; Tue, 22 Aug 2000 01:36:31 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA90242; Tue, 22 Aug 2000 01:36:31 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220836.BAA90242@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 01:36:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/ruby-tmail Makefile ports/mail/ruby-tmail/files md5 ports/mail/ruby-tmail/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 01:36:31 PDT Modified files: mail Makefile Added files: mail/ruby-tmail Makefile mail/ruby-tmail/files md5 mail/ruby-tmail/pkg COMMENT DESCR PLIST Log: Add ruby-tmail, a mail manipulating library for Ruby, with RFC822 and MIME multipart support. Revision Changes Path 1.156 +2 -1 ports/mail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 1:37:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 50D9037B424; Tue, 22 Aug 2000 01:37:38 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA90408; Tue, 22 Aug 2000 01:37:38 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220837.BAA90408@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 01:37:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 01:37:38 PDT Modified files: . modules Log: ruby-tmail --> ports/mail/ruby-tmail Revision Changes Path 1.1590 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 1:41:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C90137B422; Tue, 22 Aug 2000 01:41:30 -0700 (PDT) Received: (from sos@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA90844; Tue, 22 Aug 2000 01:41:30 -0700 (PDT) (envelope-from sos@FreeBSD.org) Message-Id: <200008220841.BAA90844@freefall.freebsd.org> From: Søren Schmidt <sos@FreeBSD.org> Date: Tue, 22 Aug 2000 01:41:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-dma.c atapi-cd.c atapi-cd.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sos 2000/08/22 01:41:30 PDT Modified files: (Branch: RELENG_4) sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-dma.c atapi-cd.c atapi-cd.h Log: MFC: Update with latest fixes from -current. ATA100 support. New improved probe. Multisector setup more restrictive ata-disk. New error recovery in ata-disk. Remove sequence checks in atapi-cd Brings -stable functionality up to and including following -current revisions: $FreeBSD: src/sys/dev/ata/ata-all.c,v 1.64 $FreeBSD: src/sys/dev/ata/ata-all.h,v 1.30 $FreeBSD: src/sys/dev/ata/ata-disk.c,v 1.74 $FreeBSD: src/sys/dev/ata/ata-disk.h,v 1.27 $FreeBSD: src/sys/dev/ata/ata-dma.c,v 1.42 $FreeBSD: src/sys/dev/ata/atapi-all.c,v 1.51 $FreeBSD: src/sys/dev/ata/atapi-all.h,v 1.28 $FreeBSD: src/sys/dev/ata/atapi-cd.c,v 1.63 $FreeBSD: src/sys/dev/ata/atapi-cd.h,v 1.19 $FreeBSD: src/sys/dev/ata/atapi-fd.c,v 1.51 $FreeBSD: src/sys/dev/ata/atapi-fd.h,v 1.11 $FreeBSD: src/sys/dev/ata/atapi-tape.c,v 1.44 $FreeBSD: src/sys/dev/ata/atapi-tape.h,v 1.12 Revision Changes Path 1.50.2.6 +105 -67 src/sys/dev/ata/ata-all.c 1.26.2.2 +2 -1 src/sys/dev/ata/ata-all.h 1.60.2.6 +23 -12 src/sys/dev/ata/ata-disk.c 1.35.2.4 +211 -130 src/sys/dev/ata/ata-dma.c 1.48.2.4 +42 -58 src/sys/dev/ata/atapi-cd.c 1.15.2.3 +1 -4 src/sys/dev/ata/atapi-cd.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 2:22:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3850137B424; Tue, 22 Aug 2000 02:22:25 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA96118; Tue, 22 Aug 2000 02:22:25 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220922.CAA96118@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 02:22:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/ruby-filelock Makefile ports/devel/ruby-filelock/files md5 ports/devel/ruby-filelock/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 02:22:25 PDT Modified files: devel Makefile Added files: devel/ruby-filelock Makefile devel/ruby-filelock/files md5 devel/ruby-filelock/pkg COMMENT DESCR PLIST Log: Add ruby-filelock, a Ruby module which provides file locking mechanism. Revision Changes Path 1.335 +2 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 2:24:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 53F7237B422; Tue, 22 Aug 2000 02:24:54 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA96474; Tue, 22 Aug 2000 02:24:54 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220924.CAA96474@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 02:24:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 02:24:54 PDT Modified files: . modules Log: ruby-filelock --> ports/devel/ruby-filelock Revision Changes Path 1.1591 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 2:39:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B978A37B43E; Tue, 22 Aug 2000 02:39:16 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA97984; Tue, 22 Aug 2000 02:39:16 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008220939.CAA97984@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Tue, 22 Aug 2000 02:39:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/xtraceroute/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/22 02:39:16 PDT Modified files: net/xtraceroute/patches patch-aa Log: Fix problem with `-l` gcc options ordering. Revision Changes Path 1.2 +11 -2 ports/net/xtraceroute/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 2:43:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D73937B422; Tue, 22 Aug 2000 02:43:14 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA98368; Tue, 22 Aug 2000 02:43:14 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200008220943.CAA98368@freefall.freebsd.org> From: "Jordan K. Hubbard" <jkh@FreeBSD.org> Date: Tue, 22 Aug 2000 02:43:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/08/22 02:43:14 PDT Modified files: release Makefile Log: Use consistent timezone so date information can be meaningfully compared. Revision Changes Path 1.566 +3 -3 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 2:43:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A44C37B422; Tue, 22 Aug 2000 02:43:56 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA98479; Tue, 22 Aug 2000 02:43:56 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200008220943.CAA98479@freefall.freebsd.org> From: "Jordan K. Hubbard" <jkh@FreeBSD.org> Date: Tue, 22 Aug 2000 02:43:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/08/22 02:43:56 PDT Modified files: (Branch: RELENG_4) release Makefile Log: MFC: use consistent timezone in dates Revision Changes Path 1.536.2.22 +3 -3 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 2:49: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA42837B424; Tue, 22 Aug 2000 02:49:04 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA99186; Tue, 22 Aug 2000 02:49:04 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220949.CAA99186@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 02:49:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/ruby-rdtool Makefile ports/textproc/ruby-rdtool/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 02:49:04 PDT Modified files: textproc/ruby-rdtool Makefile textproc/ruby-rdtool/pkg PLIST Log: Install rmi2html.rb as-is and create a symlink to it as rmi2html. (Previously rmi2html.rb was installed as rmi2html, and no rmi2html.rb) Revision Changes Path 1.8 +3 -2 ports/textproc/ruby-rdtool/Makefile 1.4 +1 -0 ports/textproc/ruby-rdtool/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 2:52: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD00137B43E; Tue, 22 Aug 2000 02:51:58 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA99711; Tue, 22 Aug 2000 02:51:58 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008220951.CAA99711@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 02:51:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/ruby-rdtool/../../japanese/rbnamazu Makefile ports/textproc/ruby-rdtool/../../japanese/rbnamazu/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 02:51:58 PDT Modified files: textproc/ruby-rdtool/../../japanese/rbnamazu Makefile textproc/ruby-rdtool/../../japanese/rbnamazu/pkg PLIST Log: Install namazu.rb as namazu.rb, and create a symlink to it as rbnamazu. (Previously rbnamazu only) Revision Changes Path 1.2 +3 -2 ports/textproc/ruby-rdtool/../../japanese/rbnamazu/Makefile 1.2 +1 -0 ports/textproc/ruby-rdtool/../../japanese/rbnamazu/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 3:31:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 48BA237B424; Tue, 22 Aug 2000 03:31:10 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA04480; Tue, 22 Aug 2000 03:31:10 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008221031.DAA04480@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 03:31:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/ruby-runit Makefile ports/devel/ruby-runit/files md5 ports/devel/ruby-runit/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 03:31:10 PDT Modified files: devel Makefile Added files: devel/ruby-runit Makefile devel/ruby-runit/files md5 devel/ruby-runit/pkg COMMENT DESCR PLIST Log: Add ruby-runit, Ruby implementation of Kent Beck's Testing Framework. (cf. eXtreme Programming ("XP")) Revision Changes Path 1.336 +2 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 3:32:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 884C937B43C; Tue, 22 Aug 2000 03:32:07 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA04570; Tue, 22 Aug 2000 03:32:07 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008221032.DAA04570@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 03:32:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 03:32:07 PDT Modified files: . modules Log: ruby-runit --> ports/devel/ruby-runit Revision Changes Path 1.1592 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 3:36:47 2000 Delivered-To: cvs-all@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 379F837B422; Tue, 22 Aug 2000 03:36:43 -0700 (PDT) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id TAA08037; Tue, 22 Aug 2000 19:36:32 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id TAA29200; Tue, 22 Aug 2000 19:35:51 +0900 (JST) Date: Tue, 22 Aug 2000 19:35:50 +0900 Message-ID: <86vgwtoa61.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" <knu@idaemons.org> To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/textproc/ruby-rdtool/../../japanese/rbnamazu Makefile ports/textproc/ruby-rdtool/../../japanese/rbnamazu/pkg PLIST In-Reply-To: In your message of "Tue, 22 Aug 2000 02:51:58 -0700 (PDT)" <200008220951.CAA99711@freefall.freebsd.org> References: <200008220951.CAA99711@freefall.freebsd.org> User-Agent: Wanderlust/2.3.0 (Roam) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 11) (Carlsbad Caverns) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE X-PGP-Comment: I changed my key on 2000-08-10 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At Tue, 22 Aug 2000 02:51:58 -0700 (PDT), I wrote: > knu 2000/08/22 02:51:58 PDT > > Modified files: > textproc/ruby-rdtool/../../japanese/rbnamazu Makefile > textproc/ruby-rdtool/../../japanese/rbnamazu/pkg PLIST > Log: > Install namazu.rb as namazu.rb, and create a symlink to it as rbnamazu. > (Previously rbnamazu only) > > Revision Changes Path > 1.2 +3 -2 ports/textproc/ruby-rdtool/../../japanese/rbnamazu/Makefile > 1.2 +1 -0 ports/textproc/ruby-rdtool/../../japanese/rbnamazu/pkg/PLIST Oops, sorry. This is ugly to see, and might confuse some scripts people are using.. ;) -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 4: 8:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B4F837B43C; Tue, 22 Aug 2000 04:08:19 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA11026; Tue, 22 Aug 2000 04:08:18 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200008221108.EAA11026@freefall.freebsd.org> From: Thomas Gellekum <tg@FreeBSD.org> Date: Tue, 22 Aug 2000 04:08:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/xlockmore Makefile ports/x11/xlockmore/files md5 ports/x11/xlockmore/patches patch-sec1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/08/22 04:08:18 PDT Modified files: x11/xlockmore Makefile x11/xlockmore/files md5 Removed files: x11/xlockmore/patches patch-sec1 Log: Upgrade to 4.17.1. This release contains the security fix in patch-sec1. Revision Changes Path 1.57 +2 -2 ports/x11/xlockmore/Makefile 1.30 +1 -1 ports/x11/xlockmore/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 4:45:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E99F37B43E; Tue, 22 Aug 2000 04:45:42 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA14958; Tue, 22 Aug 2000 04:45:42 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200008221145.EAA14958@freefall.freebsd.org> From: Thomas Gellekum <tg@FreeBSD.org> Date: Tue, 22 Aug 2000 04:45:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules ports/print Makefile ports/print/py-reportlab Makefile ports/print/py-reportlab/files md5 ports/print/py-reportlab/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/08/22 04:45:41 PDT Modified files: . modules print Makefile Added files: print/py-reportlab Makefile print/py-reportlab/files md5 print/py-reportlab/pkg COMMENT DESCR PLIST Log: New port py-reportlab, a library for creating PDF documents using Python. Revision Changes Path 1.1593 +2 -1 CVSROOT/modules 1.113 +2 -1 ports/print/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 4:46:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA8A137B42C; Tue, 22 Aug 2000 04:46:36 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA15107; Tue, 22 Aug 2000 04:46:36 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200008221146.EAA15107@freefall.freebsd.org> From: Thomas Gellekum <tg@FreeBSD.org> Date: Tue, 22 Aug 2000 04:46:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/sketch Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/08/22 04:46:36 PDT Modified files: graphics/sketch Makefile Log: Depend on py-reportlab, so that PDF output works. Revision Changes Path 1.23 +2 -1 ports/graphics/sketch/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 5:28:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 38FFE37B422; Tue, 22 Aug 2000 05:28:20 -0700 (PDT) Received: (from joerg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA20707; Tue, 22 Aug 2000 05:28:20 -0700 (PDT) (envelope-from joerg@FreeBSD.org) Message-Id: <200008221228.FAA20707@freefall.freebsd.org> From: Joerg Wunsch <joerg@FreeBSD.org> Date: Tue, 22 Aug 2000 05:28:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/gdb/i386 freebsd-nat.c nm.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG joerg 2000/08/22 05:28:20 PDT Modified files: (Branch: RELENG_4) gnu/usr.bin/binutils/gdb/i386 freebsd-nat.c nm.h Log: MFC (freebsd-nat.c 1.23, nm.h 1.10): hardware watchpoint support for GDB on the i386 architecture. Since the original implementation has been done on a FreeBSD 4.1 machine, and both files are identical to -current, i feel save to MFC it rather quickly. Revision Changes Path 1.21.4.2 +224 -1 src/gnu/usr.bin/binutils/gdb/i386/freebsd-nat.c 1.9.4.1 +33 -0 src/gnu/usr.bin/binutils/gdb/i386/nm.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 5:39:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4920B37B424; Tue, 22 Aug 2000 05:39:53 -0700 (PDT) Received: (from joerg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA21867; Tue, 22 Aug 2000 05:39:53 -0700 (PDT) (envelope-from joerg@FreeBSD.org) Message-Id: <200008221239.FAA21867@freefall.freebsd.org> From: Joerg Wunsch <joerg@FreeBSD.org> Date: Tue, 22 Aug 2000 05:39:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/i386 RELNOTES.TXT X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG joerg 2000/08/22 05:39:53 PDT Modified files: release/texts/i386 RELNOTES.TXT Log: Mention that GDB now supports hardware watchpoints. While i was at it, also corrected that the next 4.x release will be 4.2. Revision Changes Path 1.93 +3 -0 src/release/texts/i386/RELNOTES.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 5:41:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 84E8037B423; Tue, 22 Aug 2000 05:41:14 -0700 (PDT) Received: (from joerg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA21965; Tue, 22 Aug 2000 05:41:14 -0700 (PDT) (envelope-from joerg@FreeBSD.org) Message-Id: <200008221241.FAA21965@freefall.freebsd.org> From: Joerg Wunsch <joerg@FreeBSD.org> Date: Tue, 22 Aug 2000 05:41:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/i386 RELNOTES.TXT X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG joerg 2000/08/22 05:41:14 PDT Modified files: (Branch: RELENG_4) release/texts/i386 RELNOTES.TXT Log: Mention hardware watchpoint support in GDB. Revision Changes Path 1.72.2.20 +3 -0 src/release/texts/i386/RELNOTES.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 5:55:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C0DA937B422; Tue, 22 Aug 2000 05:55:44 -0700 (PDT) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA23671; Tue, 22 Aug 2000 05:55:44 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Message-Id: <200008221255.FAA23671@freefall.freebsd.org> From: Ollivier Robert <roberto@FreeBSD.org> Date: Tue, 22 Aug 2000 05:55:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG roberto 2000/08/22 05:55:44 PDT Modified files: en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml Log: Name cleanup for the various ftp*.fr.freebsd.org. Revision Changes Path 1.82 +6 -6 doc/en_US.ISO_8859-1/books/handbook/mirrors/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 6: 8: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6CAF737B423; Tue, 22 Aug 2000 06:08:01 -0700 (PDT) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA26505; Tue, 22 Aug 2000 06:08:01 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Message-Id: <200008221308.GAA26505@freefall.freebsd.org> From: Ollivier Robert <roberto@FreeBSD.org> Date: Tue, 22 Aug 2000 06:08:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall menus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG roberto 2000/08/22 06:08:01 PDT Modified files: release/sysinstall menus.c Log: Reflect the name changes in fr.freebsd.org. Revision Changes Path 1.272 +3 -3 src/release/sysinstall/menus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 6:36: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B62437B43E; Tue, 22 Aug 2000 06:36:03 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA29795; Tue, 22 Aug 2000 06:36:03 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008221336.GAA29795@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Tue, 22 Aug 2000 06:36:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/PDL Makefile ports/math/PDL/files md5 ports/math/PDL/patches patch-ab patch-aa ports/math/PDL/pkg DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/22 06:36:03 PDT Modified files: math/PDL Makefile math/PDL/files md5 math/PDL/patches patch-aa math/PDL/pkg DESCR PLIST Added files: math/PDL/patches patch-ab Log: Upgrade the math/PDL port to the latest version 2.1.1. Correctly identify a couple of LIB_DEPENDS as such, and add a KITCHEN_SINK dependency on the GSL math libraries. PR: 19517 Submitted by: Brian Handy <handy@physics.montana.edu> Revision Changes Path 1.10 +7 -4 ports/math/PDL/Makefile 1.3 +1 -1 ports/math/PDL/files/md5 1.3 +17 -8 ports/math/PDL/patches/patch-aa 1.3 +1 -1 ports/math/PDL/pkg/DESCR 1.3 +38 -28 ports/math/PDL/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 7:11:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 207E237B422; Tue, 22 Aug 2000 07:11:12 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA97018; Tue, 22 Aug 2000 07:11:12 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008221411.HAA97018@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 07:11:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print Makefile ports/print/clibpdf Makefile ports/print/clibpdf/files esecanna.sh md5 ports/print/clibpdf/patches patch-aa ports/print/clibpdf/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 07:11:11 PDT Modified files: print Makefile Added files: print/clibpdf Makefile print/clibpdf/files esecanna.sh md5 print/clibpdf/patches patch-aa print/clibpdf/pkg COMMENT DESCR PLIST Log: Add clibpdf, a library for creating PDF (Acrobat) files directly via C language programs. Revision Changes Path 1.114 +2 -1 ports/print/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 7:11:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 92C1837B423; Tue, 22 Aug 2000 07:11:51 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA97141; Tue, 22 Aug 2000 07:11:51 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008221411.HAA97141@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 07:11:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 07:11:51 PDT Modified files: . modules Log: clibpdf --> ports/print/clibpdf Revision Changes Path 1.1594 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 7:19:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AFE2937B422; Tue, 22 Aug 2000 07:19:12 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA98486; Tue, 22 Aug 2000 07:19:12 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008221419.HAA98486@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 07:19:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/clibpdf Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 07:19:12 PDT Modified files: print/clibpdf Makefile Log: Mark as NO_CDROM. One needs a license to bundle this software with other products. (And only free for non-profit personal use, and use by educational, non-profit, and government organizations) Revision Changes Path 1.2 +3 -1 ports/print/clibpdf/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 7:23:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 592F637B422; Tue, 22 Aug 2000 07:23:10 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA99098; Tue, 22 Aug 2000 07:23:10 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008221423.HAA99098@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 07:23:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports LEGAL X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 07:23:10 PDT Modified files: . LEGAL Log: Add ports/print/clibpdf. Revision Changes Path 1.172 +7 -1 ports/LEGAL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 7:28:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9375337B422; Tue, 22 Aug 2000 07:28:17 -0700 (PDT) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA99771; Tue, 22 Aug 2000 07:28:17 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Message-Id: <200008221428.HAA99771@freefall.freebsd.org> From: Ollivier Robert <roberto@FreeBSD.org> Date: Tue, 22 Aug 2000 07:28:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall menus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG roberto 2000/08/22 07:28:17 PDT Modified files: release/sysinstall menus.c Log: Correct the naming. The default server is ftp.fr and #1 is the same. Add back ftp6. Revision Changes Path 1.273 +6 -4 src/release/sysinstall/menus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 7:39:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BBA4337B423; Tue, 22 Aug 2000 07:39:20 -0700 (PDT) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA02237; Tue, 22 Aug 2000 07:39:20 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Message-Id: <200008221439.HAA02237@freefall.freebsd.org> From: Ollivier Robert <roberto@FreeBSD.org> Date: Tue, 22 Aug 2000 07:39:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG roberto 2000/08/22 07:39:20 PDT Modified files: en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml Log: Correct my previous error in the naming. Revision Changes Path 1.83 +7 -6 doc/en_US.ISO_8859-1/books/handbook/mirrors/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 8: 8:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 834D837B43C; Tue, 22 Aug 2000 08:08:47 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA07920; Tue, 22 Aug 2000 08:08:47 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008221508.IAA07920@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 08:08:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/converters/ruby-iconv Makefile ports/converters/ruby-iconv/pkg DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 08:08:47 PDT Modified files: converters/ruby-iconv Makefile converters/ruby-iconv/pkg DESCR Log: Portlint. ;) Revision Changes Path 1.7 +2 -2 ports/converters/ruby-iconv/Makefile 1.3 +1 -1 ports/converters/ruby-iconv/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 8:13:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B521F37B423; Tue, 22 Aug 2000 08:13:41 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA08875; Tue, 22 Aug 2000 08:13:41 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008221513.IAA08875@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 08:13:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print Makefile ports/print/ruby-clibpdf Makefile ports/print/ruby-clibpdf/files md5 ports/print/ruby-clibpdf/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 08:13:41 PDT Modified files: print Makefile Added files: print/ruby-clibpdf Makefile print/ruby-clibpdf/files md5 print/ruby-clibpdf/pkg COMMENT DESCR PLIST Log: Add ruby-clibpdf, a Ruby binding for ClibPDF. Revision Changes Path 1.115 +2 -1 ports/print/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 8:15:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F60F37B42C; Tue, 22 Aug 2000 08:15:44 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA09157; Tue, 22 Aug 2000 08:15:44 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008221515.IAA09157@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 08:15:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 08:15:43 PDT Modified files: . modules Log: ruby-clibpdf --> ports/print/ruby-clibpdf Revision Changes Path 1.1595 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 8:29:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 403A137B422; Tue, 22 Aug 2000 08:29:05 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA11022; Tue, 22 Aug 2000 08:29:05 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200008221529.IAA11022@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> Date: Tue, 22 Aug 2000 08:29:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 services.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/08/22 08:29:05 PDT Modified files: share/man/man5 services.5 Log: The Internet isn't by a long shot just DARPA anymore. Reflect reality. Inspired by: -current mailinglist Revision Changes Path 1.6 +1 -2 src/share/man/man5/services.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 9: 2: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8ABF837B42C; Tue, 22 Aug 2000 09:02:06 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA15418; Tue, 22 Aug 2000 09:02:06 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008221602.JAA15418@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Tue, 22 Aug 2000 09:02:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/libsidplay Makefile ports/audio/libsidplay/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/22 09:02:06 PDT Modified files: audio/libsidplay Makefile audio/libsidplay/files md5 Log: Update to 1.36.44. Submitted by: maintainer Revision Changes Path 1.15 +2 -2 ports/audio/libsidplay/Makefile 1.6 +1 -1 ports/audio/libsidplay/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 9:10:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0ACF37B43F; Tue, 22 Aug 2000 09:10:39 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA18036; Tue, 22 Aug 2000 09:10:39 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008221610.JAA18036@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Tue, 22 Aug 2000 09:10:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/libsidplay Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/22 09:10:39 PDT Modified files: audio/libsidplay Makefile Log: Override FETCH_CMD to get rid from -A option. PR: 20764 Submitted by: maintainer Revision Changes Path 1.16 +2 -1 ports/audio/libsidplay/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 9:16:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ECA8C37B42C; Tue, 22 Aug 2000 09:16:17 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA18701; Tue, 22 Aug 2000 09:16:17 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008221616.JAA18701@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Tue, 22 Aug 2000 09:16:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gdb.291/gdb dbxread.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/22 09:16:17 PDT Modified files: contrib/gdb.291/gdb dbxread.c Log: GDB on the Alpha has a problem most likey due to being out of sync with the matching Binutils version (in this case GDB 5.0 matches Binutils 2.10.0). Andrew Gallatin has found GCC 2.95.2 + Binutils 2.10.0 puts include file names in the symbol table. This apparently causes two problems: The first being that that init_header_files() is never called, this causes an immediate SEGV in add_this_object_header_file(). The second being that end_symtab() is being called twice, and this is corrupting gdb's memory somehow. Submitted by: gallatin Revision Changes Path 1.3 +12 -0 src/contrib/gdb.291/gdb/dbxread.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 10:18:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB9F237B440; Tue, 22 Aug 2000 10:18:20 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA28304; Tue, 22 Aug 2000 10:18:20 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008221718.KAA28304@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Tue, 22 Aug 2000 10:18:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/commoncpp Makefile ports/devel/commoncpp/files md5 ports/devel/commoncpp/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/22 10:18:20 PDT Modified files: devel/commoncpp Makefile devel/commoncpp/files md5 devel/commoncpp/pkg PLIST Log: Update to 1.2.0. Revision Changes Path 1.2 +2 -2 ports/devel/commoncpp/Makefile 1.2 +1 -1 ports/devel/commoncpp/files/md5 1.2 +4 -0 ports/devel/commoncpp/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11: 6:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB75F37B424; Tue, 22 Aug 2000 11:06:21 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA34959; Tue, 22 Aug 2000 11:06:21 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221806.LAA34959@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:06:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if.c if_var.h src/sys/sys sockio.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:06:21 PDT Modified files: (Branch: RELENG_4) sys/net if.c if_var.h sys/sys sockio.h Log: MFC: implement SIOCSIFLLADDR ioctl(). Revision Changes Path 1.85.2.3 +56 -1 src/sys/net/if.c 1.18.2.5 +2 -1 src/sys/net/if_var.h 1.14.2.2 +2 -1 src/sys/sys/sockio.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11: 8:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A59537B43C; Tue, 22 Aug 2000 11:08:43 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA35246; Tue, 22 Aug 2000 11:08:43 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221808.LAA35246@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:08:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ifconfig ifconfig.8 ifconfig.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:08:43 PDT Modified files: (Branch: RELENG_4) sbin/ifconfig ifconfig.8 ifconfig.c Log: MFC: implement SIOCSIFLLADDR ioctl() MFC: add support to the 'ether' address family to support setting of addresses MFC: show actual usage in man page and usage string Revision Changes Path 1.27.2.2 +23 -2 src/sbin/ifconfig/ifconfig.8 1.51.2.2 +61 -29 src/sbin/ifconfig/ifconfig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:33:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2F9137B422; Tue, 22 Aug 2000 11:33:54 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA37966; Tue, 22 Aug 2000 11:33:54 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221833.LAA37966@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:33:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_base.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:33:54 PDT Modified files: (Branch: RELENG_4) sys/netgraph ng_base.c Log: MFC: (rev. 1.23) use a bigger buffer for NGM_BINARY2ASCII conversion. Revision Changes Path 1.11.2.5 +2 -2 src/sys/netgraph/ng_base.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:36: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4800E37B43C; Tue, 22 Aug 2000 11:35:58 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA38223; Tue, 22 Aug 2000 11:35:58 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221835.LAA38223@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:35:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_parse.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:35:57 PDT Modified files: (Branch: RELENG_4) sys/netgraph ng_parse.h Log: MFC: (rev. 1.4) new unsigned and hex types, fix comment in example code Revision Changes Path 1.2.4.2 +17 -3 src/sys/netgraph/ng_parse.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:37:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BBAB37B423; Tue, 22 Aug 2000 11:37:43 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA38477; Tue, 22 Aug 2000 11:37:43 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221837.LAA38477@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:37:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_parse.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:37:43 PDT Modified files: (Branch: RELENG_4) sys/netgraph ng_parse.c Log: MFC: (rev. 1.5) unsigned and hex types, allocate buffer dynamically Revision Changes Path 1.3.2.2 +146 -41 src/sys/netgraph/ng_parse.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:39:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B14637B43F; Tue, 22 Aug 2000 11:39:13 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA38785; Tue, 22 Aug 2000 11:39:13 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221839.LAA38785@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:39:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_ksocket.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:39:09 PDT Modified files: (Branch: RELENG_4) sys/netgraph ng_ksocket.h Log: MFC: (rev. 1.3) "u_int32_t" should have been "int32_t". Revision Changes Path 1.2.2.1 +3 -3 src/sys/netgraph/ng_ksocket.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:40: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E9F3537B424; Tue, 22 Aug 2000 11:40:03 -0700 (PDT) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA38918; Tue, 22 Aug 2000 11:40:03 -0700 (PDT) (envelope-from nik@FreeBSD.org) Message-Id: <200008221840.LAA38918@freefall.freebsd.org> From: Nik Clayton <nik@FreeBSD.org> Date: Tue, 22 Aug 2000 11:40:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nik 2000/08/22 11:40:03 PDT Modified files: . access Log: Add Bruce Mah, who's submitted far too many doc related PRs for his own good. Somebody break out the welcome wagon. Revision Changes Path 1.176 +2 -1 CVSROOT/access To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:40:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D2B5937B43E; Tue, 22 Aug 2000 11:40:42 -0700 (PDT) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39006; Tue, 22 Aug 2000 11:40:42 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Message-Id: <200008221840.LAA39006@freefall.freebsd.org> From: Jacques Vidrine <nectar@FreeBSD.org> Date: Tue, 22 Aug 2000 11:40:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gnomeicu Makefile ports/net/gnomeicu/files md5 ports/net/gnomeicu/patches patch-ac ports/net/gnomeicu/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nectar 2000/08/22 11:40:42 PDT Modified files: net/gnomeicu Makefile net/gnomeicu/files md5 net/gnomeicu/patches patch-ac net/gnomeicu/pkg COMMENT DESCR PLIST Log: Forced commit to note repository copy: ports/net/gnome-icu --> ports/net/gnomeicu Revision Changes Path 1.26 +1 -1 ports/net/gnomeicu/Makefile 1.8 +0 -0 ports/net/gnomeicu/files/md5 1.5 +0 -0 ports/net/gnomeicu/patches/patch-ac 1.4 +0 -0 ports/net/gnomeicu/pkg/COMMENT 1.4 +0 -0 ports/net/gnomeicu/pkg/DESCR 1.9 +0 -0 ports/net/gnomeicu/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:41:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5BB1937B423; Tue, 22 Aug 2000 11:41:14 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39102; Tue, 22 Aug 2000 11:41:14 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221841.LAA39102@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:41:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_pptpgre.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:41:13 PDT Modified files: (Branch: RELENG_4) sys/netgraph ng_pptpgre.h Log: MFC: (rev. 1.3, 1.4) timing fixes, use unsigned parse types Revision Changes Path 1.1.4.2 +27 -23 src/sys/netgraph/ng_pptpgre.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:42: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7CEBC37B43E; Tue, 22 Aug 2000 11:41:59 -0700 (PDT) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39262; Tue, 22 Aug 2000 11:41:59 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Message-Id: <200008221841.LAA39262@freefall.freebsd.org> From: Jacques Vidrine <nectar@FreeBSD.org> Date: Tue, 22 Aug 2000 11:41:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nectar 2000/08/22 11:41:59 PDT Modified files: net Makefile Log: gnome-icu --> gnomeicu Revision Changes Path 1.396 +2 -2 ports/net/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:42:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 409D637B422; Tue, 22 Aug 2000 11:42:13 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39301; Tue, 22 Aug 2000 11:42:13 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221842.LAA39301@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:42:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_pptpgre.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:42:13 PDT Modified files: (Branch: RELENG_4) sys/netgraph ng_pptpgre.c Log: MFC: (rev. 1.8, 1.9) timing fixes, etc. Revision Changes Path 1.2.2.3 +90 -41 src/sys/netgraph/ng_pptpgre.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:42:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 07FE537B43E; Tue, 22 Aug 2000 11:42:28 -0700 (PDT) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39381; Tue, 22 Aug 2000 11:42:28 -0700 (PDT) (envelope-from billf@FreeBSD.org) Message-Id: <200008221842.LAA39381@freefall.freebsd.org> From: Bill Fumerola <billf@FreeBSD.org> Date: Tue, 22 Aug 2000 11:42:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pkg_install/version Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG billf 2000/08/22 11:42:27 PDT Modified files: usr.sbin/pkg_install/version Makefile Log: Now that Bruce Mah is a committer, retire my co-maintainership of pkg_version. Revision Changes Path 1.6 +2 -3 src/usr.sbin/pkg_install/version/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:42:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A1DCD37B506; Tue, 22 Aug 2000 11:42:43 -0700 (PDT) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39434; Tue, 22 Aug 2000 11:42:43 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Message-Id: <200008221842.LAA39434@freefall.freebsd.org> From: Jacques Vidrine <nectar@FreeBSD.org> Date: Tue, 22 Aug 2000 11:42:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gnome-icu Makefile ports/net/gnome-icu/files md5 ports/net/gnome-icu/patches patch-ac ports/net/gnome-icu/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nectar 2000/08/22 11:42:43 PDT Removed files: net/gnome-icu Makefile net/gnome-icu/files md5 net/gnome-icu/patches patch-ac net/gnome-icu/pkg COMMENT DESCR PLIST Log: Remove ports/net/gnome-icu after repo-copy to ports/net/gnomeicu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:43: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E415537B424; Tue, 22 Aug 2000 11:42:57 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39489; Tue, 22 Aug 2000 11:42:57 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221842.LAA39489@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:42:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_socket.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:42:57 PDT Modified files: (Branch: RELENG_4) sys/netgraph ng_socket.c Log: MFC: (rev. 1.15) increase the maximum allowable datagram length Revision Changes Path 1.11.2.1 +2 -2 src/sys/netgraph/ng_socket.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:44: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AD1237B424; Tue, 22 Aug 2000 11:44:00 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39663; Tue, 22 Aug 2000 11:44:00 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221844.LAA39663@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:44:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_tee.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:44:00 PDT Modified files: (Branch: RELENG_4) sys/netgraph ng_tee.c Log: MFC: (rev. 1.9) new control message to atomically get and clear statistics Revision Changes Path 1.7.2.1 +38 -25 src/sys/netgraph/ng_tee.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:44:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 907CC37B424; Tue, 22 Aug 2000 11:44:49 -0700 (PDT) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39762; Tue, 22 Aug 2000 11:44:49 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Message-Id: <200008221844.LAA39762@freefall.freebsd.org> From: Jacques Vidrine <nectar@FreeBSD.org> Date: Tue, 22 Aug 2000 11:44:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nectar 2000/08/22 11:44:49 PDT Modified files: . modules Log: gnome-icu --> gnomeicu Revision Changes Path 1.1596 +2 -2 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:45: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA47937B449; Tue, 22 Aug 2000 11:44:59 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39808; Tue, 22 Aug 2000 11:44:59 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221844.LAA39808@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:44:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_tee.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:44:59 PDT Modified files: (Branch: RELENG_4) sys/netgraph ng_tee.h Log: MFC: (rev. 1.4) unsigned statistics, new control message Revision Changes Path 1.3.2.1 +6 -5 src/sys/netgraph/ng_tee.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:46:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A79B637B43C; Tue, 22 Aug 2000 11:46:17 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA40066; Tue, 22 Aug 2000 11:46:17 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221846.LAA40066@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:46:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_vjc.c ng_vjc.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:46:17 PDT Modified files: (Branch: RELENG_4) sys/netgraph ng_vjc.c ng_vjc.h Log: MFC: - Add new control message NGM_VJC_GET_CONFIG - Implement control message ASCII'fication for all control messages Revision Changes Path 1.9.2.2 +165 -7 src/sys/netgraph/ng_vjc.c 1.4.4.1 +14 -2 src/sys/netgraph/ng_vjc.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:47:14 2000 Delivered-To: cvs-all@freebsd.org Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by hub.freebsd.org (Postfix) with ESMTP id BD9D037B422; Tue, 22 Aug 2000 11:47:09 -0700 (PDT) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.0/8.11.0) id e7MIl9T55952; Tue, 22 Aug 2000 11:47:09 -0700 (PDT) (envelope-from bmah) Message-Id: <200008221847.e7MIl9T55952@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Bill Fumerola <billf@FreeBSD.ORG> Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/pkg_install/version Makefile In-Reply-To: <200008221842.LAA39381@freefall.freebsd.org> References: <200008221842.LAA39381@freefall.freebsd.org> Comments: In-reply-to Bill Fumerola <billf@FreeBSD.ORG> message dated "Tue, 22 Aug 2000 11:42:27 -0700." From: bmah@cisco.com (Bruce A. Mah) Reply-To: bmah@cisco.com X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5<Pi&akO)o^8;[r %l(8ZHlbF`dD>v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_624438724P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Tue, 22 Aug 2000 11:47:09 -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --==_Exmh_624438724P Content-Type: text/plain; charset=us-ascii If memory serves me right, Bill Fumerola wrote: > Now that Bruce Mah is a committer, retire my co-maintainership > of pkg_version. You sure didn't waste any time...that only took you about two and a half minutes! :-) Bruce. --==_Exmh_624438724P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 5.0i for non-commercial use MessageID: n+VHHglkFrLl0UP2YcqB09pVzyn1sCHa iQA/AwUBOaLKrdjKMXFboFLDEQJJrwCg0f8dmC4XcVp+vHZeW9KEmoC+YGIAn207 NqfRUBcnmPHF/Zq09/ue8i2m =aWzr -----END PGP SIGNATURE----- --==_Exmh_624438724P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:49:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A0F4037B423; Tue, 22 Aug 2000 11:49:47 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA40599; Tue, 22 Aug 2000 11:49:47 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221849.LAA40599@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:49:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_ether.c ng_ether.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:49:47 PDT Modified files: (Branch: RELENG_4) sys/netgraph ng_ether.c ng_ether.h Log: MFC: three more control messages, better EN address parsing Revision Changes Path 1.2.2.6 +100 -10 src/sys/netgraph/ng_ether.c 1.2.2.3 +5 -2 src/sys/netgraph/ng_ether.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:52:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7CB9237B42C; Tue, 22 Aug 2000 11:52:17 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA41017; Tue, 22 Aug 2000 11:52:17 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221852.LAA41017@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:52:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_async.h ng_bpf.c ng_bpf.h ng_cisco.h ng_ksocket.c ng_message.h ng_ppp.h ng_sample.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:52:17 PDT Modified files: (Branch: RELENG_4) sys/netgraph ng_async.h ng_bpf.c ng_bpf.h ng_cisco.h ng_ksocket.c ng_message.h ng_ppp.h ng_sample.h Log: MFC: take advantage of the new unsigned and hex integer types Revision Changes Path 1.6.2.1 +12 -12 src/sys/netgraph/ng_async.h 1.2.4.1 +5 -5 src/sys/netgraph/ng_bpf.c 1.2.4.1 +7 -7 src/sys/netgraph/ng_bpf.h 1.2.2.2 +3 -3 src/sys/netgraph/ng_cisco.h 1.5.2.2 +3 -3 src/sys/netgraph/ng_ksocket.c 1.4.2.2 +13 -13 src/sys/netgraph/ng_message.h 1.5.2.2 +30 -30 src/sys/netgraph/ng_ppp.h 1.2.2.1 +5 -5 src/sys/netgraph/ng_sample.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:54:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C8F737B43E; Tue, 22 Aug 2000 11:54:36 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA41302; Tue, 22 Aug 2000 11:54:36 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Message-Id: <200008221854.LAA41302@freefall.freebsd.org> From: Bruce Mah <bmah@FreeBSD.org> Date: Tue, 22 Aug 2000 11:54:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook authors.ent doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/staff chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bmah 2000/08/22 11:54:36 PDT Modified files: en_US.ISO_8859-1/books/handbook authors.ent en_US.ISO_8859-1/books/handbook/contrib chapter.sgml en_US.ISO_8859-1/books/handbook/staff chapter.sgml Log: First commit: Move myself from Additional Contributors to Developers, and try not to embarass myself overmuch in the process. Revision Changes Path 1.115 +3 -1 doc/en_US.ISO_8859-1/books/handbook/authors.ent 1.281 +1 -5 doc/en_US.ISO_8859-1/books/handbook/contrib/chapter.sgml 1.152 +5 -1 doc/en_US.ISO_8859-1/books/handbook/staff/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 11:58:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CEC537B424; Tue, 22 Aug 2000 11:58:10 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA41891; Tue, 22 Aug 2000 11:58:10 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008221858.LAA41891@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Tue, 22 Aug 2000 11:58:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 ng_ether.4 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/22 11:58:10 PDT Modified files: (Branch: RELENG_4) share/man/man4 ng_ether.4 Log: MFC: (rev. 1.8, 1.9) three new control messages, fix nit. Revision Changes Path 1.4.2.4 +17 -1 src/share/man/man4/ng_ether.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 12: 2: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E092F37B43C; Tue, 22 Aug 2000 12:01:57 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA42326; Tue, 22 Aug 2000 12:01:57 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Message-Id: <200008221901.MAA42326@freefall.freebsd.org> From: Bruce Mah <bmah@FreeBSD.org> Date: Tue, 22 Aug 2000 12:01:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news newsflash.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bmah 2000/08/22 12:01:57 PDT Modified files: en/news newsflash.sgml Log: Tell the world I'm now a committer. Revision Changes Path 1.202 +5 -2 www/en/news/newsflash.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 12: 5:26 2000 Delivered-To: cvs-all@freebsd.org Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 5F14F37B43C; Tue, 22 Aug 2000 12:05:22 -0700 (PDT) Date: Tue, 22 Aug 2000 15:05:21 -0400 (EDT) From: Brian Fundakowski Feldman <green@FreeBSD.org> X-Sender: green@green.dyndns.org To: Nik Clayton <nik@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access In-Reply-To: <200008221840.LAA38918@freefall.freebsd.org> Message-ID: <Pine.BSF.4.21.0008221503140.83059-100000@green.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 22 Aug 2000, Nik Clayton wrote: > nik 2000/08/22 11:40:03 PDT > > Modified files: > . access > Log: > Add Bruce Mah, who's submitted far too many doc related PRs for his own > good. Somebody break out the welcome wagon. Welcome to the freshme^Wnew committers! Pick up your standard-issue Emergency Pointy Hats (break glass and place on top of head in case of emergency) from the locker on your left. Speech, speech, speech! Formal introductions are in order :) -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 12: 6:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F16A37B43E; Tue, 22 Aug 2000 12:06:35 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA44370; Tue, 22 Aug 2000 12:06:35 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008221906.MAA44370@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Tue, 22 Aug 2000 12:06:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/apsfilter Makefile ports/print/apsfilter/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/22 12:06:35 PDT Modified files: print/apsfilter Makefile print/apsfilter/files md5 Log: use newest available diff. Revision Changes Path 1.65 +2 -2 ports/print/apsfilter/Makefile 1.30 +2 -2 ports/print/apsfilter/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 12: 8:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6346137B423; Tue, 22 Aug 2000 12:08:16 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA44637; Tue, 22 Aug 2000 12:08:16 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008221908.MAA44637@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Tue, 22 Aug 2000 12:08:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/apsfilter6/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/22 12:08:16 PDT Modified files: print/apsfilter6/files md5 Log: new apsfilter current archive. Sorry same date in archive name. Update md5. Revision Changes Path 1.34 +1 -1 ports/print/apsfilter6/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 12:15:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EDEA437B424; Tue, 22 Aug 2000 12:15:35 -0700 (PDT) Received: (from horikawa@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA45555; Tue, 22 Aug 2000 12:15:35 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Message-Id: <200008221915.MAA45555@freefall.freebsd.org> From: Kazuo Horikawa <horikawa@FreeBSD.org> Date: Tue, 22 Aug 2000 12:15:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man8 moused.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG horikawa 2000/08/22 12:15:35 PDT Modified files: ja_JP.eucJP/man/man8 moused.8 Log: Forced commit to fix log.\ \ Previous patch is submitted by: tkatayam@noc.titech.ac.jp (KATAYAMA, Takeo) Revision Changes Path 1.19 +0 -0 doc/ja_JP.eucJP/man/man8/moused.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 12:21:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DAE0737B423; Tue, 22 Aug 2000 12:21:08 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA46365; Tue, 22 Aug 2000 12:21:08 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008221921.MAA46365@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 12:21:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net rcmd.3 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 12:21:08 PDT Modified files: (Branch: RELENG_4) lib/libc/net rcmd.3 Log: MFC: Document the API change to allocate rcmd{,_af}()'s *ahost argument using malloc() rather than pointing it at something that's free()d before the function returns. Revision Changes Path 1.12.2.3 +6 -1 src/lib/libc/net/rcmd.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 12:29:30 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.ninth-circle.org (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id 1E61337B42C; Tue, 22 Aug 2000 12:29:25 -0700 (PDT) Received: (from asmodai@localhost) by lucifer.ninth-circle.org (8.9.3/8.9.3) id VAA73402; Tue, 22 Aug 2000 21:29:23 +0200 (CEST) (envelope-from asmodai) Date: Tue, 22 Aug 2000 21:29:23 +0200 From: Jeroen Ruigrok van der Werven <jruigrok@via-net-works.nl> To: Nik Clayton <nik@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access Message-ID: <20000822212922.B73076@lucifer.bart.nl> References: <200008221840.LAA38918@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008221840.LAA38918@freefall.freebsd.org>; from nik@FreeBSD.org on Tue, Aug 22, 2000 at 11:40:03AM -0700 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20000822 20:45], Nik Clayton (nik@FreeBSD.org) wrote: > Log: > Add Bruce Mah, who's submitted far too many doc related PRs for his own > good. Somebody break out the welcome wagon. So we finally suckered him as well? =) Good. I see -doc is planning world domination slowly. -- Jeroen Ruigrok van der Werven Network- and systemadministrator <jruigrok@via-net-works.nl> VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl Sleep tonight, sweet summer light, scattered yesterdays, the past is far away... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 12:36:17 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 4324837B422; Tue, 22 Aug 2000 12:36:14 -0700 (PDT) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 7FA2B1C6B; Tue, 22 Aug 2000 15:36:13 -0400 (EDT) Date: Tue, 22 Aug 2000 15:36:13 -0400 From: Bill Fumerola <billf@chimesnet.com> To: "Bruce A. Mah" <bmah@cisco.com> Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/pkg_install/version Makefile Message-ID: <20000822153613.J57333@jade.chc-chimes.com> References: <200008221842.LAA39381@freefall.freebsd.org> <200008221847.e7MIl9T55952@bmah-freebsd-0.cisco.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200008221847.e7MIl9T55952@bmah-freebsd-0.cisco.com>; from bmah@cisco.com on Tue, Aug 22, 2000 at 11:47:09AM -0700 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Aug 22, 2000 at 11:47:09AM -0700, Bruce A. Mah wrote: > If memory serves me right, Bill Fumerola wrote: > > > Now that Bruce Mah is a committer, retire my co-maintainership > > of pkg_version. > > You sure didn't waste any time...that only took you about two and a half > minutes! :-) Nothing motivates me more then getting rid of responsibilities. :-> -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 12:40:57 2000 Delivered-To: cvs-all@freebsd.org Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by hub.freebsd.org (Postfix) with ESMTP id 995E337B423; Tue, 22 Aug 2000 12:40:50 -0700 (PDT) Received: from parish.my.domain ([62.253.88.67]) by mta03-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20000822194043.QSED16423.mta03-svc.ntlworld.com@parish.my.domain>; Tue, 22 Aug 2000 20:40:43 +0100 Received: (from mark@localhost) by parish.my.domain (8.9.3/8.9.3) id UAA03741; Tue, 22 Aug 2000 20:40:15 +0100 (BST) (envelope-from mark) Date: Tue, 22 Aug 2000 20:40:08 +0100 From: Mark Ovens <marko@freebsd.org> To: Jeroen Ruigrok van der Werven <jruigrok@via-net-works.nl> Cc: Nik Clayton <nik@freebsd.org>, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: CVSROOT access Message-ID: <20000822204008.F254@parish> References: <200008221840.LAA38918@freefall.freebsd.org> <20000822212922.B73076@lucifer.bart.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <20000822212922.B73076@lucifer.bart.nl>; from jruigrok@via-net-works.nl on Tue, Aug 22, 2000 at 09:29:23PM +0200 Organization: Total lack of Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Aug 22, 2000 at 09:29:23PM +0200, Jeroen Ruigrok van der Werven wrote: > -On [20000822 20:45], Nik Clayton (nik@FreeBSD.org) wrote: > > Log: > > Add Bruce Mah, who's submitted far too many doc related PRs for his own > > good. Somebody break out the welcome wagon. > > So we finally suckered him as well? =) > > Good. I see -doc is planning world domination slowly. > Hmm, you're going to have to find us somewhere larger that the ex-janitor's closet (or should that be janitors ex-closet) down the hall and to the right:) > -- > Jeroen Ruigrok van der Werven Network- and systemadministrator > <jruigrok@via-net-works.nl> VIA Net.Works The Netherlands > BSD: Technical excellence at its best http://www.via-net-works.nl > Sleep tonight, sweet summer light, scattered yesterdays, the past is far > away... > -- 4.4 - The number of the Beastie ________________________________________________________________ 51.44°N FreeBSD - The Power To Serve http://www.freebsd.org 2.057°W My Webpage http://ukug.uk.freebsd.org/~mark mailto:marko@freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 12:52: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.ninth-circle.org (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id 5699237B422; Tue, 22 Aug 2000 12:51:58 -0700 (PDT) Received: (from asmodai@localhost) by lucifer.ninth-circle.org (8.9.3/8.9.3) id VAA73654; Tue, 22 Aug 2000 21:51:55 +0200 (CEST) (envelope-from asmodai) Date: Tue, 22 Aug 2000 21:51:54 +0200 From: Jeroen Ruigrok van der Werven <jruigrok@via-net-works.nl> To: Mark Ovens <marko@FreeBSD.org> Cc: Nik Clayton <nik@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access Message-ID: <20000822215154.E73076@lucifer.bart.nl> References: <200008221840.LAA38918@freefall.freebsd.org> <20000822212922.B73076@lucifer.bart.nl> <20000822204008.F254@parish> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000822204008.F254@parish>; from marko@FreeBSD.org on Tue, Aug 22, 2000 at 08:40:08PM +0100 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20000822 21:45], Mark Ovens (marko@FreeBSD.org) wrote: >Hmm, you're going to have to find us somewhere larger that the >ex-janitor's closet (or should that be janitors ex-closet) down the >hall and to the right:) Me? Nik's the boss 'round 'ere. -- Jeroen Ruigrok van der Werven Network- and systemadministrator <jruigrok@via-net-works.nl> VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl Without a soul there can be no understanding between the heart and the mind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 12:53:18 2000 Delivered-To: cvs-all@freebsd.org Received: from peace.mahoroba.org (peace.calm.imasy.or.jp [202.227.26.34]) by hub.freebsd.org (Postfix) with ESMTP id 6D0A237B43F; Tue, 22 Aug 2000 12:53:11 -0700 (PDT) Received: from localhost (IDENT:HZEiMXljVOrQbr6i1rOOcZLSreLOSxZDGinIZkFEZpmKuB6Q5xCbFWKgs+LQNqIA@localhost [::1]) (authenticated) by peace.mahoroba.org (8.11.0/8.11.0/peace) with ESMTP/inet6 id e7MJqvv85079; Wed, 23 Aug 2000 04:52:57 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Wed, 23 Aug 2000 04:52:54 +0900 (JST) Message-Id: <20000823.045254.74673706.ume@mahoroba.org> To: jhb@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net rcmd.3 From: Hajimu UMEMOTO <ume@mahoroba.org> In-Reply-To: <200008221921.MAA46365@freefall.freebsd.org> References: <200008221921.MAA46365@freefall.freebsd.org> X-Mailer: xcite1.20> Mew version 1.95b38 on Emacs 20.6 / Mule 4.0 =?iso-2022-jp?B?KBskQjJWMWMbKEIp?= X-PGP-Public-Key: http://www.imasy.org/~ume/publickey.asc X-PGP-Fingerprint: 6B 0C 53 FC 5D D0 37 91 05 D0 B3 EF 36 9B 6A BC X-URL: http://www.imasy.org/~ume/ X-OS: FreeBSD 5.0-CURRENT Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>> On Tue, 22 Aug 2000 12:21:08 -0700 (PDT) >>>>> John Baldwin <jhb@FreeBSD.org> said: jhb> jhb 2000/08/22 12:21:08 PDT jhb> Modified files: (Branch: RELENG_4) jhb> lib/libc/net rcmd.3 jhb> Log: jhb> MFC: Document the API change to allocate rcmd{,_af}()'s *ahost argument jhb> using malloc() rather than pointing it at something that's free()d jhb> before the function returns. Oops, actually, there is no API change around rcmd{,_af}(). rcmd.c change corresponding to this rcmd.3 change was corrected. But, this rcmd.3 change is still remain. X-( -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@FreeBSD.org http://www.imasy.org/~ume/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 13: 3:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 390BB37B43C; Tue, 22 Aug 2000 13:03:32 -0700 (PDT) Received: (from marko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA51507; Tue, 22 Aug 2000 13:03:32 -0700 (PDT) (envelope-from marko@FreeBSD.org) Message-Id: <200008222003.NAA51507@freefall.freebsd.org> From: Mark Ovens <marko@FreeBSD.org> Date: Tue, 22 Aug 2000 13:03:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/articles/programming-tools article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marko 2000/08/22 13:03:31 PDT Modified files: en_US.ISO_8859-1/articles/programming-tools article.sgml Log: Remove <trademark> tag Revision Changes Path 1.13 +4 -4 doc/en_US.ISO_8859-1/articles/programming-tools/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 13:10:30 2000 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id F01A337B43F; Tue, 22 Aug 2000 13:10:25 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.awfulhak.org [172.16.0.12]) by Awfulhak.org (8.9.3/8.9.3) with ESMTP id VAA21721; Tue, 22 Aug 2000 21:05:21 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.0/8.11.0) with ESMTP id e7MK52422432; Tue, 22 Aug 2000 21:05:02 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200008222005.e7MK52422432@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: John Baldwin <jhb@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@Awfulhak.org Subject: Re: cvs commit: src/lib/libc/net rcmd.3 In-Reply-To: Message from John Baldwin <jhb@FreeBSD.org> of "Tue, 22 Aug 2000 12:21:08 PDT." <200008221921.MAA46365@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 22 Aug 2000 21:05:02 +0100 From: Brian Somers <brian@Awfulhak.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > jhb 2000/08/22 12:21:08 PDT > > Modified files: (Branch: RELENG_4) > lib/libc/net rcmd.3 > Log: > MFC: Document the API change to allocate rcmd{,_af}()'s *ahost argument > using malloc() rather than pointing it at something that's free()d > before the function returns. > > Revision Changes Path > 1.12.2.3 +6 -1 src/lib/libc/net/rcmd.3 My change was re-changed so that it's a static buffer (as it was before the ip6 stuff was committed). I believe this is what's in both -current and -stable now. -- Brian <brian@Awfulhak.org> <brian@[uk.]FreeBSD.org> <http://www.Awfulhak.org> <brian@[uk.]OpenBSD.org> Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 13:27:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 57A2137B42C; Tue, 22 Aug 2000 13:27:46 -0700 (PDT) Received: (from marko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA55093; Tue, 22 Aug 2000 13:27:46 -0700 (PDT) (envelope-from marko@FreeBSD.org) Message-Id: <200008222027.NAA55093@freefall.freebsd.org> From: Mark Ovens <marko@FreeBSD.org> Date: Tue, 22 Aug 2000 13:27:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/eresources chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marko 2000/08/22 13:27:46 PDT Modified files: en_US.ISO_8859-1/books/handbook/eresources chapter.sgml Log: Add the *-digest mailing lists to the List Summary Revision Changes Path 1.46 +74 -1 doc/en_US.ISO_8859-1/books/handbook/eresources/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 13:46: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AE8837B42C; Tue, 22 Aug 2000 13:45:58 -0700 (PDT) Received: (from wosch@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA57747; Tue, 22 Aug 2000 13:45:58 -0700 (PDT) (envelope-from wosch@FreeBSD.org) Message-Id: <200008222045.NAA57747@freefall.freebsd.org> From: Wolfram Schneider <wosch@FreeBSD.org> Date: Tue, 22 Aug 2000 13:45:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wosch 2000/08/22 13:45:57 PDT Modified files: en index.sgml Log: Texas is not part of Ireland Submitted by: stuart nichols <stu@stac.state.tx.us> Revision Changes Path 1.90 +1 -2 www/en/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 13:47: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EBF4237B42C; Tue, 22 Aug 2000 13:47:07 -0700 (PDT) Received: (from marko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA57871; Tue, 22 Aug 2000 13:47:07 -0700 (PDT) (envelope-from marko@FreeBSD.org) Message-Id: <200008222047.NAA57871@freefall.freebsd.org> From: Mark Ovens <marko@FreeBSD.org> Date: Tue, 22 Aug 2000 13:47:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/eresources chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marko 2000/08/22 13:47:07 PDT Modified files: en_US.ISO_8859-1/books/handbook/eresources chapter.sgml Log: Fix grammar-o in last commit Revision Changes Path 1.47 +2 -2 doc/en_US.ISO_8859-1/books/handbook/eresources/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 13:49:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 86F9837B422; Tue, 22 Aug 2000 13:49:08 -0700 (PDT) Received: (from wosch@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA58140; Tue, 22 Aug 2000 13:49:08 -0700 (PDT) (envelope-from wosch@FreeBSD.org) Message-Id: <200008222049.NAA58140@freefall.freebsd.org> From: Wolfram Schneider <wosch@FreeBSD.org> Date: Tue, 22 Aug 2000 13:49:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wosch 2000/08/22 13:49:08 PDT Modified files: en index.sgml Log: remove mirror site USA/Indiana, the host FreeBSD.advansys.net is unknown Submitted by: Barry Tigner <tigner@pilot.msu.edu> Revision Changes Path 1.91 +1 -2 www/en/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 14: 0:46 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 664) id 5DAD737B424; Tue, 22 Aug 2000 14:00:44 -0700 (PDT) Date: Tue, 22 Aug 2000 14:00:44 -0700 From: David O'Brien <obrien@FreeBSD.ORG> To: Jeroen Ruigrok van der Werven <jruigrok@via-net-works.nl> Cc: Mark Ovens <marko@FreeBSD.org>, Nik Clayton <nik@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access Message-ID: <20000822140044.F86875@hub.freebsd.org> Reply-To: obrien@freebsd.org References: <200008221840.LAA38918@freefall.freebsd.org> <20000822212922.B73076@lucifer.bart.nl> <20000822204008.F254@parish> <20000822215154.E73076@lucifer.bart.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <20000822215154.E73076@lucifer.bart.nl>; from Jeroen Ruigrok van der Werven on Tue, Aug 22, 2000 at 09:51:54PM +0200 X-Operating-System: FreeBSD 4.1-RELEASE Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG REDUCE THE CHAT PEOPLE. On Tue, Aug 22, 2000 at 09:51:54PM +0200, Jeroen Ruigrok van der Werven wrote: > -On [20000822 21:45], Mark Ovens (marko@FreeBSD.org) wrote: > >Hmm, you're going to have to find us somewhere larger that the > >ex-janitor's closet (or should that be janitors ex-closet) down the > >hall and to the right:) > > Me? > > Nik's the boss 'round 'ere. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 14:25:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C993E37B422; Tue, 22 Aug 2000 14:25:53 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA66816; Tue, 22 Aug 2000 14:25:53 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008222125.OAA66816@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Tue, 22 Aug 2000 14:25:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/22 14:25:53 PDT Modified files: . exclude Log: Exclude src/contrib/nvi/catalogs/* from the $FreeBSD$ checking Noted by: phantom Revision Changes Path 1.14 +2 -1 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 14:47:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B94337B440; Tue, 22 Aug 2000 14:47:56 -0700 (PDT) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA69362; Tue, 22 Aug 2000 14:47:56 -0700 (PDT) (envelope-from phantom@FreeBSD.org) Message-Id: <200008222147.OAA69362@freefall.freebsd.org> From: Alexey Zelkin <phantom@FreeBSD.org> Date: Tue, 22 Aug 2000 14:47:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phantom 2000/08/22 14:47:55 PDT Modified files: . exclude Log: Fix typo introduced in last commit: s/catalogs/catalog Revision Changes Path 1.15 +2 -2 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 14:50: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ABAED37B43F; Tue, 22 Aug 2000 14:50:04 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA69708; Tue, 22 Aug 2000 14:50:04 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008222150.OAA69708@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 14:50:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net rcmd.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 14:50:04 PDT Modified files: lib/libc/net rcmd.3 Log: The API change mentioned in the previous revision has been backed out, so back out the corresponding documentation. Noticed by: brian, ume Revision Changes Path 1.16 +1 -6 src/lib/libc/net/rcmd.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 14:53:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D32A37B42C; Tue, 22 Aug 2000 14:53:27 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA70061; Tue, 22 Aug 2000 14:53:27 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008222153.OAA70061@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 14:53:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net rcmd.3 res_send.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 14:53:26 PDT Modified files: (Branch: RELENG_4) lib/libc/net rcmd.3 res_send.c Log: The API change mentioned in the previous revision didn't actually make it into 4.x, so don't document it. Noticed by: brian, ume Revision Changes Path 1.12.2.4 +1 -6 src/lib/libc/net/rcmd.3 1.31.2.2 +23 -6 src/lib/libc/net/res_send.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 14:54:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 27AAA37B42C; Tue, 22 Aug 2000 14:54:47 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA70172; Tue, 22 Aug 2000 14:54:47 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008222154.OAA70172@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 14:54:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net res_send.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 14:54:46 PDT Modified files: (Branch: RELENG_4) lib/libc/net res_send.c Log: Forced commit to document what the last revision actually does: MFC: Decrement the timeout being passed to poll() if poll was interrupted for some reason. This will prevent an infinite loop if (say) a sigalarm is being scheduled at a more frequent interval than the poll timeout. Revision Changes Path 1.31.2.3 +1 -1 src/lib/libc/net/res_send.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 14:59:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5721037B440; Tue, 22 Aug 2000 14:59:43 -0700 (PDT) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA70604; Tue, 22 Aug 2000 14:59:43 -0700 (PDT) (envelope-from phantom@FreeBSD.org) Message-Id: <200008222159.OAA70604@freefall.freebsd.org> From: Alexey Zelkin <phantom@FreeBSD.org> Date: Tue, 22 Aug 2000 14:59:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/nvi/catalog uk_UA.KOI8-U uk_UA.KOI8-U.base uk_UA.KOI8-U.owner X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phantom 2000/08/22 14:59:42 PDT Added files: contrib/nvi/catalog uk_UA.KOI8-U uk_UA.KOI8-U.base uk_UA.KOI8-U.owner Log: Ukrainian message catalogs for vi. Submitted by: Kunytsa Oleksander <kunia@snark.ukma.kiev.ua> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 15: 1: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2293537B424; Tue, 22 Aug 2000 15:01:00 -0700 (PDT) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA70742; Tue, 22 Aug 2000 15:00:58 -0700 (PDT) (envelope-from phantom@FreeBSD.org) Message-Id: <200008222200.PAA70742@freefall.freebsd.org> From: Alexey Zelkin <phantom@FreeBSD.org> Date: Tue, 22 Aug 2000 15:00:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/vi Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phantom 2000/08/22 15:00:58 PDT Modified files: usr.bin/vi Makefile Log: Install Ukrainian message catalog. Revision Changes Path 1.28 +3 -2 src/usr.bin/vi/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 16:18:42 2000 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 5131137B423; Tue, 22 Aug 2000 16:18:38 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id QAA02907; Tue, 22 Aug 2000 16:18:35 -0700 (PDT) (envelope-from obrien) Date: Tue, 22 Aug 2000 16:18:35 -0700 From: "David O'Brien" <obrien@FreeBSD.org> To: Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> Cc: Peter Wemm <peter@netplex.com.au>, Josef Karthauser <joe@pavilion.net>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000822161835.B807@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000819124824.E88550@lucifer.bart.nl>; from asmodai@FreeBSD.org on Sat, Aug 19, 2000 at 12:48:24PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 19, 2000 at 12:48:24PM +0200, Jeroen Ruigrok van der Werven wrote: > >I am *UTTERLY* against putting cvsweb links in the commit mail. We have been > >through this many times before. > I have to second Peter here. And I and many are strongly for it. It certainly would help us to UTSL and not make stupid replies to commit messages because the source hasn't made it locally yet and thus people haven't read the diffs. Or would you prefer I CVSup every 10 minutes to match the rate I suck mail from hub.freebsd.org? -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 16:21:27 2000 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id CBFB437B424; Tue, 22 Aug 2000 16:21:22 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id QAA02907; Tue, 22 Aug 2000 16:18:35 -0700 (PDT) (envelope-from obrien) Date: Tue, 22 Aug 2000 16:18:35 -0700 From: "David O'Brien" <obrien@FreeBSD.org> To: Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> Cc: Peter Wemm <peter@netplex.com.au>, Josef Karthauser <joe@pavilion.net>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000822161835.B807@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000819124824.E88550@lucifer.bart.nl>; from asmodai@FreeBSD.org on Sat, Aug 19, 2000 at 12:48:24PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 19, 2000 at 12:48:24PM +0200, Jeroen Ruigrok van der Werven wrote: > >I am *UTTERLY* against putting cvsweb links in the commit mail. We have been > >through this many times before. > I have to second Peter here. And I and many are strongly for it. It certainly would help us to UTSL and not make stupid replies to commit messages because the source hasn't made it locally yet and thus people haven't read the diffs. Or would you prefer I CVSup every 10 minutes to match the rate I suck mail from hub.freebsd.org? -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 16:26:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 390F137B42C; Tue, 22 Aug 2000 16:26:52 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA83831; Tue, 22 Aug 2000 16:26:52 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Message-Id: <200008222326.QAA83831@freefall.freebsd.org> From: Bill Paul <wpaul@FreeBSD.org> Date: Tue, 22 Aug 2000 16:26:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_sis.c if_sisreg.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wpaul 2000/08/22 16:26:51 PDT Modified files: sys/pci if_sis.c if_sisreg.h Log: Fix up the sis driver, largely to improve the NatSemi DP83815 support: - Modify the driver to poll the link state and positively set the MAC to full or half duplex as needed. Previously, it was possible for the MAC to remain in half duplex even though the PHY had negotiated full duplex with its link partner, which would result in bursty performance. - Program some of the NatSemi's registers as specified by the datasheet. The manual says these are necessary for "optimum perofrmance," though a couple of them are marked as reserved in the register map. *shrug* - Select the TX DMA burst size correctly for 10 and 100mbps modes. Previously I was using 64 bytes in both modes, which worked in 100mbps mode, but resulting in spotty performance in 10mbps. 32 bytes works much better; without this change, the natsemi chip yields piss poor performance at 10mbps. With these fixes, the NatSemi chip finally performs to my satisfaction. I should be merging the support for this controller into -stable shortly. Phew. Revision Changes Path 1.21 +72 -19 src/sys/pci/if_sis.c 1.3 +16 -3 src/sys/pci/if_sisreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 16:57:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E43737B422; Tue, 22 Aug 2000 16:57:40 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA86566; Tue, 22 Aug 2000 16:57:40 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008222357.QAA86566@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 16:57:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/nls msgcat.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 16:57:40 PDT Modified files: (Branch: RELENG_4) lib/libc/nls msgcat.c Log: MFC: Prevent internal buffer overflow due to expansion of $LANG and/or name argument in catopen(). Approved by: kris Revision Changes Path 1.21.2.1 +12 -4 src/lib/libc/nls/msgcat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17: 2: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F18FF37B423; Tue, 22 Aug 2000 17:02:04 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA87104; Tue, 22 Aug 2000 17:02:04 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230002.RAA87104@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:02:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/rpc clnt_perror.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:02:04 PDT Modified files: (Branch: RELENG_4) lib/libc/rpc clnt_perror.c Log: MFC: Don't overflow the internal buffer in clnt_sperror() Revision Changes Path 1.11.2.1 +2 -2 src/lib/libc/rpc/clnt_perror.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17: 5:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8656637B424; Tue, 22 Aug 2000 17:05:30 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA88842; Tue, 22 Aug 2000 17:05:30 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230005.RAA88842@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:05:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/rpc netname.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:05:30 PDT Modified files: (Branch: RELENG_4) lib/libc/rpc netname.c Log: MFC: - Correct string length bounds checking. - Calculate the string length of a u_long at compile-time, instead of using a hardcoded value. - Add FreeBSD id tag. Revision Changes Path 1.2.6.1 +20 -6 src/lib/libc/rpc/netname.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:12:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D274437B43E; Tue, 22 Aug 2000 17:12:18 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA89565; Tue, 22 Aug 2000 17:12:18 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230012.RAA89565@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:12:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdlib malloc.3 malloc.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:12:18 PDT Modified files: (Branch: RELENG_4) lib/libc/stdlib malloc.3 malloc.c Log: MFC: - Add a missing THREAD_UNLOCK() - Remove allocation failure check from 'A' option, the 'X' option does this as a standalone check now. Revision Changes Path 1.25.2.3 +2 -6 src/lib/libc/stdlib/malloc.3 1.49.2.1 +2 -4 src/lib/libc/stdlib/malloc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:18: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 345EA37B424; Tue, 22 Aug 2000 17:17:58 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA90105; Tue, 22 Aug 2000 17:17:58 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200008230017.RAA90105@freefall.freebsd.org> From: "Jordan K. Hubbard" <jkh@FreeBSD.org> Date: Tue, 22 Aug 2000 17:17:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/cvsupit Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/08/22 17:17:57 PDT Modified files: net/cvsupit Makefile Log: s/BUILD_DEPENDS/RUN_DEPENDS/ so that the dependency on a cvsup binary is properly handled. Revision Changes Path 1.4 +2 -2 ports/net/cvsupit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:19:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C76837B423; Tue, 22 Aug 2000 17:19:15 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA90260; Tue, 22 Aug 2000 17:19:15 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230019.RAA90260@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:19:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdtime private.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:19:15 PDT Modified files: (Branch: RELENG_4) lib/libc/stdtime private.h Log: MFC: Correct factor-of-10 error in INT_STRLEN_MAXIMUM() calculation. Revision Changes Path 1.6.8.1 +3 -1 src/lib/libc/stdtime/private.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:24: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CECF37B423; Tue, 22 Aug 2000 17:24:06 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA90687; Tue, 22 Aug 2000 17:24:06 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230024.RAA90687@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:24:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys accept.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:24:06 PDT Modified files: (Branch: RELENG_4) lib/libc/sys accept.2 Log: MFC: - Replace .Va references to function arguments to .Fa references. - The accept() function is a call, not an argument. Also, add: serial comma, missing-hyphen, and a word-erase character. Revision Changes Path 1.10.2.3 +8 -8 src/lib/libc/sys/accept.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:24:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BE9937B423; Tue, 22 Aug 2000 17:24:38 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA90788; Tue, 22 Aug 2000 17:24:38 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230024.RAA90788@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:24:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys accept.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:24:38 PDT Modified files: (Branch: RELENG_4) lib/libc/sys accept.2 Log: MFC: Content-free commit: only remove trailing whitespace Revision Changes Path 1.10.2.4 +7 -7 src/lib/libc/sys/accept.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:27:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BEF4037B422; Tue, 22 Aug 2000 17:27:48 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA91031; Tue, 22 Aug 2000 17:27:48 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230027.RAA91031@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:27:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys aio_cancel.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:27:48 PDT Modified files: (Branch: RELENG_4) lib/libc/sys aio_cancel.2 Log: MFC: - Replace .Va, .Ar and .Nm with .Fa or .Va where necessary, examples: ``.Ar errno'' -> ``.Va errno'' ``.Nm ops'' -> ``.Fa ops'' ``.Va fd'' -> ``.Fa fd'' - Replace ``FreeBSD 4.0'' with ``.Fx 4.0'' and remove a useless empty line at the end of the file. - Replace a `manual(section)' reference with a proper .Xr statement. Revision Changes Path 1.5.2.3 +8 -7 src/lib/libc/sys/aio_cancel.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:41:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 06C1837B422; Tue, 22 Aug 2000 17:41:45 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA92479; Tue, 22 Aug 2000 17:41:44 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Message-Id: <200008230041.RAA92479@freefall.freebsd.org> From: Bill Paul <wpaul@FreeBSD.org> Date: Tue, 22 Aug 2000 17:41:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 sis.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wpaul 2000/08/22 17:41:44 PDT Modified files: share/man/man4 sis.4 Log: Mention that the Netgear FA311 is supported as well as the FA312. Revision Changes Path 1.10 +3 -2 src/share/man/man4/sis.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:42:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D9A837B42C; Tue, 22 Aug 2000 17:42:24 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA92564; Tue, 22 Aug 2000 17:42:24 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Message-Id: <200008230042.RAA92564@freefall.freebsd.org> From: Bill Paul <wpaul@FreeBSD.org> Date: Tue, 22 Aug 2000 17:42:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts HARDWARE.TXT X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wpaul 2000/08/22 17:42:24 PDT Modified files: release/texts HARDWARE.TXT Log: Mention the LinkSys LNE100TX v4.0/4.1 and a bunch of other cards. Fix a typo. Revision Changes Path 1.51 +13 -4 src/release/texts/HARDWARE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:44:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F1AE637B43E; Tue, 22 Aug 2000 17:44:27 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA92787; Tue, 22 Aug 2000 17:44:27 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Message-Id: <200008230044.RAA92787@freefall.freebsd.org> From: Bill Paul <wpaul@FreeBSD.org> Date: Tue, 22 Aug 2000 17:44:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 dc.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wpaul 2000/08/22 17:44:27 PDT Modified files: share/man/man4 dc.4 Log: Mention that the LinkSys LNE100TX v4.0/4.1 is supported. Revision Changes Path 1.10 +3 -1 src/share/man/man4/dc.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:45:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A9EA837B42C; Tue, 22 Aug 2000 17:45:21 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA92986; Tue, 22 Aug 2000 17:45:21 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230045.RAA92986@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:45:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys aio_error.2 aio_read.2 aio_return.2 aio_suspend.2 aio_waitcomplete.2 aio_write.2 bind.2 close.2 dup.2 fcntl.2 flock.2 fsync.2 getdirentries.2 getpeername.2 getsockname.2 getsockopt.2 kldfind.2 kldfirstmod.2 kldload.2 ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:45:21 PDT Modified files: (Branch: RELENG_4) lib/libc/sys aio_error.2 aio_read.2 aio_return.2 aio_suspend.2 aio_waitcomplete.2 aio_write.2 bind.2 close.2 dup.2 fcntl.2 flock.2 fsync.2 getdirentries.2 getpeername.2 getsockname.2 getsockopt.2 kldfind.2 kldfirstmod.2 kldload.2 kldstat.2 kldunload.2 ktrace.2 listen.2 mmap.2 read.2 setpgid.2 write.2 Log: MFC: Replace .Va, .Ar and .Nm with .Fa or .Va where necessary. Revision Changes Path 1.6.2.2 +3 -3 src/lib/libc/sys/aio_error.2 1.6.2.2 +27 -27 src/lib/libc/sys/aio_read.2 1.5.2.2 +3 -3 src/lib/libc/sys/aio_return.2 1.8.2.2 +9 -9 src/lib/libc/sys/aio_suspend.2 1.1.2.3 +7 -7 src/lib/libc/sys/aio_waitcomplete.2 1.4.2.2 +23 -23 src/lib/libc/sys/aio_write.2 1.11.2.3 +3 -3 src/lib/libc/sys/bind.2 1.10.2.2 +3 -3 src/lib/libc/sys/close.2 1.9.2.2 +7 -7 src/lib/libc/sys/dup.2 1.16.2.2 +3 -3 src/lib/libc/sys/fcntl.2 1.8.2.3 +3 -3 src/lib/libc/sys/flock.2 1.6.2.4 +3 -3 src/lib/libc/sys/fsync.2 1.12.2.2 +3 -3 src/lib/libc/sys/getdirentries.2 1.9.2.4 +3 -3 src/lib/libc/sys/getpeername.2 1.9.2.4 +3 -3 src/lib/libc/sys/getsockname.2 1.12.2.4 +5 -5 src/lib/libc/sys/getsockopt.2 1.6.2.2 +3 -3 src/lib/libc/sys/kldfind.2 1.5.2.2 +4 -4 src/lib/libc/sys/kldfirstmod.2 1.5.2.2 +2 -2 src/lib/libc/sys/kldload.2 1.5.2.2 +11 -11 src/lib/libc/sys/kldstat.2 1.6.2.2 +2 -2 src/lib/libc/sys/kldunload.2 1.9.2.3 +15 -15 src/lib/libc/sys/ktrace.2 1.12.2.3 +3 -3 src/lib/libc/sys/listen.2 1.22.2.2 +2 -2 src/lib/libc/sys/mmap.2 1.9.2.2 +5 -5 src/lib/libc/sys/read.2 1.5.2.3 +4 -4 src/lib/libc/sys/setpgid.2 1.12.2.2 +5 -5 src/lib/libc/sys/write.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:48: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D47FB37B42C; Tue, 22 Aug 2000 17:48:02 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA93296; Tue, 22 Aug 2000 17:48:02 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230048.RAA93296@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:48:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys mincore.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:48:02 PDT Modified files: (Branch: RELENG_4) lib/libc/sys mincore.2 Log: MFC: Replace an erroneous \`.Va error' with \`.Va errno'. Revision Changes Path 1.13.2.2 +2 -2 src/lib/libc/sys/mincore.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:49: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0810037B423; Tue, 22 Aug 2000 17:49:05 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA93456; Tue, 22 Aug 2000 17:49:05 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230049.RAA93456@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:49:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys mlock.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:49:04 PDT Modified files: (Branch: RELENG_4) lib/libc/sys mlock.2 Log: MFC: Properly separate paragraphs by using \`.Pp' instead of a blank line. Revision Changes Path 1.6.2.2 +2 -2 src/lib/libc/sys/mlock.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:50:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F3CF37B423; Tue, 22 Aug 2000 17:50:49 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA93737; Tue, 22 Aug 2000 17:50:49 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230050.RAA93737@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:50:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys rtprio.2 sched_setscheduler.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:50:49 PDT Modified files: (Branch: RELENG_4) lib/libc/sys rtprio.2 sched_setscheduler.2 Log: MFC: Properly separate paragraphs by using \`.Pp' instead of a blank line. Revision Changes Path 1.13.2.2 +5 -5 src/lib/libc/sys/rtprio.2 1.3.2.3 +2 -2 src/lib/libc/sys/sched_setscheduler.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:52:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D9E4137B443; Tue, 22 Aug 2000 17:52:38 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA94030; Tue, 22 Aug 2000 17:52:38 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230052.RAA94030@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:52:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys sched_get_priority_max.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:52:38 PDT Modified files: (Branch: RELENG_4) lib/libc/sys sched_get_priority_max.2 Log: MFC: Fix typo. Use `.Fa' to denote a function argument. Revision Changes Path 1.3.2.3 +5 -3 src/lib/libc/sys/sched_get_priority_max.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:55:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FBC337B43E; Tue, 22 Aug 2000 17:55:16 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA94431; Tue, 22 Aug 2000 17:55:16 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230055.RAA94431@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:55:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys sendfile.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:55:16 PDT Modified files: (Branch: RELENG_4) lib/libc/sys sendfile.2 Log: MFC: - Remove a superfluous `.Pp'. - Add a note about the behavior of sendfile() in the threaded library. Revision Changes Path 1.6.2.2 +28 -2 src/lib/libc/sys/sendfile.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:55:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D1FB37B42C; Tue, 22 Aug 2000 17:55:50 -0700 (PDT) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA94601; Tue, 22 Aug 2000 17:55:50 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200008230055.RAA94601@freefall.freebsd.org> From: Jim Mock <jim@FreeBSD.org> Date: Tue, 22 Aug 2000 17:55:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/irssi Makefile ports/irc/irssi/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/08/22 17:55:50 PDT Modified files: irc/irssi Makefile irc/irssi/files md5 Log: Update to version 0.7.95-2. Revision Changes Path 1.38 +3 -1 ports/irc/irssi/Makefile 1.29 +1 -1 ports/irc/irssi/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:56: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D82E37B43F; Tue, 22 Aug 2000 17:56:03 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA94664; Tue, 22 Aug 2000 17:56:03 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230056.RAA94664@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:56:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys shutdown.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:56:03 PDT Modified files: (Branch: RELENG_4) lib/libc/sys shutdown.2 Log: MFC: Remove blank line. Revision Changes Path 1.7.2.3 +1 -2 src/lib/libc/sys/shutdown.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 17:57:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C4EA737B42C; Tue, 22 Aug 2000 17:57:42 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA94879; Tue, 22 Aug 2000 17:57:42 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230057.RAA94879@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 17:57:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys wait.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 17:57:42 PDT Modified files: (Branch: RELENG_4) lib/libc/sys wait.2 Log: MFC: - Fix subject/verb agreement - Add a missing comma Revision Changes Path 1.6.2.2 +3 -3 src/lib/libc/sys/wait.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 18:29:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 892DA37B424; Tue, 22 Aug 2000 18:29:39 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA99205; Tue, 22 Aug 2000 18:29:39 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230129.SAA99205@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 18:29:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/man pthread_once.3 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 18:29:39 PDT Modified files: (Branch: RELENG_4) lib/libc_r/man pthread_once.3 Log: MFC: pthread_once --> pthread_once_t. Revision Changes Path 1.6.2.2 +2 -2 src/lib/libc_r/man/pthread_once.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 18:52:17 2000 Delivered-To: cvs-all@freebsd.org Received: from argon.gryphonsoft.com (mcut-b-078.resnet.purdue.edu [128.211.209.78]) by hub.freebsd.org (Postfix) with ESMTP id BEC1137B423; Tue, 22 Aug 2000 18:52:14 -0700 (PDT) Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id C11661931; Tue, 22 Aug 2000 20:48:45 -0500 (EST) Date: Tue, 22 Aug 2000 20:48:45 -0500 From: Will Andrews <will@physics.purdue.edu> To: David O'Brien <obrien@FreeBSD.org> Cc: Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Josef Karthauser <joe@pavilion.net>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000822204845.Y8055@argon.gryphonsoft.com> Mail-Followup-To: David O'Brien <obrien@FreeBSD.org>, Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Josef Karthauser <joe@pavilion.net>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000822161835.B807@dragon.nuxi.com>; from obrien@FreeBSD.org on Tue, Aug 22, 2000 at 04:18:35PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Aug 22, 2000 at 04:18:35PM -0700, David O'Brien wrote: > And I and many are strongly for it. It certainly would help us to UTSL > and not make stupid replies to commit messages because the source hasn't > made it locally yet and thus people haven't read the diffs. > > Or would you prefer I CVSup every 10 minutes to match the rate I suck > mail from hub.freebsd.org? It would be better to have some patience, or use a `fcvs' alias if need be. -- Will Andrews <will@physics.purdue.edu> <will@FreeBSD.org> GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 19:20:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F3F437B42C; Tue, 22 Aug 2000 19:20:31 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA05356; Tue, 22 Aug 2000 19:20:31 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230220.TAA05356@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 19:20:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread pthread_private.h uthread_kern.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 19:20:31 PDT Modified files: (Branch: RELENG_4) lib/libc_r/uthread pthread_private.h uthread_kern.c Log: MFC: Change _thread_kern_set_timeout() to use a const argument. Revision Changes Path 1.36.2.5 +2 -2 src/lib/libc_r/uthread/pthread_private.h 1.28.2.2 +2 -2 src/lib/libc_r/uthread/uthread_kern.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 19:26:36 2000 Delivered-To: cvs-all@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 1394837B424; Tue, 22 Aug 2000 19:26:10 -0700 (PDT) Received: from strontium.scientia.demon.co.uk ([192.168.91.36] ident=root) by scientia.demon.co.uk with esmtp (Exim 3.16 #1) id 13RPCn-000HJn-00; Wed, 23 Aug 2000 02:19:49 +0100 Received: (from ben@localhost) by strontium.scientia.demon.co.uk (8.9.3/8.9.3) id CAA21812; Wed, 23 Aug 2000 02:19:48 +0100 (BST) (envelope-from ben) Date: Wed, 23 Aug 2000 02:19:48 +0100 From: Ben Smithurst <ben@FreeBSD.org> To: "David O'Brien" <obrien@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000823021948.D20036@strontium.scientia.demon.co.uk> References: <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000822161835.B807@dragon.nuxi.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David O'Brien wrote: > And I and many are strongly for it. It certainly would help us to UTSL > and not make stupid replies to commit messages because the source hasn't > made it locally yet and thus people haven't read the diffs. So use a procmail rule to put them in locally. You can either use my 100 line C program from <http://www.scientia.demon.co.uk/users/ben/software/mail/> or Tim Vanderhoek's 3 line Perl script (which I don't have handy), take your pick. :-) I'm not against the links being in the mail by default, but while it's easy to put them in locally and there are people strongly against it, I don't see it happening. Which is a shame, because I'm strongly in favour of adding them added as well (some people might read mail on machines where they can't use procmail perhaps, but I doubt you fall into that category). -- Ben Smithurst / ben@FreeBSD.org / PGP: 0x99392F7D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 19:41:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 999F237B423; Tue, 22 Aug 2000 19:41:42 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA07264; Tue, 22 Aug 2000 19:41:42 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230241.TAA07264@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 19:41:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_event.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 19:41:42 PDT Modified files: (Branch: RELENG_4) sys/kern kern_event.c Log: MFC: - Fix bug with timeout - Change code to avoid calling tsleep if we have no intention of sleeping. - Bring in bugfix from sys_select.c, r1.60 which also applies here. - Modify error handling slightly Revision Changes Path 1.2.2.4 +23 -15 src/sys/kern/kern_event.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 19:48:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0114137B422; Tue, 22 Aug 2000 19:48:50 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA08089; Tue, 22 Aug 2000 19:48:49 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230248.TAA08089@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 19:48:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r Makefile src/lib/libc_r/uthread uthread_kevent.c Makefile.inc X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 19:48:49 PDT Modified files: (Branch: RELENG_4) lib/libc_r Makefile lib/libc_r/uthread Makefile.inc Added files: (Branch: RELENG_4) lib/libc_r/uthread uthread_kevent.c Log: MFC: Add wrapper for kevent() syscall Approved by: jlemon (in concept) Revision Changes Path 1.24.2.2 +3 -2 src/lib/libc_r/Makefile 1.23.2.2 +2 -1 src/lib/libc_r/uthread/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 19:59:16 2000 Delivered-To: cvs-all@freebsd.org Received: from alcanet.com.au (mail.alcanet.com.au [203.62.196.10]) by hub.freebsd.org (Postfix) with SMTP id 7E49637B446 for <cvs-all@FreeBSD.ORG>; Tue, 22 Aug 2000 19:59:07 -0700 (PDT) Received: by border.alcanet.com.au id <115230>; Wed, 23 Aug 2000 12:58:50 +1000 Content-return: prohibited Date: Wed, 23 Aug 2000 12:58:47 +1000 From: Peter Jeremy <peter.jeremy@alcatel.com.au> Subject: Re: cvs commit: src/include unistd.h src/lib/libcrypt Makefile crypt.3 crypt.c crypt.h src/lib/libutil Makefile login_cap.c login_cap.h login_cap.3 src/secure/lib/libcrypt Makefile src/usr.bin/passwd local_passwd.c src/usr.sbin/pw Makefile pw_user.c In-reply-to: <200008220215.TAA35477@freefall.freebsd.org>; from green@FreeBSD.ORG on Mon, Aug 21, 2000 at 07:15:55PM -0700 To: Brian Feldman <green@FreeBSD.ORG> Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Mail-followup-to: Brian Feldman <green@FreeBSD.ORG>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-Id: <00Aug23.125850est.115230@border.alcanet.com.au> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.4i References: <200008220215.TAA35477@freefall.freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 2000-Aug-21 19:15:55 -0700, Brian Feldman <green@FreeBSD.ORG> wrote: >green 2000/08/21 19:15:54 PDT > > Modified files: > include unistd.h > lib/libcrypt Makefile crypt.3 crypt.c crypt.h > lib/libutil Makefile login_cap.c login_cap.h > login_cap.3 > secure/lib/libcrypt Makefile > usr.bin/passwd local_passwd.c > usr.sbin/pw Makefile pw_user.c > Log: > Add working and easy crypt(3)-switching. Yes, we need a whole new API > for crypt(3) by now. In any case: This seems to have broken world for me. In /etc/make.conf, I have: USA_RESIDENT=NO NODESCRYPTLINKS=true and references to `-lcrypt' die with .../libcrypt.so: undefined reference to `crypt_des' For /bin/csh, adding -ldescrypt after -lcrypt worked, but the same trick doesn't work with dynamically linked code (eg /usr/src/gnu/usr.bin/cvs/cvs/cvs). I think the correct solution is to merge /usr/src/lib/libcrypt and /usr/src/secure/lib/libcrypt to produce a single libcrypt (rather than the mix of libcrypt, libscript and libdescrypt we currently have). I'm currently trying the following: Index: Makefile =================================================================== RCS file: /home/CVSROOT/src/lib/libcrypt/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- Makefile 2000/08/22 02:17:54 1.26 +++ Makefile 2000/08/23 02:44:00 @@ -15,13 +15,13 @@ SONAME= ${LCRYPTSO} .endif -.PATH: ${.CURDIR}/../libmd -SRCS= crypt.c crypt-md5.c misc.c +.PATH: ${.CURDIR}/../libmd ${.CURDIR}/../../secure/lib/libcrypt +SRCS= crypt.c crypt-md5.c misc.c crypt-des.c STATICSRCS= md5c.c STATICOBJS= ${STATICSRCS:S/.c/.o/g} MAN3= crypt.3 MLINKS= crypt.3 crypt_get_format.3 crypt.3 crypt_set_format.3 -CFLAGS+= -I${.CURDIR}/../libmd +CFLAGS+= -I${.CURDIR}/../libmd -I${.CURDIR} CFLAGS+= -DLIBC_SCCS -Wall PRECIOUSLIB= yes Alternative suggestions? Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 20:11:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B21737B43E; Tue, 22 Aug 2000 20:11:08 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA11579; Tue, 22 Aug 2000 20:11:08 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008230311.UAA11579@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 20:11:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ruby-uri Makefile ports/net/ruby-uri/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 20:11:08 PDT Modified files: net/ruby-uri Makefile net/ruby-uri/files md5 Log: Update to 4.22. Revision Changes Path 1.4 +2 -2 ports/net/ruby-uri/Makefile 1.2 +1 -1 ports/net/ruby-uri/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 20:22:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D62037B42C; Tue, 22 Aug 2000 20:22:33 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA12793; Tue, 22 Aug 2000 20:22:33 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008230322.UAA12793@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Tue, 22 Aug 2000 20:22:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_attr_setschedparam.c uthread_attr_setschedpolicy.c uthread_attr_setscope.c uthread_mattr_kind_np.c uthread_setschedparam.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/22 20:22:32 PDT Modified files: (Branch: RELENG_4) lib/libc_r/uthread uthread_attr_setschedparam.c uthread_attr_setschedpolicy.c uthread_attr_setscope.c uthread_mattr_kind_np.c uthread_setschedparam.c Log: MFC: - Fix various compliance bugs, mostly having to do with error return values. - Implement pthread_mutexattr_gettype(). Revision Changes Path 1.4.2.1 +5 -3 src/lib/libc_r/uthread/uthread_attr_setschedparam.c 1.3.2.1 +5 -4 src/lib/libc_r/uthread/uthread_attr_setschedpolicy.c 1.3.2.1 +6 -13 src/lib/libc_r/uthread/uthread_attr_setscope.c 1.4.2.1 +16 -1 src/lib/libc_r/uthread/uthread_mattr_kind_np.c 1.5.2.1 +7 -5 src/lib/libc_r/uthread/uthread_setschedparam.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 20:22:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 782E637B5AF; Tue, 22 Aug 2000 20:22:41 -0700 (PDT) Received: (from msmith@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA12868; Tue, 22 Aug 2000 20:22:41 -0700 (PDT) (envelope-from msmith@FreeBSD.org) Message-Id: <200008230322.UAA12868@freefall.freebsd.org> From: Mike Smith <msmith@FreeBSD.org> Date: Tue, 22 Aug 2000 20:22:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files CVSROOT/Emptydir/mly mly.c mly_cam.c mly_pci.c mly_tables.h mlyreg.h mlyvar.h src/sys/modules Makefile src/sys/modules/mly Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG msmith 2000/08/22 20:22:41 PDT Modified files: sys/conf files sys/modules Makefile Added files: Emptydir/mly mly.c mly_cam.c mly_pci.c mly_tables.h mlyreg.h mlyvar.h sys/modules/mly Makefile Log: This is the initial import of a new driver for the current family of PCI:SCSI RAID controllers from Mylex. Revision Changes Path 1.398 +4 -1 src/sys/conf/files 1.134 +2 -2 src/sys/modules/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 20:24:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 645B237B43C; Tue, 22 Aug 2000 20:24:33 -0700 (PDT) Received: (from msmith@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA13150; Tue, 22 Aug 2000 20:24:33 -0700 (PDT) (envelope-from msmith@FreeBSD.org) Message-Id: <200008230324.UAA13150@freefall.freebsd.org> From: Mike Smith <msmith@FreeBSD.org> Date: Tue, 22 Aug 2000 20:24:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 mly.4 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG msmith 2000/08/22 20:24:33 PDT Modified files: share/man/man4 Makefile Added files: share/man/man4 mly.4 Log: Add a manpage for the new 'mly' driver. Revision Changes Path 1.104 +2 -1 src/share/man/man4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 20:29:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 71A9837B423; Tue, 22 Aug 2000 20:29:51 -0700 (PDT) Received: (from msmith@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA13496; Tue, 22 Aug 2000 20:29:51 -0700 (PDT) (envelope-from msmith@FreeBSD.org) Message-Id: <200008230329.UAA13496@freefall.freebsd.org> From: Mike Smith <msmith@FreeBSD.org> Date: Tue, 22 Aug 2000 20:29:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf GENERIC NOTES X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG msmith 2000/08/22 20:29:50 PDT Modified files: sys/i386/conf GENERIC NOTES Log: Add entries for the 'mly' driver. Re-group 'mly' and 'dpt' into a new classification for RAID controllers that have CAM interfaces. Revision Changes Path 1.271 +5 -2 src/sys/i386/conf/GENERIC 1.809 +43 -36 src/sys/i386/conf/NOTES To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 20:31:39 2000 Delivered-To: cvs-all@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-202-177-115.dsl.snfc21.pacbell.net [63.202.177.115]) by hub.freebsd.org (Postfix) with ESMTP id 507E237B422; Tue, 22 Aug 2000 20:31:36 -0700 (PDT) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id UAA23893; Tue, 22 Aug 2000 20:44:41 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200008230344.UAA23893@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Mike Smith <msmith@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files CVSROOT/Emptydir/mly mly.c mly_cam.c mly_pci.c mly_tables.h mlyreg.h mlyvar.h src/sys/modules Makefile src/sys/modules/mly Makefile In-reply-to: Your message of "Tue, 22 Aug 2000 20:22:41 PDT." <200008230322.UAA12868@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 22 Aug 2000 20:44:41 -0700 From: Mike Smith <msmith@freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Added files: > Emptydir/mly mly.c mly_cam.c mly_pci.c mly_tables.h > mlyreg.h mlyvar.h ARGH! This wasn't what was meant to happen. 8( Can I have a repo-copy of this to sys/dev/mly? Thanks. -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 20:46: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D8AFF37B43F; Tue, 22 Aug 2000 20:45:58 -0700 (PDT) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA14725; Tue, 22 Aug 2000 20:45:58 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200008230345.UAA14725@freefall.freebsd.org> From: Brian Feldman <green@FreeBSD.org> Date: Tue, 22 Aug 2000 20:45:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libutil login_crypt.c Makefile login_cap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/08/22 20:45:58 PDT Modified files: lib/libutil Makefile login_cap.c Added files: lib/libutil login_crypt.c Log: Stick login_setcryptfmt() in its own file to make pulling in of -lcrypt only happen if truly necessary. Revision Changes Path 1.35 +3 -5 src/lib/libutil/Makefile 1.20 +1 -14 src/lib/libutil/login_cap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 21:21:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5287E37B42C; Tue, 22 Aug 2000 21:21:11 -0700 (PDT) Received: (from horikawa@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA19463; Tue, 22 Aug 2000 21:21:11 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Message-Id: <200008230421.VAA19463@freefall.freebsd.org> From: Kazuo Horikawa <horikawa@FreeBSD.org> Date: Tue, 22 Aug 2000 21:21:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 colcrt.1 date.1 logger.1 ls.1 su.1 doc/ja_JP.eucJP/man/man5 exports.5 gettytab.5 rc.conf.5 sysctl.conf.5 term.5 terminfo.5 doc/ja_JP.eucJP/man/man6 fortune.6 doc/ja_JP.eucJP/man/man7 groff_mm.7 groff_mmse.7 term.7 ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG horikawa 2000/08/22 21:21:10 PDT Modified files: ja_JP.eucJP/man/man1 colcrt.1 date.1 logger.1 ls.1 su.1 ja_JP.eucJP/man/man5 exports.5 gettytab.5 rc.conf.5 sysctl.conf.5 term.5 terminfo.5 ja_JP.eucJP/man/man6 fortune.6 ja_JP.eucJP/man/man7 groff_mm.7 groff_mmse.7 term.7 ja_JP.eucJP/man/man8 amq.8 hlfsd.8 ipfw.8 loader.8 mergemaster.8 mount_nfs.8 periodic.8 ppp.8 restore.8 routed.8 sysctl.8 syslogd.8 wicontrol.8 Log: Catch up with 4.1-20000822-STABLE. Revision Changes Path 1.3 +3 -3 doc/ja_JP.eucJP/man/man1/colcrt.1 1.17 +4 -5 doc/ja_JP.eucJP/man/man1/date.1 1.4 +6 -1 doc/ja_JP.eucJP/man/man1/logger.1 1.17 +44 -28 doc/ja_JP.eucJP/man/man1/ls.1 1.12 +14 -5 doc/ja_JP.eucJP/man/man1/su.1 1.9 +3 -1 doc/ja_JP.eucJP/man/man5/exports.5 1.10 +2 -1 doc/ja_JP.eucJP/man/man5/gettytab.5 1.24 +51 -18 doc/ja_JP.eucJP/man/man5/rc.conf.5 1.4 +6 -1 doc/ja_JP.eucJP/man/man5/sysctl.conf.5 1.5 +1 -1 doc/ja_JP.eucJP/man/man5/term.5 1.3 +1 -1 doc/ja_JP.eucJP/man/man5/terminfo.5 1.7 +4 -3 doc/ja_JP.eucJP/man/man6/fortune.6 1.7 +4 -4 doc/ja_JP.eucJP/man/man7/groff_mm.7 1.7 +3 -3 doc/ja_JP.eucJP/man/man7/groff_mmse.7 1.2 +1 -1 doc/ja_JP.eucJP/man/man7/term.7 1.11 +1 -3 doc/ja_JP.eucJP/man/man8/amq.8 1.7 +2 -2 doc/ja_JP.eucJP/man/man8/hlfsd.8 1.21 +23 -5 doc/ja_JP.eucJP/man/man8/ipfw.8 1.8 +1 -1 doc/ja_JP.eucJP/man/man8/loader.8 1.4 +7 -6 doc/ja_JP.eucJP/man/man8/mergemaster.8 1.13 +6 -4 doc/ja_JP.eucJP/man/man8/mount_nfs.8 1.7 +9 -6 doc/ja_JP.eucJP/man/man8/periodic.8 1.36 +134 -11 doc/ja_JP.eucJP/man/man8/ppp.8 1.13 +22 -1 doc/ja_JP.eucJP/man/man8/restore.8 1.9 +2 -2 doc/ja_JP.eucJP/man/man8/routed.8 1.11 +3 -2 doc/ja_JP.eucJP/man/man8/sysctl.8 1.15 +3 -1 doc/ja_JP.eucJP/man/man8/syslogd.8 1.9 +16 -15 doc/ja_JP.eucJP/man/man8/wicontrol.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 21:29:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DC10B37B43F; Tue, 22 Aug 2000 21:29:16 -0700 (PDT) Received: (from sumikawa@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA20547; Tue, 22 Aug 2000 21:29:16 -0700 (PDT) (envelope-from sumikawa@FreeBSD.org) Message-Id: <200008230429.VAA20547@freefall.freebsd.org> From: Munechika SUMIKAWA <sumikawa@FreeBSD.org> Date: Tue, 22 Aug 2000 21:29:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/apache13+ipv6 Makefile ports/www/apache13+ipv6/files md5 ports/www/apache13+ipv6/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sumikawa 2000/08/22 21:29:16 PDT Modified files: www/apache13+ipv6 Makefile www/apache13+ipv6/files md5 www/apache13+ipv6/pkg PLIST Log: - upgrade IPv6 patch to 20000821a. - do not use configure.v6 Revision Changes Path 1.8 +3 -3 ports/www/apache13+ipv6/Makefile 1.3 +1 -1 ports/www/apache13+ipv6/files/md5 1.4 +1 -0 ports/www/apache13+ipv6/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 21:35:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 55FD737B422; Tue, 22 Aug 2000 21:35:51 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA21667; Tue, 22 Aug 2000 21:35:51 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008230435.VAA21667@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 21:35:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/ruby-slang Makefile ports/devel/ruby-slang/files md5 ports/devel/ruby-slang/patches patch-aa patch-ab ports/devel/ruby-slang/pkg COMMENT DESCR PLIST ports/japanese Makefile ports/japanese/ruby-slang Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 21:35:51 PDT Modified files: devel Makefile japanese Makefile Added files: devel/ruby-slang Makefile devel/ruby-slang/files md5 devel/ruby-slang/patches patch-aa patch-ab devel/ruby-slang/pkg COMMENT DESCR PLIST japanese/ruby-slang Makefile japanese/ruby-slang/pkg COMMENT Log: Add ruby-slang/ja-ruby-slang, S-Lang/S-Lang-jp extension module for Ruby. Revision Changes Path 1.337 +2 -1 ports/devel/Makefile 1.290 +2 -1 ports/japanese/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 21:37:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B64E837B440; Tue, 22 Aug 2000 21:37:14 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA21895; Tue, 22 Aug 2000 21:37:14 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008230437.VAA21895@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Tue, 22 Aug 2000 21:37:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/22 21:37:14 PDT Modified files: . modules Log: ja-ruby-slang --> ports/japanese/ruby-slang ruby-slang --> ports/devel/ruby-slang Revision Changes Path 1.1597 +3 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 22: 7:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA06337B440; Tue, 22 Aug 2000 22:07:32 -0700 (PDT) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA26551; Tue, 22 Aug 2000 22:07:32 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Message-Id: <200008230507.WAA26551@freefall.freebsd.org> From: John Polstra <jdp@FreeBSD.org> Date: Tue, 22 Aug 2000 22:07:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jdp 2000/08/22 22:07:32 PDT Modified files: en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml Log: Bring back cvsup6.freebsd.org. Revision Changes Path 1.84 +6 -1 doc/en_US.ISO_8859-1/books/handbook/mirrors/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 23:28: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 9AC2737B423; Tue, 22 Aug 2000 23:28:03 -0700 (PDT) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id SAA15870; Wed, 23 Aug 2000 18:28:01 +1200 (NZST) Message-Id: <200008230628.SAA15870@ducky.nz.freebsd.org> From: "Dan Langille" <dan@langille.org> Organization: langille.org To: Akinori MUSHA <knu@FreeBSD.ORG> Date: Wed, 23 Aug 2000 18:27:59 +1200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvs commit: ports/devel Makefile ports/devel/ruby-slang Makefile ports/devel/ruby-slang/files md5 ports/devel/ruby- Reply-To: dan@langille.org Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <200008230435.VAA21667@freefall.freebsd.org> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 22 Aug 2000, at 21:35, Akinori MUSHA wrote: > knu 2000/08/22 21:35:51 PDT > > Modified files: > devel Makefile > japanese Makefile > Added files: > devel/ruby-slang Makefile > devel/ruby-slang/files md5 > devel/ruby-slang/patches patch-aa patch-ab > devel/ruby-slang/pkg COMMENT DESCR PLIST > japanese/ruby-slang Makefile > japanese/ruby-slang/pkg COMMENT > Log: > Add ruby-slang/ja-ruby-slang, S-Lang/S-Lang-jp extension module for Ruby. > > Revision Changes Path > 1.337 +2 -1 ports/devel/Makefile > 1.290 +2 -1 ports/japanese/Makefile Is the following result expected? [dan@set:/usr/ports/devel/ruby-slang] $ make -V PKGNAME Variable PKGNAMEPREFIX is recursive. -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ FreshPorts - http://freshports.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Aug 22 23:55:10 2000 Delivered-To: cvs-all@freebsd.org Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 9A22237B440; Tue, 22 Aug 2000 23:55:05 -0700 (PDT) Date: Wed, 23 Aug 2000 02:55:04 -0400 (EDT) From: Brian Fundakowski Feldman <green@FreeBSD.org> X-Sender: green@green.dyndns.org To: Dan Langille <dan@langille.org> Cc: Akinori MUSHA <knu@FreeBSD.ORG>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/devel Makefile ports/devel/ruby-slang Makefile ports/devel/ruby-slang/files md5 ports/devel/ruby- In-Reply-To: <200008230628.SAA15870@ducky.nz.freebsd.org> Message-ID: <Pine.BSF.4.21.0008230253380.43476-100000@green.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 23 Aug 2000, Dan Langille wrote: > > Is the following result expected? > > [dan@set:/usr/ports/devel/ruby-slang] $ make -V PKGNAME > Variable PKGNAMEPREFIX is recursive. The definition PKGNAMEPREFIX:= ${PKGNAMEPREFIX}ruby- looks right. I imagine it could be PKGNAMEPREFIX+=ruby- though :) > -- > Dan Langille > The FreeBSD Diary - http://www.freebsddiary.org/ > FreshPorts - http://freshports.org/ -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 0: 0: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id C94C837B423; Wed, 23 Aug 2000 00:00:00 -0700 (PDT) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 5CBAE1C73; Wed, 23 Aug 2000 03:00:00 -0400 (EDT) Date: Wed, 23 Aug 2000 03:00:00 -0400 From: Bill Fumerola <billf@chimesnet.com> To: Brian Fundakowski Feldman <green@FreeBSD.org> Cc: Dan Langille <dan@langille.org>, Akinori MUSHA <knu@FreeBSD.ORG>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/devel Makefile ports/devel/ruby-slang Makefile ports/devel/ruby-slang/files md5 ports/devel/ruby- Message-ID: <20000823030000.Q57333@jade.chc-chimes.com> References: <200008230628.SAA15870@ducky.nz.freebsd.org> <Pine.BSF.4.21.0008230253380.43476-100000@green.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <Pine.BSF.4.21.0008230253380.43476-100000@green.dyndns.org>; from green@FreeBSD.org on Wed, Aug 23, 2000 at 02:55:04AM -0400 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 02:55:04AM -0400, Brian Fundakowski Feldman wrote: > The definition > PKGNAMEPREFIX:= ${PKGNAMEPREFIX}ruby- > looks right. > > I imagine it could be > PKGNAMEPREFIX+=ruby- > though :) No, it can't be: [hawk-billf] /home/billf/foo > cat Makefile FOO=foo FOO+=bar all: @echo ${FOO} [hawk-billf] /home/billf/foo > make foo bar [hawk-billf] /home/billf/foo > a stupid hack (only works if there is one member): [hawk-billf] /home/billf/foo > cat Makefile FOO=foo all: @echo ${FOO:S/$/bar/} [hawk-billf] /home/billf/foo > make foobar [hawk-billf] /home/billf/foo > Someone more intelligent then I will no doubt come up with the proper answer, though. -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 0: 5:41 2000 Delivered-To: cvs-all@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 5B5F237B43C; Wed, 23 Aug 2000 00:05:36 -0700 (PDT) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id TAA16143; Wed, 23 Aug 2000 19:05:31 +1200 (NZST) Message-Id: <200008230705.TAA16143@ducky.nz.freebsd.org> From: "Dan Langille" <dan@langille.org> Organization: langille.org To: Bill Fumerola <billf@chimesnet.com> Date: Wed, 23 Aug 2000 19:05:25 +1200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvs commit: ports/devel Makefile ports/devel/ruby-slang Makefile ports/devel/ruby-slang/files md5 ports/devel/ruby- Reply-To: dan@langille.org Cc: Brian Fundakowski Feldman <green@FreeBSD.org>, Akinori MUSHA <knu@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: <20000823030000.Q57333@jade.chc-chimes.com> References: <Pine.BSF.4.21.0008230253380.43476-100000@green.dyndns.org>; from green@FreeBSD.org on Wed, Aug 23, 2000 at 02:55:04AM -0400 X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 23 Aug 2000, at 3:00, Bill Fumerola wrote: > On Wed, Aug 23, 2000 at 02:55:04AM -0400, Brian Fundakowski Feldman wrote: > > > The definition > > PKGNAMEPREFIX:= ${PKGNAMEPREFIX}ruby- > > looks right. > > > > I imagine it could be > > PKGNAMEPREFIX+=ruby- > > though :) > > No, it can't be: > > [hawk-billf] /home/billf/foo > cat Makefile > FOO=foo > FOO+=bar > > all: > @echo ${FOO} > [hawk-billf] /home/billf/foo > make > foo bar My tests worked fine: # diff Makefile.original Makefile 42c42 < PKGNAMEPREFIX:= ${PKGNAMEPREFIX}ruby- --- > PKGNAMEPREFIX+=ruby- # make -V PKGNAME ruby-slang-0.33.a What did I miss? -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ FreshPorts - http://freshports.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 0:15:50 2000 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (beachbum.freebsd.dk [212.242.32.0]) by hub.freebsd.org (Postfix) with ESMTP id C445937B42C; Wed, 23 Aug 2000 00:15:40 -0700 (PDT) Received: from critter (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id JAA01708; Wed, 23 Aug 2000 09:15:39 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: obrien@FreeBSD.org Cc: Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Josef Karthauser <joe@pavilion.net>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-Reply-To: Your message of "Tue, 22 Aug 2000 16:18:35 PDT." <20000822161835.B807@dragon.nuxi.com> Date: Wed, 23 Aug 2000 09:15:39 +0200 Message-ID: <1706.967014939@critter> From: Poul-Henning Kamp <phk@critter.freebsd.dk> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000822161835.B807@dragon.nuxi.com>, "David O'Brien" writes: >On Sat, Aug 19, 2000 at 12:48:24PM +0200, Jeroen Ruigrok van der Werven wrote: >> >I am *UTTERLY* against putting cvsweb links in the commit mail. We have been >> >through this many times before. >> I have to second Peter here. > >And I and many are strongly for it. It certainly would help us to UTSL >and not make stupid replies to commit messages because the source hasn't >made it locally yet and thus people haven't read the diffs. > >Or would you prefer I CVSup every 10 minutes to match the rate I suck >mail from hub.freebsd.org? Ok, I think the sensible compromise is this: Somebody hack the CVSROOT scripts to generate a HTML file for each commit containing the links into cvsweb to show the diffs. Put a single link to this HTML file into the commit email. All further discussion is of course futile if nobody actually *does* this bit of work. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 0:19:29 2000 Delivered-To: cvs-all@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 10D4837B422; Wed, 23 Aug 2000 00:19:22 -0700 (PDT) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id <aa97986@salmon>; 23 Aug 2000 08:19:21 +0100 (BST) Date: Wed, 23 Aug 2000 08:19:20 +0100 From: David Malone <dwmalone@maths.tcd.ie> To: Poul-Henning Kamp <phk@critter.freebsd.dk> Cc: obrien@FreeBSD.org, Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Josef Karthauser <joe@pavilion.net>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, iedowse@maths.tcd.ie Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000823081920.A75608@walton.maths.tcd.ie> References: <20000822161835.B807@dragon.nuxi.com> <1706.967014939@critter> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <1706.967014939@critter>; from phk@critter.freebsd.dk on Wed, Aug 23, 2000 at 09:15:39AM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 09:15:39AM +0200, Poul-Henning Kamp wrote: > Ok, I think the sensible compromise is this: > > Somebody hack the CVSROOT scripts to generate a HTML file > for each commit containing the links into cvsweb to > show the diffs. Put a single link to this HTML file > into the commit email. > > All further discussion is of course futile if nobody actually *does* > this bit of work. I think Ian Dowse may have patches which takes the commit logs and produces HTML with links. I'll see if I can track it down. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 0:27: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E9ED937B424; Wed, 23 Aug 2000 00:27:01 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA45689; Wed, 23 Aug 2000 00:27:01 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008230727.AAA45689@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Wed, 23 Aug 2000 00:27:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/tgif Makefile ports/graphics/tgif/files md5 ports/graphics/tgif/patches patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/23 00:27:01 PDT Modified files: graphics/tgif Makefile graphics/tgif/files md5 graphics/tgif/patches patch-aa patch-ab Log: Update to version 4.1.37 PR: 20789 Submitted by: MAINTAINER Revision Changes Path 1.27 +2 -2 ports/graphics/tgif/Makefile 1.21 +1 -1 ports/graphics/tgif/files/md5 1.17 +2 -2 ports/graphics/tgif/patches/patch-aa 1.6 +7 -7 ports/graphics/tgif/patches/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 0:35:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DB9C337B43C; Wed, 23 Aug 2000 00:35:54 -0700 (PDT) Received: (from jasone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA47069; Wed, 23 Aug 2000 00:35:54 -0700 (PDT) (envelope-from jasone@FreeBSD.org) Message-Id: <200008230735.AAA47069@freefall.freebsd.org> From: Jason Evans <jasone@FreeBSD.org> Date: Wed, 23 Aug 2000 00:35:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/libstash Makefile ports/devel/libstash/files md5 ports/devel/libstash/pkg COMMENT DESCR PLIST ports/devel/libsock Makefile ports/devel/libsock/files md5 ports/devel/libsock/pkg COMMENT DESCR PLIST ports/net/ncat ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jasone 2000/08/23 00:35:53 PDT Added files: devel/libstash Makefile devel/libstash/files md5 devel/libstash/pkg COMMENT DESCR PLIST devel/libsock Makefile devel/libsock/files md5 devel/libsock/pkg COMMENT DESCR PLIST net/ncat Makefile net/ncat/files md5 net/ncat/pkg COMMENT DESCR PLIST net/proxy Makefile net/proxy/files md5 net/proxy/pkg COMMENT DESCR PLIST Log: Add ports for: libstash - Algorithms and data structures library. libsock - TCP/IP networking library ncat - Like cat(1), but with sockets. proxy - Transparent logging proxy. All of these ports are part of a single source distribution, but they fit better into the ports scheme as separate ports. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 0:37: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9891537B42C; Wed, 23 Aug 2000 00:37:03 -0700 (PDT) Received: (from jasone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA47245; Wed, 23 Aug 2000 00:37:03 -0700 (PDT) (envelope-from jasone@FreeBSD.org) Message-Id: <200008230737.AAA47245@freefall.freebsd.org> From: Jason Evans <jasone@FreeBSD.org> Date: Wed, 23 Aug 2000 00:37:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/net Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jasone 2000/08/23 00:37:03 PDT Modified files: devel Makefile net Makefile Log: Activate the libstash, libsock, ncat, and proxy ports. Revision Changes Path 1.338 +3 -1 ports/devel/Makefile 1.397 +3 -1 ports/net/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 0:40: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 29C9537B422; Wed, 23 Aug 2000 00:39:58 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA47511; Wed, 23 Aug 2000 00:39:58 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008230739.AAA47511@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Wed, 23 Aug 2000 00:39:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/qmail Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/23 00:39:57 PDT Modified files: mail/qmail Makefile Log: Simple MASTER_SITES clean up. PR: 20771 Submitted by: MAINTAINER Revision Changes Path 1.20 +4 -8 ports/mail/qmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 0:41:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE35237B424; Wed, 23 Aug 2000 00:41:42 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA47903; Wed, 23 Aug 2000 00:41:42 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008230741.AAA47903@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Wed, 23 Aug 2000 00:41:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/kwebwatch Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/23 00:41:42 PDT Modified files: www/kwebwatch Makefile Log: Update MASTER_SITES PR: 20770 Submitted by: MAINTAINER Revision Changes Path 1.2 +3 -2 ports/www/kwebwatch/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 0:47:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7425537B422; Wed, 23 Aug 2000 00:47:11 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA48782; Wed, 23 Aug 2000 00:47:10 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008230747.AAA48782@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Wed, 23 Aug 2000 00:47:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/truereality Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/23 00:47:10 PDT Modified files: emulators/truereality Makefile Log: Update MASTER_SITES PR: 20769 Submitted by: MAINTAINER Revision Changes Path 1.5 +3 -2 ports/emulators/truereality/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 0:51:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1FBC437B422; Wed, 23 Aug 2000 00:51:40 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA49348; Wed, 23 Aug 2000 00:51:40 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008230751.AAA49348@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Wed, 23 Aug 2000 00:51:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ruby-slang Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/23 00:51:39 PDT Modified files: devel/ruby-slang Makefile Log: Fix recursive PKGNAMEPREFIX reference. Found by: Dan Langille <dan@langille.org> Revision Changes Path 1.2 +5 -1 ports/devel/ruby-slang/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 0:58:44 2000 Delivered-To: cvs-all@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id F19E637B423; Wed, 23 Aug 2000 00:58:30 -0700 (PDT) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id QAA22059; Wed, 23 Aug 2000 16:58:29 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id QAA86875; Wed, 23 Aug 2000 16:57:57 +0900 (JST) Date: Wed, 23 Aug 2000 16:57:57 +0900 Message-ID: <863djws92y.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" <knu@idaemons.org> To: dan@langille.org Cc: ports@FreeBSD.ORG, asami@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/devel Makefile ports/devel/ruby-slang Makefile ports/devel/ruby-slang/files md5 ports/devel/ruby- In-Reply-To: In your message of "Wed, 23 Aug 2000 18:27:59 +1200" <200008230628.SAA15870@ducky.nz.freebsd.org> References: <200008230435.VAA21667@freefall.freebsd.org> <200008230628.SAA15870@ducky.nz.freebsd.org> User-Agent: Wanderlust/2.3.0 (Roam) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 11) (Carlsbad Caverns) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE X-PGP-Comment: I changed my key on 2000-08-10 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At Wed, 23 Aug 2000 18:27:59 +1200, Dan Langille <dan@langille.org> wrote: > Is the following result expected? > > [dan@set:/usr/ports/devel/ruby-slang] $ make -V PKGNAME > Variable PKGNAMEPREFIX is recursive. Thanks for pointing out. I always doublecheck my ports before importing, but for this once I had modified something before the commit. Sorry. By the way, it was exactly why I had suggested an improvement WRT PKGNAMEPREFIX (which has been ignored for a while) to avoid this kind of trivial bugs & ugliness in Makefiles... -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 0:59:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A51C37B42C; Wed, 23 Aug 2000 00:59:51 -0700 (PDT) Received: (from jasone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA50244; Wed, 23 Aug 2000 00:59:51 -0700 (PDT) (envelope-from jasone@FreeBSD.org) Message-Id: <200008230759.AAA50244@freefall.freebsd.org> From: Jason Evans <jasone@FreeBSD.org> Date: Wed, 23 Aug 2000 00:59:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_sem.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jasone 2000/08/23 00:59:51 PDT Modified files: lib/libc_r/uthread uthread_sem.c Log: The second call to _thread_kern_sig_defer() in sem_post() should be a call to _thread_kern_sig_undefer(). Revision Changes Path 1.6 +2 -2 src/lib/libc_r/uthread/uthread_sem.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1: 1:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E856737B440; Wed, 23 Aug 2000 01:01:20 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA50457; Wed, 23 Aug 2000 01:01:20 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008230801.BAA50457@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Wed, 23 Aug 2000 01:01:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/quirc Makefile ports/irc/quirc/files md5 ports/irc/quirc/patches patch-aa patch-ab ports/irc/quirc/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/23 01:01:20 PDT Modified files: irc/quirc Makefile irc/quirc/files md5 irc/quirc/patches patch-aa irc/quirc/pkg PLIST Removed files: irc/quirc/patches patch-ab Log: Update to version 0.9.80 PR: 20745 Submitted by: Ports Fury Revision Changes Path 1.10 +21 -7 ports/irc/quirc/Makefile 1.3 +1 -1 ports/irc/quirc/files/md5 1.3 +9 -27 ports/irc/quirc/patches/patch-aa 1.3 +12 -11 ports/irc/quirc/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1: 9:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0EBA937B422; Wed, 23 Aug 2000 01:09:26 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA52903; Wed, 23 Aug 2000 01:09:26 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008230809.BAA52903@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Wed, 23 Aug 2000 01:09:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/boa Makefile ports/www/boa/files md5 ports/www/boa/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/23 01:09:25 PDT Modified files: www/boa Makefile www/boa/files md5 www/boa/pkg PLIST Log: Update to version 0.94.8.2 PR: 20748 Submitted by: Ports Fury Revision Changes Path 1.6 +6 -7 ports/www/boa/Makefile 1.3 +1 -1 ports/www/boa/files/md5 1.3 +1 -7 ports/www/boa/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:10:54 2000 Delivered-To: cvs-all@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id D785337B43E; Wed, 23 Aug 2000 01:10:49 -0700 (PDT) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id UAA16680; Wed, 23 Aug 2000 20:10:40 +1200 (NZST) Message-Id: <200008230810.UAA16680@ducky.nz.freebsd.org> From: "Dan Langille" <dan@langille.org> Organization: langille.org To: "Akinori -Aki- MUSHA" <knu@idaemons.org> Date: Wed, 23 Aug 2000 20:10:39 +1200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvs commit: ports/devel Makefile ports/devel/ruby-slang Makefile ports/devel/ruby-slang/files md5 ports/devel/ruby- Reply-To: dan@langille.org Cc: ports@FreeBSD.ORG, asami@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <863djws92y.wl@archon.local.idaemons.org> References: In your message of "Wed, 23 Aug 2000 18:27:59 +1200" <200008230628.SAA15870@ducky.nz.freebsd.org> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 23 Aug 2000, at 16:57, Akinori -Aki- MUSHA wrote: > At Wed, 23 Aug 2000 18:27:59 +1200, > Dan Langille <dan@langille.org> wrote: > > Is the following result expected? > > > > [dan@set:/usr/ports/devel/ruby-slang] $ make -V PKGNAME > > Variable PKGNAMEPREFIX is recursive. > > Thanks for pointing out. I always doublecheck my ports before > importing, but for this once I had modified something before the > commit. Sorry. No problem. For the record, it was FreshPorts that found the problem. The ruby-slang commit was there on the webpage but was marked as [refresh]. That's not normal. I just looked a little closer and found which option was causing the problem. That's the second maybe third catch it's found. cheers -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ FreshPorts - http://freshports.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:11:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4038937B43C; Wed, 23 Aug 2000 01:11:14 -0700 (PDT) Received: (from jasone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA53225; Wed, 23 Aug 2000 01:11:14 -0700 (PDT) (envelope-from jasone@FreeBSD.org) Message-Id: <200008230811.BAA53225@freefall.freebsd.org> From: Jason Evans <jasone@FreeBSD.org> Date: Wed, 23 Aug 2000 01:11:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_sem.c src/lib/libc_r/man sem_post.3 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jasone 2000/08/23 01:11:14 PDT Modified files: (Branch: RELENG_4) lib/libc_r/uthread uthread_sem.c lib/libc_r/man sem_post.3 Log: MFC: Make sem_post() safe for use within signal handlers. Revision Changes Path 1.3.2.2 +8 -1 src/lib/libc_r/uthread/uthread_sem.c 1.1.2.4 +4 -1 src/lib/libc_r/man/sem_post.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:14:58 2000 Delivered-To: cvs-all@freebsd.org Received: from lists01.iafrica.com (lists01.iafrica.com [196.7.0.141]) by hub.freebsd.org (Postfix) with ESMTP id 7840E37B423; Wed, 23 Aug 2000 01:14:51 -0700 (PDT) Received: from nwl.fw.uunet.co.za ([196.31.2.162]) by lists01.iafrica.com with esmtp (Exim 3.12 #2) id 13RVgO-0001Vu-00; Wed, 23 Aug 2000 10:14:48 +0200 Received: (from nobody@localhost) by nwl.fw.uunet.co.za (8.8.8/8.6.9) id KAA24103; Wed, 23 Aug 2000 10:14:47 +0200 (SAST) Received: by nwl.fw.uunet.co.za via recvmail id 24037; Wed Aug 23 10:14:19 2000 Received: from sheldonh (helo=axl.fw.uunet.co.za) by axl.fw.uunet.co.za with local-esmtp (Exim 3.16 #1) id 13RVfv-0001yM-00; Wed, 23 Aug 2000 10:14:19 +0200 From: Sheldon Hearn <sheldonh@uunet.co.za> To: John Baldwin <jhb@freebsd.org> Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/sys accept.2 In-reply-to: Your message of "Tue, 22 Aug 2000 17:24:38 MST." <200008230024.RAA90788@freefall.freebsd.org> Date: Wed, 23 Aug 2000 10:14:19 +0200 Message-ID: <7585.967018459@axl.fw.uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 22 Aug 2000 17:24:38 MST, John Baldwin wrote: > Modified files: (Branch: RELENG_4) > lib/libc/sys accept.2 > Log: > MFC: Content-free commit: only remove trailing whitespace It's really good to see people splitting content and whitespace commits up. I know that it takes extra work, but you do the translators a service. Thanks! Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:17:20 2000 Delivered-To: cvs-all@freebsd.org Received: from genius.systems.pavilion.net (genius.systems.pavilion.net [212.74.1.100]) by hub.freebsd.org (Postfix) with ESMTP id 3E09437B423; Wed, 23 Aug 2000 01:17:15 -0700 (PDT) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id C5CC69B2D; Wed, 23 Aug 2000 09:17:14 +0100 (BST) Date: Wed, 23 Aug 2000 09:17:14 +0100 From: Josef Karthauser <joe@pavilion.net> To: David O'Brien <obrien@FreeBSD.org> Cc: Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000823091714.D650@pavilion.net> References: <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000822161835.B807@dragon.nuxi.com>; from obrien@FreeBSD.org on Tue, Aug 22, 2000 at 04:18:35PM -0700 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Aug 22, 2000 at 04:18:35PM -0700, David O'Brien wrote: > On Sat, Aug 19, 2000 at 12:48:24PM +0200, Jeroen Ruigrok van der Werven wrote: > > >I am *UTTERLY* against putting cvsweb links in the commit mail. We have been > > >through this many times before. > > I have to second Peter here. > > And I and many are strongly for it. It certainly would help us to UTSL > and not make stupid replies to commit messages because the source hasn't > made it locally yet and thus people haven't read the diffs. > > Or would you prefer I CVSup every 10 minutes to match the rate I suck > mail from hub.freebsd.org? I'm building the ability to add these (and other local hacks) in. We can than argue about whether it gets switched on later. :) The per-commit id is also going in. Question is what kind of format if should be. It could be an integer counter, or a YYYYMMDD-CID (commit id) type. Preferences? Joe -- Josef Karthauser FreeBSD: How many times have you booted today? Technical Manager Viagra for your server (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@uk.freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:19:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 92C7A37B42C; Wed, 23 Aug 2000 01:19:28 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA54192; Wed, 23 Aug 2000 01:19:28 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008230819.BAA54192@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Wed, 23 Aug 2000 01:19:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/playmidi/patches patch-ab patch-ac patch-ad ports/audio/playmidi/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/23 01:19:28 PDT Modified files: audio/playmidi/patches patch-ab patch-ac patch-ad audio/playmidi/pkg PLIST Log: Change location of data files from libdata/ to share/ PR: 20750 Submitted by: Ports Fury Revision Changes Path 1.5 +190 -266 ports/audio/playmidi/patches/patch-ab 1.2 +11 -19 ports/audio/playmidi/patches/patch-ac 1.3 +29 -42 ports/audio/playmidi/patches/patch-ad 1.6 +5 -5 ports/audio/playmidi/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:22:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3922337B422; Wed, 23 Aug 2000 01:22:23 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA54630; Wed, 23 Aug 2000 01:22:23 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230822.BAA54630@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 01:22:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 mly.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 01:22:23 PDT Modified files: share/man/man4 mly.4 Log: Whitespace-only change: apply normal line-breaking style. Revision Changes Path 1.2 +12 -9 src/share/man/man4/mly.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:30: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 857AB37B440; Wed, 23 Aug 2000 01:30:03 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA55456; Wed, 23 Aug 2000 01:30:03 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008230830.BAA55456@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Wed, 23 Aug 2000 01:30:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/the Makefile ports/editors/the/patches patch-aa patch-ab ports/editors/the/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/23 01:30:03 PDT Modified files: editors/the Makefile editors/the/patches patch-aa patch-ab editors/the/pkg PLIST Log: - Support LOCALBASE properly - Change location of data files from libdata/ to share/ PR: 20751 Submitted by: Ports Fury Revision Changes Path 1.6 +4 -2 ports/editors/the/Makefile 1.4 +68 -97 ports/editors/the/patches/patch-aa 1.2 +18 -22 ports/editors/the/patches/patch-ab 1.4 +16 -16 ports/editors/the/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:30:59 2000 Delivered-To: cvs-all@freebsd.org Received: from lists01.iafrica.com (lists01.iafrica.com [196.7.0.141]) by hub.freebsd.org (Postfix) with ESMTP id 00EE637B424; Wed, 23 Aug 2000 01:30:54 -0700 (PDT) Received: from nwl.fw.uunet.co.za ([196.31.2.162]) by lists01.iafrica.com with esmtp (Exim 3.12 #2) id 13RVvv-0001qa-00; Wed, 23 Aug 2000 10:30:51 +0200 Received: (from nobody@localhost) by nwl.fw.uunet.co.za (8.8.8/8.6.9) id KAA27219; Wed, 23 Aug 2000 10:30:49 +0200 (SAST) Received: by nwl.fw.uunet.co.za via recvmail id 27101; Wed Aug 23 10:30:10 2000 Received: from sheldonh (helo=axl.fw.uunet.co.za) by axl.fw.uunet.co.za with local-esmtp (Exim 3.16 #1) id 13RVvG-00028K-00; Wed, 23 Aug 2000 10:30:10 +0200 From: Sheldon Hearn <sheldonh@uunet.co.za> To: cvs-committers@freebsd.org Cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/share/man/man4 mly.4 In-reply-to: Your message of "Wed, 23 Aug 2000 01:22:23 MST." <200008230822.BAA54630@freefall.freebsd.org> Date: Wed, 23 Aug 2000 10:30:10 +0200 Message-ID: <8203.967019410@axl.fw.uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 23 Aug 2000 01:22:23 MST, Sheldon Hearn wrote: > Modified files: > share/man/man4 mly.4 > Log: > Whitespace-only change: apply normal line-breaking style. Before anyone gets antsy about unreviewed commits to maintained pages, I should mention that I have msmith's blanket permission to make style changes to his pages. If you haven't told me before that I can mess with your pages, you don't have to worry about me getting under your feet. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:33:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2BD1637B424; Wed, 23 Aug 2000 01:33:22 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA55792; Wed, 23 Aug 2000 01:33:22 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230833.BAA55792@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 01:33:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 mly.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 01:33:22 PDT Modified files: share/man/man4 mly.4 Log: Normalize the diagnostics list. Revision Changes Path 1.3 +7 -29 src/share/man/man4/mly.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:35:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 62AA937B424; Wed, 23 Aug 2000 01:35:10 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA56037; Wed, 23 Aug 2000 01:35:10 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230835.BAA56037@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 01:35:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 mly.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 01:35:07 PDT Modified files: share/man/man4 mly.4 Log: Miscellaneous fixes: mly -> Nm and eg. -> e.g. . Revision Changes Path 1.4 +5 -3 src/share/man/man4/mly.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:42:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 704B937B43C; Wed, 23 Aug 2000 01:42:43 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA56922; Wed, 23 Aug 2000 01:42:43 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230842.BAA56922@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 01:42:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 mlx.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 01:42:43 PDT Modified files: share/man/man4 mlx.4 Log: Whitespace-only change: apply normal line breaking style. Revision Changes Path 1.6 +7 -7 src/share/man/man4/mlx.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:43:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5399D37B424; Wed, 23 Aug 2000 01:43:43 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA57077; Wed, 23 Aug 2000 01:43:43 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008230843.BAA57077@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Wed, 23 Aug 2000 01:43:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/prodosemu Makefile ports/emulators/prodosemu/patches patch-aa patch-ab patch-ac ports/emulators/prodosemu/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/23 01:43:43 PDT Modified files: emulators/prodosemu Makefile emulators/prodosemu/patches patch-aa patch-ab patch-ac emulators/prodosemu/pkg PLIST Log: - Remove obsolete site form MASTER_SITES - Change location of data files from libdata/ to share/ PR: 20752 Submitted by: Ports Fury Revision Changes Path 1.9 +3 -7 ports/emulators/prodosemu/Makefile 1.3 +63 -89 ports/emulators/prodosemu/patches/patch-aa 1.2 +12 -21 ports/emulators/prodosemu/patches/patch-ab 1.3 +14 -26 ports/emulators/prodosemu/patches/patch-ac 1.3 +2 -2 ports/emulators/prodosemu/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:48:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 74FA937B423; Wed, 23 Aug 2000 01:48:11 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA57637; Wed, 23 Aug 2000 01:48:11 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230848.BAA57637@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 01:48:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 mlx.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 01:48:10 PDT Modified files: share/man/man4 mlx.4 Log: Normalize diagnostics list. Revision Changes Path 1.7 +7 -61 src/share/man/man4/mlx.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:48:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 662E437B43F; Wed, 23 Aug 2000 01:48:37 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA57757; Wed, 23 Aug 2000 01:48:37 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230848.BAA57757@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 01:48:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ccdconfig ccdconfig.c src/sbin/ping6 ping6.c src/usr.sbin/traceroute6 traceroute6.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 01:48:37 PDT Modified files: (Branch: RELENG_4) sbin/ccdconfig ccdconfig.c sbin/ping6 ping6.c usr.sbin/traceroute6 traceroute6.c Log: MFC: errx() and warnx() format string paranoia Revision Changes Path 1.16.2.1 +5 -5 src/sbin/ccdconfig/ccdconfig.c 1.4.2.2 +5 -5 src/sbin/ping6/ping6.c 1.4.2.2 +5 -5 src/usr.sbin/traceroute6/traceroute6.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:49:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED7C037B42C; Wed, 23 Aug 2000 01:49:49 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA57905; Wed, 23 Aug 2000 01:49:49 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230849.BAA57905@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 01:49:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ul ul.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 01:49:49 PDT Modified files: (Branch: RELENG_4) usr.bin/ul ul.c Log: MFC: Don't coredump on long input lines. Revision Changes Path 1.6.2.1 +2 -2 src/usr.bin/ul/ul.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:50:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA33037B424; Wed, 23 Aug 2000 01:50:19 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA58031; Wed, 23 Aug 2000 01:50:19 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230850.BAA58031@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 01:50:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/units units.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 01:50:19 PDT Modified files: (Branch: RELENG_4) usr.bin/units units.c Log: MFC: Don't segv when trying to add a 0-length unit name. Some string-related cleanups inspired by OpenBSD. Revision Changes Path 1.6.2.1 +21 -22 src/usr.bin/units/units.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:50:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 04F5637B616; Wed, 23 Aug 2000 01:50:35 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA58075; Wed, 23 Aug 2000 01:50:35 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230850.BAA58075@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 01:50:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 mlx.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 01:50:34 PDT Modified files: share/man/man4 mlx.4 Log: Whitespace-only changes: split over-long lines. Revision Changes Path 1.8 +7 -5 src/share/man/man4/mlx.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:51:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E6F2637B43C; Wed, 23 Aug 2000 01:51:25 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA58235; Wed, 23 Aug 2000 01:51:25 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230851.BAA58235@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 01:51:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ctm/ctm ctm.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 01:51:25 PDT Modified files: (Branch: RELENG_4) usr.sbin/ctm/ctm ctm.c Log: MFC: Change use of perror() to warn() Revision Changes Path 1.19.2.1 +2 -2 src/usr.sbin/ctm/ctm/ctm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:51:55 2000 Delivered-To: cvs-all@freebsd.org Received: from genius.systems.pavilion.net (genius.systems.pavilion.net [212.74.1.100]) by hub.freebsd.org (Postfix) with ESMTP id B0CCF37B61D; Wed, 23 Aug 2000 01:51:45 -0700 (PDT) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id 0EBB69B2D; Wed, 23 Aug 2000 09:51:45 +0100 (BST) Date: Wed, 23 Aug 2000 09:51:45 +0100 From: Josef Karthauser <joe@pavilion.net> To: Poul-Henning Kamp <phk@critter.freebsd.dk> Cc: obrien@FreeBSD.org, Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000823095144.F650@pavilion.net> References: <20000822161835.B807@dragon.nuxi.com> <1706.967014939@critter> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <1706.967014939@critter>; from phk@critter.freebsd.dk on Wed, Aug 23, 2000 at 09:15:39AM +0200 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 09:15:39AM +0200, Poul-Henning Kamp wrote: > > Ok, I think the sensible compromise is this: > > Somebody hack the CVSROOT scripts to generate a HTML file > for each commit containing the links into cvsweb to > show the diffs. Put a single link to this HTML file > into the commit email. > > All further discussion is of course futile if nobody actually *does* > this bit of work. > I'm working on a rewrite of the CVSROOT scripts currently (which you should be aware of). I'd appreciate it if no-one adds anything until I've finished - or feeds it back through me. The favoured approach is to have a unique commit id per commit which external tools can do the right thing with. That said the ability to add 'cvsweb' type links will be there - for people who run their own repositories based on the FreeBSD CVSROOT/scripts. Joe -- Josef Karthauser FreeBSD: How many times have you booted today? Technical Manager Viagra for your server (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@uk.freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:51:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5146637B43E; Wed, 23 Aug 2000 01:51:47 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA58277; Wed, 23 Aug 2000 01:51:47 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230851.BAA58277@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 01:51:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/kgzip kgzip.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 01:51:47 PDT Modified files: (Branch: RELENG_4) usr.sbin/kgzip kgzip.c Log: MFC: Cleanup of TMPDIR code. Revision Changes Path 1.3.2.1 +6 -6 src/usr.sbin/kgzip/kgzip.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:52:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D938E37B42C; Wed, 23 Aug 2000 01:52:31 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA58335; Wed, 23 Aug 2000 01:52:31 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230852.BAA58335@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 01:52:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libz minigzip.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 01:52:31 PDT Modified files: (Branch: RELENG_4) lib/libz minigzip.c Log: MFC: Prevent buffer overflows. Revision Changes Path 1.6.2.1 +11 -1 src/lib/libz/minigzip.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:52:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD1C237B42C; Wed, 23 Aug 2000 01:52:43 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA58365; Wed, 23 Aug 2000 01:52:43 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230852.BAA58365@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 01:52:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 mlx.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 01:52:43 PDT Modified files: share/man/man4 mlx.4 Log: Misc: mlx -> Nm Revision Changes Path 1.9 +4 -2 src/share/man/man4/mlx.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:53: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF08F37B424; Wed, 23 Aug 2000 01:53:00 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA58425; Wed, 23 Aug 2000 01:53:00 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230853.BAA58425@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 01:53:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libkvm kvm.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 01:53:00 PDT Modified files: (Branch: RELENG_4) lib/libkvm kvm.c Log: MFC: Limit the amount of data copied to the error buffer to _POSIX2_LINE_MAX. Revision Changes Path 1.12.2.2 +3 -3 src/lib/libkvm/kvm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:53:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8516C37B424; Wed, 23 Aug 2000 01:53:44 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA58520; Wed, 23 Aug 2000 01:53:44 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230853.BAA58520@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 01:53:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rlogind rlogind.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 01:53:44 PDT Modified files: (Branch: RELENG_4) libexec/rlogind rlogind.c Log: MFC: sprintf() -> snprintf() paranoia. Revision Changes Path 1.29.2.2 +3 -3 src/libexec/rlogind/rlogind.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:54:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 02A7037B422; Wed, 23 Aug 2000 01:54:24 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA58625; Wed, 23 Aug 2000 01:54:24 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230854.BAA58625@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 01:54:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libcompat/4.3 rexec.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 01:54:23 PDT Modified files: (Branch: RELENG_4) lib/libcompat/4.3 rexec.c Log: MFC: Return an error instead of overflowing the buffer in the case of a long $HOME in ruserpass() Revision Changes Path 1.5.8.1 +4 -0 src/lib/libcompat/4.3/rexec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:58: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A60637B422; Wed, 23 Aug 2000 01:57:59 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA59019; Wed, 23 Aug 2000 01:57:59 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230857.BAA59019@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 01:57:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 splash.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 01:57:59 PDT Modified files: share/man/man4 splash.4 Log: Whitespace-only change: normalize line-breaking. Revision Changes Path 1.11 +17 -12 src/share/man/man4/splash.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:58:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1EF8A37B43E; Wed, 23 Aug 2000 01:58:04 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA59079; Wed, 23 Aug 2000 01:58:04 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230858.BAA59079@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 01:58:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/isdn 0.al.uu 1.al.uu 2.al.uu 3.al.uu 4.al.uu 5.al.uu 6.al.uu 7.al.uu 8.al.uu 9.al.uu beep.al.uu msg.al.uu X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 01:58:04 PDT Modified files: (Branch: RELENG_4) share/isdn 0.al.uu 1.al.uu 2.al.uu 3.al.uu 4.al.uu 5.al.uu 6.al.uu 7.al.uu 8.al.uu 9.al.uu beep.al.uu msg.al.uu Log: MFC: Don't extract these files as mode 666 during build, use mode 644 instead. Revision Changes Path 1.2.4.1 +2 -2 src/share/isdn/0.al.uu 1.2.4.1 +2 -2 src/share/isdn/1.al.uu 1.2.4.1 +2 -2 src/share/isdn/2.al.uu 1.2.4.1 +2 -2 src/share/isdn/3.al.uu 1.2.4.1 +2 -2 src/share/isdn/4.al.uu 1.2.4.1 +2 -2 src/share/isdn/5.al.uu 1.2.4.1 +2 -2 src/share/isdn/6.al.uu 1.2.4.1 +2 -2 src/share/isdn/7.al.uu 1.2.4.1 +2 -2 src/share/isdn/8.al.uu 1.2.4.1 +2 -2 src/share/isdn/9.al.uu 1.2.4.1 +2 -2 src/share/isdn/beep.al.uu 1.2.4.1 +2 -2 src/share/isdn/msg.al.uu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 1:58:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3975D37B424; Wed, 23 Aug 2000 01:58:57 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA59177; Wed, 23 Aug 2000 01:58:57 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230858.BAA59177@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 01:58:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pcvt/demo chardemo.vt.gz.uu colors.vt.gz.uu sgr.vt.gz.uu X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 01:58:57 PDT Modified files: (Branch: RELENG_4) usr.sbin/pcvt/demo chardemo.vt.gz.uu colors.vt.gz.uu sgr.vt.gz.uu Log: MFC: Don't extract these files as mode 664 during build, use mode 644 instead. Revision Changes Path 1.3.6.1 +2 -1 src/usr.sbin/pcvt/demo/chardemo.vt.gz.uu 1.3.6.1 +2 -1 src/usr.sbin/pcvt/demo/colors.vt.gz.uu 1.3.6.1 +2 -1 src/usr.sbin/pcvt/demo/sgr.vt.gz.uu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2: 0:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2CCA137B424; Wed, 23 Aug 2000 02:00:16 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA59466; Wed, 23 Aug 2000 02:00:16 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230900.CAA59466@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 02:00:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/dev/fla/i386 msysosak.o.uu X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 02:00:15 PDT Modified files: (Branch: RELENG_4) sys/contrib/dev/fla/i386 msysosak.o.uu Log: MFC: Install mode 644, not mode 664 during kernel compile. Revision Changes Path 1.1.4.1 +2 -1 src/sys/contrib/dev/fla/i386/msysosak.o.uu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2: 5:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 84F5637B423; Wed, 23 Aug 2000 02:05:20 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA60616; Wed, 23 Aug 2000 02:05:20 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230905.CAA60616@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 02:05:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 splash.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 02:05:20 PDT Modified files: share/man/man4 splash.4 Log: Miscellaneous fixes: * Clear extraneous argument to the Os macro. * Place the name description on the Nd line. * Mark sub-sections up with Ss, not Sh. * Don't double-quote "Login" when "login prompt" is perfectly good English. Revision Changes Path 1.12 +8 -9 src/share/man/man4/splash.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2:14: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 534CA37B423; Wed, 23 Aug 2000 02:13:58 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA62624; Wed, 23 Aug 2000 02:13:58 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230913.CAA62624@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 02:13:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 amr.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 02:13:57 PDT Modified files: share/man/man4 amr.4 Log: Normalize the diagnostics list. Revision Changes Path 1.7 +5 -26 src/share/man/man4/amr.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2:17:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6098537B423; Wed, 23 Aug 2000 02:17:54 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA63143; Wed, 23 Aug 2000 02:17:54 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230917.CAA63143@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 02:17:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 amr.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 02:17:54 PDT Modified files: share/man/man4 amr.4 Log: Miscellaneous fixes: amr -> Nm Cross-reference the AUTHORS section properly. Revision Changes Path 1.8 +9 -3 src/share/man/man4/amr.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2:25:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 682D337B423; Wed, 23 Aug 2000 02:25:11 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA64102; Wed, 23 Aug 2000 02:25:11 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230925.CAA64102@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 02:25:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/bind/bin/dnsquery - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 02:25:11 PDT src/contrib/bind/bin/dnsquery - Imported sources Update of /home/ncvs/src/contrib/bind/bin/dnsquery In directory freefall.freebsd.org:/c/tmp/cvs-serv63835 Log Message: Fix for buffer overflow in command-line arguments to dnsquery(1) which will be appearing in 8.2.3 Approved by: Paul A Vixie <vixie@mibh.net> Status: Vendor Tag: ISC Release Tags: v8_2_3_t5b_20000823 U src/contrib/bind/bin/dnsquery/dnsquery.c No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2:29:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB97D37B43C; Wed, 23 Aug 2000 02:29:05 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA64589; Wed, 23 Aug 2000 02:29:05 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230929.CAA64589@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 02:29:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa/matcd matcd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 02:29:05 PDT Modified files: sys/i386/isa/matcd matcd.c Log: Fix the matcd driver for the new world order. This basically just renames matcdc to matcd. This change is reported to work by two independent PR originators. In the absence of further feedback on the freebsd-bugs list, we may as well get this working for its two users. PR: 20296 Submitted by: George Russell <george.russell@clara.net>, Remi Guyomarch <rguyom@mail.dotcom.fr> Revision Changes Path 1.55 +10 -10 src/sys/i386/isa/matcd/matcd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2:32: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 597A637B43E; Wed, 23 Aug 2000 02:32:04 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA64922; Wed, 23 Aug 2000 02:32:04 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230932.CAA64922@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 02:32:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/whisker Makefile ports/security/whisker/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 02:32:04 PDT Modified files: security/whisker Makefile security/whisker/files md5 Log: Upgrade to whisker 1.4 PR: 20616 Submitted by: Ron Rosson <insane@lunatic.oneinsane.net> Revision Changes Path 1.4 +3 -3 ports/security/whisker/Makefile 1.2 +1 -1 ports/security/whisker/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2:39:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BEBA537B422; Wed, 23 Aug 2000 02:39:21 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA65906; Wed, 23 Aug 2000 02:39:21 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230939.CAA65906@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 02:39:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh includes.h src/secure/usr.bin/ssh Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 02:39:20 PDT Modified files: crypto/openssh includes.h secure/usr.bin/ssh Makefile Log: Respect X11BASE to derive the location of xauth(1) PR: 17818 Submitted by: Bjoern Fischer <bfischer@Techfak.Uni-Bielefeld.DE> Revision Changes Path 1.7 +3 -1 src/crypto/openssh/includes.h 1.8 +5 -1 src/secure/usr.bin/ssh/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2:44:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88D4937B423; Wed, 23 Aug 2000 02:44:21 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA67943; Wed, 23 Aug 2000 02:44:21 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230944.CAA67943@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 02:44:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa/matcd matcd.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 02:44:21 PDT Modified files: (Branch: RELENG_4) sys/i386/isa/matcd matcd.c Log: MFC rev 1.55: matcdc -> matcd Revision Changes Path 1.49.2.1 +10 -10 src/sys/i386/isa/matcd/matcd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2:46:39 2000 Delivered-To: cvs-all@freebsd.org Received: from mailgate.originative.co.uk (mailgate.originative.co.uk [194.217.50.228]) by hub.freebsd.org (Postfix) with ESMTP id 75C2E37B424; Wed, 23 Aug 2000 02:46:32 -0700 (PDT) Received: from originative.co.uk (lobster.originative.co.uk [194.217.50.241]) by mailgate.originative.co.uk (Postfix) with ESMTP id 2B1511D140; Wed, 23 Aug 2000 10:46:31 +0100 (BST) Message-ID: <39A39D77.831D4501@originative.co.uk> Date: Wed, 23 Aug 2000 10:46:31 +0100 From: Paul Richards <paul@originative.co.uk> Organization: Originative Solutions Ltd X-Mailer: Mozilla 4.74 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Josef Karthauser <joe@pavilion.net> Cc: David O'Brien <obrien@FreeBSD.org>, Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes References: <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Josef Karthauser wrote: > > On Tue, Aug 22, 2000 at 04:18:35PM -0700, David O'Brien wrote: > > On Sat, Aug 19, 2000 at 12:48:24PM +0200, Jeroen Ruigrok van der Werven wrote: > > > >I am *UTTERLY* against putting cvsweb links in the commit mail. We have been > > > >through this many times before. > > > I have to second Peter here. > > > > And I and many are strongly for it. It certainly would help us to UTSL > > and not make stupid replies to commit messages because the source hasn't > > made it locally yet and thus people haven't read the diffs. > > > > Or would you prefer I CVSup every 10 minutes to match the rate I suck > > mail from hub.freebsd.org? > > I'm building the ability to add these (and other local hacks) in. We > can than argue about whether it gets switched on later. :) and the ability to separate what goes into the log and what is posted to the list? Paul To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2:47:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E910B37B422; Wed, 23 Aug 2000 02:47:25 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA68332; Wed, 23 Aug 2000 02:47:25 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230947.CAA68332@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 02:47:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh servconf.c sshd.8 sshd_config X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 02:47:25 PDT Modified files: crypto/openssh servconf.c sshd.8 sshd_config Log: Increase the default value of LoginGraceTime from 60 seconds to 120 seconds. PR: 20488 Submitted by: rwatson Revision Changes Path 1.13 +2 -2 src/crypto/openssh/servconf.c 1.13 +2 -2 src/crypto/openssh/sshd.8 1.10 +2 -2 src/crypto/openssh/sshd_config To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2:52:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D782A37B42C; Wed, 23 Aug 2000 02:52:31 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA69064; Wed, 23 Aug 2000 02:52:31 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Message-Id: <200008230952.CAA69064@freefall.freebsd.org> From: David Malone <dwmalone@FreeBSD.org> Date: Wed, 23 Aug 2000 02:52:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dwmalone 2000/08/23 02:52:31 PDT Modified files: . access Log: Send my committers mail to an address I can sort on more easily. Revision Changes Path 1.177 +2 -2 CVSROOT/access To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2:56: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A0F637B424; Wed, 23 Aug 2000 02:56:07 -0700 (PDT) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA69558; Wed, 23 Aug 2000 02:56:07 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200008230956.CAA69558@freefall.freebsd.org> From: Jun Kuriyama <kuriyama@FreeBSD.org> Date: Wed, 23 Aug 2000 02:56:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/internal developer.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/08/23 02:56:07 PDT Modified files: en/internal developer.sgml Log: Correct link to "Committers' Guide". ( ~asami/cvsguide.txt --> ../tutorials/committers-guide/ ) Revision Changes Path 1.10 +3 -3 www/en/internal/developer.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2:57: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6FA8937B422; Wed, 23 Aug 2000 02:57:05 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA69741; Wed, 23 Aug 2000 02:57:05 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200008230957.CAA69741@freefall.freebsd.org> From: Kris Kennaway <kris@FreeBSD.org> Date: Wed, 23 Aug 2000 02:57:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/ssh Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/08/23 02:57:05 PDT Modified files: security/ssh Makefile Log: Don't install the startup script if ssh is being run out of inetd.conf PR: 15691 Submitted by: Roger Marquis <marquis@roble.com> Revision Changes Path 1.101 +8 -6 ports/security/ssh/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 2:59:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A855837B43E; Wed, 23 Aug 2000 02:59:25 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA70632; Wed, 23 Aug 2000 02:59:25 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008230959.CAA70632@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Wed, 23 Aug 2000 02:59:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/mount mount.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/23 02:59:25 PDT Modified files: sbin/mount mount.c Log: Only print information about reads and writes when the -v flag (for verbose mode) is specified. This should really have been the case when this extra cruft was first introduced in rev 1.23. PR: 20710 Reported by: Mike Meyer <mwm@mired.org> Revision Changes Path 1.40 +9 -7 src/sbin/mount/mount.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 3:13:11 2000 Delivered-To: cvs-all@freebsd.org Received: from gilgamesch.bik-gmbh.de (T1-Hansenet.BIK-GmbH.de [192.76.134.246]) by hub.freebsd.org (Postfix) with ESMTP id 41BB837B42C; Wed, 23 Aug 2000 03:13:04 -0700 (PDT) Received: (from cracauer@localhost) by gilgamesch.bik-gmbh.de (8.9.3/8.7.3) id MAA73031; Wed, 23 Aug 2000 12:12:57 +0200 (MET DST) Date: Wed, 23 Aug 2000 12:12:57 +0200 From: Martin Cracauer <cracauer@cons.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/include unistd.h src/lib/libcrypt Makefile crypt.3 crypt.c crypt.h src/lib/libutil Makefile login_cap.c login_cap.h login_cap.3 src/secure/lib/libcrypt Makefile src/usr.bin/passwd local_passwd.c src/usr.sbin/pw Makefile pw_user.c Message-ID: <20000823121257.A72986@cons.org> References: <200008220215.TAA35477@freefall.freebsd.org> <00Aug23.125847est.115226@border.alcanet.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <00Aug23.125847est.115226@border.alcanet.com.au>; from peter.jeremy@alcatel.com.au on Wed, Aug 23, 2000 at 12:58:47PM +1000 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In <00Aug23.125847est.115226@border.alcanet.com.au>, Peter Jeremy wrote: > On 2000-Aug-21 19:15:55 -0700, Brian Feldman <green@FreeBSD.ORG> wrote: > >green 2000/08/21 19:15:54 PDT > > > > Modified files: > > include unistd.h > > lib/libcrypt Makefile crypt.3 crypt.c crypt.h > > lib/libutil Makefile login_cap.c login_cap.h > > login_cap.3 > > secure/lib/libcrypt Makefile > > usr.bin/passwd local_passwd.c > > usr.sbin/pw Makefile pw_user.c > > Log: > > Add working and easy crypt(3)-switching. Yes, we need a whole new API > > for crypt(3) by now. In any case: > > This seems to have broken world for me. In /etc/make.conf, I have: > USA_RESIDENT=NO > NODESCRYPTLINKS=true > > and references to `-lcrypt' die with > .../libcrypt.so: undefined reference to `crypt_des' With just USA_RESIDENT=NO it failed for me, too. As a workaround, you can build the world after building and installing the libs manually. Martin -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer <cracauer@cons.org> http://www.cons.org/cracauer/ BSD User Group Hamburg, Germany http://www.bsdhh.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 3:23:45 2000 Delivered-To: cvs-all@freebsd.org Received: from genius.systems.pavilion.net (genius.systems.pavilion.net [212.74.1.100]) by hub.freebsd.org (Postfix) with ESMTP id E399B37B423; Wed, 23 Aug 2000 03:23:37 -0700 (PDT) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id 7BA699B2D; Wed, 23 Aug 2000 11:23:33 +0100 (BST) Date: Wed, 23 Aug 2000 11:23:33 +0100 From: Josef Karthauser <joe@pavilion.net> To: Paul Richards <paul@originative.co.uk> Cc: David O'Brien <obrien@FreeBSD.org>, Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000823112333.C7272@pavilion.net> References: <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <39A39D77.831D4501@originative.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39A39D77.831D4501@originative.co.uk>; from paul@originative.co.uk on Wed, Aug 23, 2000 at 10:46:31AM +0100 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 10:46:31AM +0100, Paul Richards wrote: > > > I'm building the ability to add these (and other local hacks) in. We > > can than argue about whether it gets switched on later. :) > > and the ability to separate what goes into the log and what is posted to > the list? > There's already limited support for that, via the $rcsidinfo variable. It makes sense to expand that idea. The main underlying goals are as follow: * Rewrite using Perl5isms instead of a combination of perl4 and perl5. (Including using taint, strict and -w warnings.) * Use a config.pm module to drive the configuration. * Make the system generic enough that any group (Apache, Apple, etc) can use it directly with only changes to the config file, but flexible enough that it does everything that _we_ want it to do. The advantage of using a configuration file written in Perl is that it can contain code to determine what the configuration should be. For instance when crypto was elsewhere: # The command used for mail the log messages. Usually something # like $MAILCMD = "/usr/sbin/sendmail". $MAILCMD = "/usr/local/bin/mailsend -H"; # Extra banner to add to top of commit messages. # i.e. $MAILBANNER = "Project X CVS Repository"; $MAILBANNER = ""; # No banner for general FreeBSD commits # Email addresses of recipients of commit mail. # i.e. $MAILADDRS = 'committers@your.domain.com'; $MAILADDRS = 'cvs-committers@FreeBSD.org cvs-all@FreeBSD.org'; #============================================================ # FreeBSD customisation - remove this block if you're using # this for your own projects. use Sys::Hostname; # get hostname() function if (hostname() =~ /freefall\.freebsd\.org/i) { $MAILADDRS = 'peter@FreeBSD.org' if $DEBUG; } else { $MAILADDRS = 'mark@FreeBSD.org' if $DEBUG; $MAIL_BANNER = "FreeBSD International Crypto Repository\n" } #============================================================ There's a snapshot of the development in Freefall:~joe/New-CVSROOT. Joe -- Josef Karthauser FreeBSD: How many times have you booted today? Technical Manager Viagra for your server (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@uk.freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 3:31: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4014E37B43C; Wed, 23 Aug 2000 03:30:59 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA76296; Wed, 23 Aug 2000 03:30:59 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008231030.DAA76296@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Wed, 23 Aug 2000 03:30:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/gtktetcolor Makefile ports/games/gtktetcolor/files md5 ports/games/gtktetcolor/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/23 03:30:59 PDT Modified files: games/gtktetcolor Makefile games/gtktetcolor/files md5 games/gtktetcolor/pkg PLIST Log: Update to 0.4.3. Revision Changes Path 1.2 +2 -2 ports/games/gtktetcolor/Makefile 1.2 +1 -1 ports/games/gtktetcolor/files/md5 1.2 +1 -0 ports/games/gtktetcolor/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 3:49:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3758737B424; Wed, 23 Aug 2000 03:49:49 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA78417; Wed, 23 Aug 2000 03:49:49 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200008231049.DAA78417@freefall.freebsd.org> From: Thomas Gellekum <tg@FreeBSD.org> Date: Wed, 23 Aug 2000 03:49:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gnustep Makefile ports/devel/gnustep/files md5 ports/devel/gnustep/patches patch-ab patch-ac patch-ad ports/devel/gnustep/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/08/23 03:49:48 PDT Modified files: devel/gnustep Makefile devel/gnustep/files md5 devel/gnustep/pkg PLIST Removed files: devel/gnustep/patches patch-ab patch-ac patch-ad Log: Upgrade to 0.6.6. Revision Changes Path 1.13 +6 -7 ports/devel/gnustep/Makefile 1.4 +1 -1 ports/devel/gnustep/files/md5 1.5 +1346 -1064ports/devel/gnustep/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 4:12:36 2000 Delivered-To: cvs-all@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 4FD1537B42C; Wed, 23 Aug 2000 04:12:31 -0700 (PDT) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id <aa19982@salmon>; 23 Aug 2000 12:12:30 +0100 (BST) Date: Wed, 23 Aug 2000 12:12:28 +0100 From: David Malone <dwmalone@maths.tcd.ie> To: Poul-Henning Kamp <phk@critter.freebsd.dk> Cc: obrien@FreeBSD.org, Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Josef Karthauser <joe@pavilion.net>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, iedowse@maths.tcd.ie Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000823121228.A79079@walton.maths.tcd.ie> References: <20000822161835.B807@dragon.nuxi.com> <1706.967014939@critter> <20000823081920.A75608@walton.maths.tcd.ie> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000823081920.A75608@walton.maths.tcd.ie>; from dwmalone@maths.tcd.ie on Wed, Aug 23, 2000 at 08:19:20AM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 08:19:20AM +0100, David Malone wrote: > I think Ian Dowse may have patches which takes the commit logs and > produces HTML with links. I'll see if I can track it down. Here's what Ian was working on - it's not that polished, but could be useful: http://www.maths.tcd.ie/common-cgi/cltest.pl David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 4:41: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E283537B43E; Wed, 23 Aug 2000 04:41:01 -0700 (PDT) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA87303; Wed, 23 Aug 2000 04:41:01 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200008231141.EAA87303@freefall.freebsd.org> From: Brian Feldman <green@FreeBSD.org> Date: Wed, 23 Aug 2000 04:41:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/lib/libcrypto Makefile Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/08/23 04:41:01 PDT Modified files: secure/lib/libcrypto Makefile Makefile.inc Log: Generate a new evp.h at build-time instead of install-time to properly support NFS(ro) installworlds. Revision Changes Path 1.22 +3 -5 src/secure/lib/libcrypto/Makefile 1.16 +6 -3 src/secure/lib/libcrypto/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 4:54:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A93837B42C; Wed, 23 Aug 2000 04:54:11 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA88816; Wed, 23 Aug 2000 04:54:11 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200008231154.EAA88816@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> Date: Wed, 23 Aug 2000 04:54:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libutil login_crypt.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/08/23 04:54:10 PDT Modified files: lib/libutil login_crypt.c Log: Add weak symbol pragma for crypt_set_format(). Approved by: green Revision Changes Path 1.2 +7 -1 src/lib/libutil/login_crypt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 4:56:30 2000 Delivered-To: cvs-all@freebsd.org Received: from lists01.iafrica.com (lists01.iafrica.com [196.7.0.141]) by hub.freebsd.org (Postfix) with ESMTP id 37F6237B43C; Wed, 23 Aug 2000 04:56:23 -0700 (PDT) Received: from nwl.fw.uunet.co.za ([196.31.2.162]) by lists01.iafrica.com with esmtp (Exim 3.12 #2) id 13RZ8m-0005bD-00; Wed, 23 Aug 2000 13:56:20 +0200 Received: (from nobody@localhost) by nwl.fw.uunet.co.za (8.8.8/8.6.9) id NAA04391; Wed, 23 Aug 2000 13:56:19 +0200 (SAST) Received: by nwl.fw.uunet.co.za via recvmail id 4182; Wed Aug 23 13:55:41 2000 Received: from grimreaper.grondar.za (mark@localhost [127.0.0.1]) by grimreaper.grondar.za (8.11.0/8.11.0) with ESMTP id e7NBuWr11030; Wed, 23 Aug 2000 13:56:32 +0200 (SAST) (envelope-from mark@grimreaper.grondar.za) Message-Id: <200008231156.e7NBuWr11030@grimreaper.grondar.za> To: Mike Smith <msmith@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files CVSROOT/Emptydir/mly mly.c mly_cam.c mly_pci.c mly_tables.h mlyreg.h mlyvar.h src/sys/modules Makefile src/sys/modules/mly Makefile References: <200008230344.UAA23893@mass.osd.bsdi.com> In-Reply-To: <200008230344.UAA23893@mass.osd.bsdi.com> ; from Mike Smith <msmith@FreeBSD.org> "Tue, 22 Aug 2000 20:44:41 MST." Date: Wed, 23 Aug 2000 13:56:32 +0200 From: Mark Murray <mark@grondar.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Added files: > > Emptydir/mly mly.c mly_cam.c mly_pci.c mly_tables.h > > mlyreg.h mlyvar.h > > ARGH! This wasn't what was meant to happen. 8( > > Can I have a repo-copy of this to sys/dev/mly? Mike, has this been done? M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 5: 0: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.ninth-circle.org (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id D865A37B422; Wed, 23 Aug 2000 04:59:54 -0700 (PDT) Received: (from asmodai@localhost) by lucifer.ninth-circle.org (8.9.3/8.9.3) id NAA82238; Wed, 23 Aug 2000 13:59:44 +0200 (CEST) (envelope-from asmodai) Date: Wed, 23 Aug 2000 13:59:44 +0200 From: Jeroen Ruigrok van der Werven <jruigrok@via-net-works.nl> To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libutil login_crypt.c Message-ID: <20000823135944.T78405@lucifer.bart.nl> References: <200008231154.EAA88816@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008231154.EAA88816@freefall.freebsd.org>; from asmodai@FreeBSD.org on Wed, Aug 23, 2000 at 04:54:10AM -0700 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20000823 13:55], Jeroen Ruigrok van der Werven (asmodai@FreeBSD.org) wrote: > Modified files: > lib/libutil login_crypt.c > Log: > Add weak symbol pragma for crypt_set_format(). The fix was made by green, I tested it through a make world which bombed on the earlier errors reported. Brian asked me to commit the fix if it turned out to fix my world breakage. Hence the approved. -- Jeroen Ruigrok van der Werven Network- and systemadministrator <jruigrok@via-net-works.nl> VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl To do injustice is more disgraceful than to suffer it... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 5:33:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F7EF37B43C; Wed, 23 Aug 2000 05:33:18 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA93603; Wed, 23 Aug 2000 05:33:18 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200008231233.FAA93603@freefall.freebsd.org> From: "Chris D. Faulhaber" <jedgar@FreeBSD.org> Date: Wed, 23 Aug 2000 05:33:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/rcalc Makefile ports/math/rcalc/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/08/23 05:33:18 PDT Modified files: math/rcalc Makefile math/rcalc/files md5 Log: - Update port to 0.2.2 - Change LIB_DEPENDS from gnomelibs to gnomecore Submitted by: Gary Benson <garyb@ee.bath.ac.uk> Revision Changes Path 1.6 +3 -3 ports/math/rcalc/Makefile 1.3 +1 -1 ports/math/rcalc/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 5:51:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0972237B423; Wed, 23 Aug 2000 05:51:34 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA95547; Wed, 23 Aug 2000 05:51:34 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008231251.FAA95547@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Wed, 23 Aug 2000 05:51:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/Mesa3 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/23 05:51:33 PDT Modified files: graphics/Mesa3 Makefile Log: Take over maintainership. Submitted by: jseger (previous maintainer) Revision Changes Path 1.40 +2 -2 ports/graphics/Mesa3/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 7: 4:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 62EF837B423; Wed, 23 Aug 2000 07:04:16 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA67269; Wed, 23 Aug 2000 07:04:16 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008231404.HAA67269@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Wed, 23 Aug 2000 07:04:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/udmsearch Makefile ports/www/udmsearch/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/23 07:04:16 PDT Modified files: www/udmsearch Makefile www/udmsearch/files md5 Log: Update to version 3.0.21 PR: 20801 Submitted by: MAINTAINER Revision Changes Path 1.9 +3 -2 ports/www/udmsearch/Makefile 1.7 +1 -1 ports/www/udmsearch/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 7:32:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 87B4D37B422; Wed, 23 Aug 2000 07:32:26 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA72529; Wed, 23 Aug 2000 07:32:26 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008231432.HAA72529@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Wed, 23 Aug 2000 07:32:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/qico Makefile ports/comms/qico/files md5 ports/comms/qico/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah ports/comms/qico/pkg PLIST DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/23 07:32:26 PDT Modified files: comms/qico Makefile comms/qico/files md5 comms/qico/patches patch-aa patch-ab patch-ac patch-ad comms/qico/pkg PLIST DESCR Removed files: comms/qico/patches patch-ae patch-af patch-ag patch-ah Log: Update to version 0.46.2 PR: 20739 Submitted by: MAINTAINER Revision Changes Path 1.2 +5 -7 ports/comms/qico/Makefile 1.2 +1 -1 ports/comms/qico/files/md5 1.2 +15 -21 ports/comms/qico/patches/patch-aa 1.2 +2 -2 ports/comms/qico/patches/patch-ab 1.2 +3 -12 ports/comms/qico/patches/patch-ac 1.2 +27 -18 ports/comms/qico/patches/patch-ad 1.2 +1 -1 ports/comms/qico/pkg/PLIST 1.2 +0 -2 ports/comms/qico/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 8:11:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 09EDC37B422; Wed, 23 Aug 2000 08:11:29 -0700 (PDT) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA79781; Wed, 23 Aug 2000 08:11:29 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Message-Id: <200008231511.IAA79781@freefall.freebsd.org> From: Neil Blakey-Milner <nbm@FreeBSD.org> Date: Wed, 23 Aug 2000 08:11:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/pdmenu Makefile ports/misc/pdmenu/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nbm 2000/08/23 08:11:24 PDT Modified files: misc/pdmenu Makefile misc/pdmenu/files md5 Log: Upgrade to pdmenu 1.2.64. This version apparently fixes the situation whereby when pdmenu loses it's tty, it runs away with the CPU. Many thanks to Joey Hess (the author) for his quick response. Revision Changes Path 1.9 +2 -2 ports/misc/pdmenu/Makefile 1.7 +1 -1 ports/misc/pdmenu/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 9: 5:44 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id BE6BC37B42C; Wed, 23 Aug 2000 09:05:34 -0700 (PDT) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id KAA06459; Wed, 23 Aug 2000 10:05:25 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id KAA11402; Wed, 23 Aug 2000 10:04:00 -0600 (MDT) (envelope-from nate) Date: Wed, 23 Aug 2000 10:04:00 -0600 (MDT) Message-Id: <200008231604.KAA11402@nomad.yogotech.com> From: Nate Williams <nate@yogotech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Josef Karthauser <joe@pavilion.net> Cc: "David O'Brien" <obrien@FreeBSD.org>, Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-Reply-To: <20000823091714.D650@pavilion.net> References: <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > >I am *UTTERLY* against putting cvsweb links in the commit mail. We have been > > > >through this many times before. > > > I have to second Peter here. > > > > And I and many are strongly for it. It certainly would help us to UTSL > > and not make stupid replies to commit messages because the source hasn't > > made it locally yet and thus people haven't read the diffs. > > > > Or would you prefer I CVSup every 10 minutes to match the rate I suck > > mail from hub.freebsd.org? > > I'm building the ability to add these (and other local hacks) in. We > can than argue about whether it gets switched on later. :) > > The per-commit id is also going in. Question is what kind of format > if should be. It could be an integer counter, or a YYYYMMDD-CID (commit > id) type. Preferences? The latter, unless you've figured out a way to have the counter updated on a per-branch basis. (Counters should only be incremented when a file on that branch is touched, else keeping track of the 'state' of the tree is too difficult.) Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 9:38:32 2000 Delivered-To: cvs-all@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id C070937B424; Wed, 23 Aug 2000 09:38:28 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e7NGaQf09291; Wed, 23 Aug 2000 09:36:26 -0700 (PDT) Date: Wed, 23 Aug 2000 09:36:26 -0700 From: Alfred Perlstein <bright@wintelcom.net> To: Poul-Henning Kamp <phk@critter.freebsd.dk> Cc: obrien@FreeBSD.org, Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Josef Karthauser <joe@pavilion.net>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000823093626.Z4854@fw.wintelcom.net> References: <20000822161835.B807@dragon.nuxi.com> <1706.967014939@critter> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <1706.967014939@critter>; from phk@critter.freebsd.dk on Wed, Aug 23, 2000 at 09:15:39AM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Poul-Henning Kamp <phk@critter.freebsd.dk> [000823 00:15] wrote: > In message <20000822161835.B807@dragon.nuxi.com>, "David O'Brien" writes: > >On Sat, Aug 19, 2000 at 12:48:24PM +0200, Jeroen Ruigrok van der Werven wrote: > >> >I am *UTTERLY* against putting cvsweb links in the commit mail. We have been > >> >through this many times before. > >> I have to second Peter here. > > > >And I and many are strongly for it. It certainly would help us to UTSL > >and not make stupid replies to commit messages because the source hasn't > >made it locally yet and thus people haven't read the diffs. > > > >Or would you prefer I CVSup every 10 minutes to match the rate I suck > >mail from hub.freebsd.org? > > Ok, I think the sensible compromise is this: > > Somebody hack the CVSROOT scripts to generate a HTML file > for each commit containing the links into cvsweb to > show the diffs. Put a single link to this HTML file > into the commit email. > > All further discussion is of course futile if nobody actually *does* > this bit of work. Actually all the people complaining should just collaborate to create script to pipe the commit messages through in procmail to append the html links for themselves. :) -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 9:40:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B65737B422; Wed, 23 Aug 2000 09:40:35 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA96036; Wed, 23 Aug 2000 09:40:35 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Message-Id: <200008231640.JAA96036@freefall.freebsd.org> From: Bruce Mah <bmah@FreeBSD.org> Date: Wed, 23 Aug 2000 09:40:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/i386 RELNOTES.TXT src/release/texts/alpha RELNOTES.TXT X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bmah 2000/08/23 09:40:34 PDT Modified files: release/texts/i386 RELNOTES.TXT release/texts/alpha RELNOTES.TXT Log: Make the following additional entries to RELNOTES.TXT files: alpha: tap driver, accept_filters, ata support for ATA100, routed update to 2.22, truncate(1), syslogd(8) -n option, kenv(1), periodic(8) controlled by periodic.conf, logger(1) support for remote syslogs. i386: tap driver, accept_filters, ata support for ATA100, routed update to 2.22, truncate(1), syslogd(8) -n option, kenv(1), periodic(8) controlled by periodic.conf, boot98cfg(8), logger(1) support for remote syslogs. PR: 20628 Submitted by: bmah@cisco.com (Bruce A. Mah) Reviewed by: nik Revision Changes Path 1.94 +29 -0 src/release/texts/i386/RELNOTES.TXT 1.48 +26 -0 src/release/texts/alpha/RELNOTES.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 9:49:24 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id B721337B43C; Wed, 23 Aug 2000 09:49:15 -0700 (PDT) Received: from billy-club.village.org (billy-club.village.org [10.0.0.3]) by rover.village.org (8.9.3/8.9.3) with ESMTP id KAA65818; Wed, 23 Aug 2000 10:49:13 -0600 (MDT) (envelope-from imp@billy-club.village.org) Received: from billy-club.village.org (localhost.village.org [127.0.0.1]) by billy-club.village.org (8.9.3/8.8.3) with ESMTP id KAA02382; Wed, 23 Aug 2000 10:48:19 -0600 (MDT) Message-Id: <200008231648.KAA02382@billy-club.village.org> To: nate@yogotech.com (Nate Williams) Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Cc: Josef Karthauser <joe@pavilion.net>, "David O'Brien" <obrien@FreeBSD.org>, Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Doug Barton <DougB@gorean.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Wed, 23 Aug 2000 10:04:00 MDT." <200008231604.KAA11402@nomad.yogotech.com> References: <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> Date: Wed, 23 Aug 2000 10:48:19 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG : > The per-commit id is also going in. Question is what kind of format : > if should be. It could be an integer counter, or a YYYYMMDD-CID (commit : > id) type. Preferences? : : The latter, unless you've figured out a way to have the counter updated : on a per-branch basis. (Counters should only be incremented when a file : on that branch is touched, else keeping track of the 'state' of the tree : is too difficult.) Actually, having a strict incremental counter is fine, even with branching. If I make a commit to branch X that is number 100, an then 20 commits happen on the main line, and than I make another commit on branch X (now commit number 121) branch X happens to be the same for numbers 100-120, but I don't see that being a big deal. I don't think we need per branch counters and they would just confuse things. But then again, I've used perforce and like their change number for a good "rough" incremental "tag". Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 9:52:29 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 9FD1137B42C; Wed, 23 Aug 2000 09:52:21 -0700 (PDT) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id KAA07264; Wed, 23 Aug 2000 10:52:16 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id KAA12190; Wed, 23 Aug 2000 10:51:00 -0600 (MDT) (envelope-from nate) Date: Wed, 23 Aug 2000 10:51:00 -0600 (MDT) Message-Id: <200008231651.KAA12190@nomad.yogotech.com> From: Nate Williams <nate@yogotech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Warner Losh <imp@village.org> Cc: nate@yogotech.com (Nate Williams), Josef Karthauser <joe@pavilion.net>, "David O'Brien" <obrien@FreeBSD.org>, Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Doug Barton <DougB@gorean.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-Reply-To: <200008231648.KAA02382@billy-club.village.org> References: <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > : > The per-commit id is also going in. Question is what kind of format > : > if should be. It could be an integer counter, or a YYYYMMDD-CID (commit > : > id) type. Preferences? > : > : The latter, unless you've figured out a way to have the counter updated > : on a per-branch basis. (Counters should only be incremented when a file > : on that branch is touched, else keeping track of the 'state' of the tree > : is too difficult.) > > Actually, having a strict incremental counter is fine, even with > branching. If I make a commit to branch X that is number 100, an then > 20 commits happen on the main line, and than I make another commit on > branch X (now commit number 121) branch X happens to be the same for > numbers 100-120, but I don't see that being a big deal. Unfortunately, it makes it difficult to know how many 'changes' have gone on since you last updated. Plus, you don't necessarily know *which* change you are on when you CVSup the tree, since the counter is not kept as part of the repository. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10: 3:13 2000 Delivered-To: cvs-all@freebsd.org Received: from genius.systems.pavilion.net (genius.systems.pavilion.net [212.74.1.100]) by hub.freebsd.org (Postfix) with ESMTP id AB79037B423; Wed, 23 Aug 2000 10:03:09 -0700 (PDT) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id 0FF979B2D; Wed, 23 Aug 2000 18:03:09 +0100 (BST) Date: Wed, 23 Aug 2000 18:03:09 +0100 From: Josef Karthauser <joe@pavilion.net> To: Nate Williams <nate@yogotech.com> Cc: Warner Losh <imp@village.org>, David O'Brien <obrien@FREEBSD.ORG>, Jeroen Ruigrok van der Werven <asmodai@FREEBSD.ORG>, Peter Wemm <peter@netplex.com.au>, Doug Barton <DougB@gorean.org>, Ade Lovett <ade@FREEBSD.ORG>, Jonathan Lemon <jlemon@FREEBSD.ORG>, cvs-committers@FREEBSD.ORG, cvs-all@FREEBSD.ORG Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000823180308.C12911@pavilion.net> References: <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231651.KAA12190@nomad.yogotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008231651.KAA12190@nomad.yogotech.com>; from nate@yogotech.com on Wed, Aug 23, 2000 at 10:51:00AM -0600 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 10:51:00AM -0600, Nate Williams wrote: > > > Actually, having a strict incremental counter is fine, even with > > branching. If I make a commit to branch X that is number 100, an then > > 20 commits happen on the main line, and than I make another commit on > > branch X (now commit number 121) branch X happens to be the same for > > numbers 100-120, but I don't see that being a big deal. > It's probably easier, and less error prone, to have a single counter. Maintaining one per branch is a pain - considering how many branches there are, including different vendor branches. > Unfortunately, it makes it difficult to know how many 'changes' have > gone on since you last updated. Plus, you don't necessarily know > *which* change you are on when you CVSup the tree, since the counter is > not kept as part of the repository. Although it should be a file in CVSROOT, and so will probably turn up with a cvsup of the repository. Joe -- Josef Karthauser FreeBSD: How many times have you booted today? Technical Manager Viagra for your server (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@uk.freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10: 5: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 3430137B423; Wed, 23 Aug 2000 10:05:00 -0700 (PDT) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id LAA07470; Wed, 23 Aug 2000 11:04:55 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id LAA12281; Wed, 23 Aug 2000 11:03:39 -0600 (MDT) (envelope-from nate) Date: Wed, 23 Aug 2000 11:03:39 -0600 (MDT) Message-Id: <200008231703.LAA12281@nomad.yogotech.com> From: Nate Williams <nate@yogotech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Josef Karthauser <joe@pavilion.net> Cc: Nate Williams <nate@yogotech.com>, Warner Losh <imp@village.org>, "David O'Brien" <obrien@FREEBSD.ORG>, Jeroen Ruigrok van der Werven <asmodai@FREEBSD.ORG>, Peter Wemm <peter@netplex.com.au>, Doug Barton <DougB@gorean.org>, Ade Lovett <ade@FREEBSD.ORG>, Jonathan Lemon <jlemon@FREEBSD.ORG>, cvs-committers@FREEBSD.ORG, cvs-all@FREEBSD.ORG Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-Reply-To: <20000823180308.C12911@pavilion.net> References: <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231651.KAA12190@nomad.yogotech.com> <20000823180308.C12911@pavilion.net> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > Actually, having a strict incremental counter is fine, even with > > > branching. If I make a commit to branch X that is number 100, an then > > > 20 commits happen on the main line, and than I make another commit on > > > branch X (now commit number 121) branch X happens to be the same for > > > numbers 100-120, but I don't see that being a big deal. > > > > It's probably easier, and less error prone, to have a single counter. > Maintaining one per branch is a pain - considering how many branches > there are, including different vendor branches. > > > Unfortunately, it makes it difficult to know how many 'changes' have > > gone on since you last updated. Plus, you don't necessarily know > > *which* change you are on when you CVSup the tree, since the counter is > > not kept as part of the repository. > > Although it should be a file in CVSROOT, and so will probably turn > up with a cvsup of the repository. Obviously not under CVS control right? You may need to talk with John Polstra about having a file that's constantly changing that is not under CVS control, to make sure CVSup will 'Do The Right Thing'. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10: 5:57 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 70A2437B42C; Wed, 23 Aug 2000 10:05:53 -0700 (PDT) Received: from billy-club.village.org (billy-club.village.org [10.0.0.3]) by rover.village.org (8.9.3/8.9.3) with ESMTP id LAA65925; Wed, 23 Aug 2000 11:05:52 -0600 (MDT) (envelope-from imp@billy-club.village.org) Received: from billy-club.village.org (localhost.village.org [127.0.0.1]) by billy-club.village.org (8.9.3/8.8.3) with ESMTP id LAA02617; Wed, 23 Aug 2000 11:04:58 -0600 (MDT) Message-Id: <200008231704.LAA02617@billy-club.village.org> To: nate@yogotech.com (Nate Williams) Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Wed, 23 Aug 2000 10:51:00 MDT." <200008231651.KAA12190@nomad.yogotech.com> References: <200008231651.KAA12190@nomad.yogotech.com> <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> Date: Wed, 23 Aug 2000 11:04:58 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200008231651.KAA12190@nomad.yogotech.com> Nate Williams writes: : Unfortunately, it makes it difficult to know how many 'changes' have : gone on since you last updated. Plus, you don't necessarily know : *which* change you are on when you CVSup the tree, since the counter is : not kept as part of the repository. Both true. And both problems today. We won't have the TOPS-20 version numbering where you'd have numbers like 5.0(123) 5.1(345) 5.2(9534) 6.0(23) Also, I don't see a functional difference between DATE-NUMBER and just NUMBER, especially since it isn't in the CVS tree. However, a GMT date down to the second as a change number id, then that would make checking out from CVS to that point possible. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10: 8:22 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id A59AD37B422; Wed, 23 Aug 2000 10:08:15 -0700 (PDT) Received: from billy-club.village.org (billy-club.village.org [10.0.0.3]) by rover.village.org (8.9.3/8.9.3) with ESMTP id LAA65934; Wed, 23 Aug 2000 11:08:14 -0600 (MDT) (envelope-from imp@billy-club.village.org) Received: from billy-club.village.org (localhost.village.org [127.0.0.1]) by billy-club.village.org (8.9.3/8.8.3) with ESMTP id LAA02664; Wed, 23 Aug 2000 11:07:21 -0600 (MDT) Message-Id: <200008231707.LAA02664@billy-club.village.org> To: nate@yogotech.com (Nate Williams) Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Cc: cvs-committers@FREEBSD.ORG, cvs-all@FREEBSD.ORG In-reply-to: Your message of "Wed, 23 Aug 2000 11:03:39 MDT." <200008231703.LAA12281@nomad.yogotech.com> References: <200008231703.LAA12281@nomad.yogotech.com> <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231651.KAA12190@nomad.yogotech.com> <20000823180308.C12911@pavilion.net> Date: Wed, 23 Aug 2000 11:07:21 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200008231703.LAA12281@nomad.yogotech.com> Nate Williams writes: : > Although it should be a file in CVSROOT, and so will probably turn : > up with a cvsup of the repository. : : Obviously not under CVS control right? You may need to talk with John : Polstra about having a file that's constantly changing that is not under : CVS control, to make sure CVSup will 'Do The Right Thing'. That's why I'd like to see a single date based on the time down to the second. That way we have a tag people can easily get at w/o needing to do anything to the repot, except maybe have a file that gets splatted with this each commit (but not under CVS control because the history here is uninteresting). Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10: 8:51 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id B977B37B43F; Wed, 23 Aug 2000 10:08:27 -0700 (PDT) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id LAA07555; Wed, 23 Aug 2000 11:08:26 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id LAA12343; Wed, 23 Aug 2000 11:07:05 -0600 (MDT) (envelope-from nate) Date: Wed, 23 Aug 2000 11:07:05 -0600 (MDT) Message-Id: <200008231707.LAA12343@nomad.yogotech.com> From: Nate Williams <nate@yogotech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Warner Losh <imp@village.org> Cc: nate@yogotech.com (Nate Williams), cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-Reply-To: <200008231704.LAA02617@billy-club.village.org> References: <200008231651.KAA12190@nomad.yogotech.com> <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231704.LAA02617@billy-club.village.org> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Both true. And both problems today. We won't have the TOPS-20 > version numbering where you'd have numbers like > 5.0(123) > 5.1(345) > 5.2(9534) > 6.0(23) > > Also, I don't see a functional difference between DATE-NUMBER and just > NUMBER, especially since it isn't in the CVS tree. However, a GMT > date down to the second as a change number id, then that would make > checking out from CVS to that point possible. That would be cool. Actually, a GMT date would be adequate for me, instead of using a number, since that makes things really easy from a CVS point of view. I'd actually prefer that to a number, for the reasons mentioned. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:10:35 2000 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id A754437B43E; Wed, 23 Aug 2000 10:10:27 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.awfulhak.org [172.16.0.12]) by Awfulhak.org (8.9.3/8.9.3) with ESMTP id RAA82605; Wed, 23 Aug 2000 17:57:52 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.0/8.11.0) with ESMTP id e7NGvM479176; Wed, 23 Aug 2000 17:57:22 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200008231657.e7NGvM479176@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: John Baldwin <jhb@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@awfulhak.org Subject: Re: cvs commit: src/lib/libc/net rcmd.3 In-Reply-To: Message from John Baldwin <jhb@FreeBSD.org> of "Tue, 22 Aug 2000 14:50:04 PDT." <200008222150.OAA69708@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 23 Aug 2000 17:57:22 +0100 From: Brian Somers <brian@Awfulhak.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > jhb 2000/08/22 14:50:04 PDT > > Modified files: > lib/libc/net rcmd.3 > Log: > The API change mentioned in the previous revision has been backed out, so > back out the corresponding documentation. > > Noticed by: brian, ume > > Revision Changes Path > 1.16 +1 -6 src/lib/libc/net/rcmd.3 Thanks. -- Brian <brian@Awfulhak.org> <brian@[uk.]FreeBSD.org> <http://www.Awfulhak.org> <brian@[uk.]OpenBSD.org> Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:10:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 71A0C37B440; Wed, 23 Aug 2000 10:10:35 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA03473; Wed, 23 Aug 2000 10:10:35 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Message-Id: <200008231710.KAA03473@freefall.freebsd.org> From: Bruce Mah <bmah@FreeBSD.org> Date: Wed, 23 Aug 2000 10:10:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pkg_install/version pkg_version.pl pkg_version.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bmah 2000/08/23 10:10:35 PDT Modified files: usr.sbin/pkg_install/version pkg_version.pl pkg_version.1 Log: Update my email address in various places in pkg_version. Revision Changes Path 1.6 +2 -2 src/usr.sbin/pkg_install/version/pkg_version.pl 1.6 +2 -2 src/usr.sbin/pkg_install/version/pkg_version.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:12:31 2000 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id B9E0537B422; Wed, 23 Aug 2000 10:12:22 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.awfulhak.org [172.16.0.12]) by Awfulhak.org (8.9.3/8.9.3) with ESMTP id SAA86066; Wed, 23 Aug 2000 18:01:20 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.0/8.11.0) with ESMTP id e7NH0o479214; Wed, 23 Aug 2000 18:00:50 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200008231700.e7NH0o479214@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: obrien@FreeBSD.org Cc: Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Josef Karthauser <joe@pavilion.net>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@awfulhak.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-Reply-To: Message from "David O'Brien" <obrien@FreeBSD.org> of "Tue, 22 Aug 2000 16:18:35 PDT." <20000822161835.B807@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 23 Aug 2000 18:00:50 +0100 From: Brian Somers <brian@Awfulhak.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On Sat, Aug 19, 2000 at 12:48:24PM +0200, Jeroen Ruigrok van der Werven wrote: > > >I am *UTTERLY* against putting cvsweb links in the commit mail. We have been > > >through this many times before. > > I have to second Peter here. > > And I and many are strongly for it. It certainly would help us to UTSL > and not make stupid replies to commit messages because the source hasn't > made it locally yet and thus people haven't read the diffs. I agree. I'm a victim (?) of making stupid comments recently based on commit messages rather than source diffs. > -- > -- David (obrien@FreeBSD.org) -- Brian <brian@Awfulhak.org> <brian@[uk.]FreeBSD.org> <http://www.Awfulhak.org> <brian@[uk.]OpenBSD.org> Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:25:43 2000 Delivered-To: cvs-all@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 9CDF637B42C; Wed, 23 Aug 2000 10:25:36 -0700 (PDT) Received: from strontium.scientia.demon.co.uk ([192.168.91.36] ident=root) by scientia.demon.co.uk with esmtp (Exim 3.16 #1) id 13ReHO-000IRV-00; Wed, 23 Aug 2000 18:25:34 +0100 Received: (from ben@localhost) by strontium.scientia.demon.co.uk (8.9.3/8.9.3) id SAA78409; Wed, 23 Aug 2000 18:25:34 +0100 (BST) (envelope-from ben) Date: Wed, 23 Aug 2000 18:25:34 +0100 From: Ben Smithurst <ben@FreeBSD.org> To: Brian Somers <brian@Awfulhak.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000823182534.L20036@strontium.scientia.demon.co.uk> References: <obrien@FreeBSD.org> <200008231700.e7NH0o479214@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008231700.e7NH0o479214@hak.lan.Awfulhak.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Brian Somers wrote: > I agree. I'm a victim (?) of making stupid comments recently based > on commit messages rather than source diffs. Install the new cvsmail port. ok, it doesn't quite exist yet, but it will soon, once I've worked out what addport is all about. There's a free sneak preview in freefall:~ben/work/cvsmail, you can't say fairer than that! :-) -- Ben Smithurst / ben@FreeBSD.org / PGP: 0x99392F7D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:29:33 2000 Delivered-To: cvs-all@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 1F98B37B422; Wed, 23 Aug 2000 10:29:27 -0700 (PDT) Received: from [212.238.54.101] (helo=freebie.demon.nl) by post.mail.nl.demon.net with smtp (Exim 3.14 #2) id 13ReL7-0001Jp-00; Wed, 23 Aug 2000 17:29:25 +0000 Received: (from wkb@localhost) by freebie.demon.nl (8.9.3/8.9.3) id IAA75208; Wed, 23 Aug 2000 08:27:11 +0200 (CEST) (envelope-from wkb) Date: Wed, 23 Aug 2000 08:27:10 +0200 From: Wilko Bulte <wkb@freebie.demon.nl> To: "David O'Brien" <obrien@freebsd.org> Cc: Jeroen Ruigrok van der Werven <asmodai@freebsd.org>, Peter Wemm <peter@netplex.com.au>, Josef Karthauser <joe@pavilion.net>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@freebsd.org>, Jonathan Lemon <jlemon@freebsd.org>, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000823082710.A74586@freebie.demon.nl> References: <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000822161835.B807@dragon.nuxi.com>; from obrien@freebsd.org on Tue, Aug 22, 2000 at 04:18:35PM -0700 X-OS: FreeBSD 4.1-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Aug 22, 2000 at 04:18:35PM -0700, David O'Brien wrote: > On Sat, Aug 19, 2000 at 12:48:24PM +0200, Jeroen Ruigrok van der Werven wrote: > > >I am *UTTERLY* against putting cvsweb links in the commit mail. We have been > > >through this many times before. > > I have to second Peter here. > > And I and many are strongly for it. It certainly would help us to UTSL > and not make stupid replies to commit messages because the source hasn't > made it locally yet and thus people haven't read the diffs. > > Or would you prefer I CVSup every 10 minutes to match the rate I suck > mail from hub.freebsd.org? Looks to me it is about time to allow people to select what part and what form of commit messages they want to receive. I don't know how that part of the infrastructure works but it does not sound impossible to me. -- Wilko Bulte wilko@freebsd.org Arnhem, the Netherlands To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:30:20 2000 Delivered-To: cvs-all@freebsd.org Received: from genius.systems.pavilion.net (genius.systems.pavilion.net [212.74.1.100]) by hub.freebsd.org (Postfix) with ESMTP id E0D5337B43F; Wed, 23 Aug 2000 10:30:09 -0700 (PDT) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id 1BAE89B2D; Wed, 23 Aug 2000 18:30:09 +0100 (BST) Date: Wed, 23 Aug 2000 18:30:09 +0100 From: Josef Karthauser <joe@pavilion.net> To: Nate Williams <nate@yogotech.com> Cc: Warner Losh <imp@village.org>, David O'Brien <obrien@FREEBSD.ORG>, Jeroen Ruigrok van der Werven <asmodai@FREEBSD.ORG>, Peter Wemm <peter@netplex.com.au>, Doug Barton <DougB@gorean.org>, Ade Lovett <ade@FREEBSD.ORG>, Jonathan Lemon <jlemon@FREEBSD.ORG>, cvs-committers@FREEBSD.ORG, cvs-all@FREEBSD.ORG Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000823183009.E12911@pavilion.net> References: <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231651.KAA12190@nomad.yogotech.com> <20000823180308.C12911@pavilion.net> <200008231703.LAA12281@nomad.yogotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008231703.LAA12281@nomad.yogotech.com>; from nate@yogotech.com on Wed, Aug 23, 2000 at 11:03:39AM -0600 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 11:03:39AM -0600, Nate Williams wrote: > > > > Although it should be a file in CVSROOT, and so will probably turn > > up with a cvsup of the repository. > > Obviously not under CVS control right? You may need to talk with John > Polstra about having a file that's constantly changing that is not under > CVS control, to make sure CVSup will 'Do The Right Thing'. > Of course not :) :) I'd imagine that it would get handled in the same way as any of the prechecked out files in CVSROOT/. (history.README for instance :) Joe -- Josef Karthauser FreeBSD: How many times have you booted today? Technical Manager Viagra for your server (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@uk.freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:32:40 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 7CA2837B424; Wed, 23 Aug 2000 10:32:32 -0700 (PDT) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id LAA08002; Wed, 23 Aug 2000 11:32:24 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id LAA12980; Wed, 23 Aug 2000 11:31:07 -0600 (MDT) (envelope-from nate) Date: Wed, 23 Aug 2000 11:31:07 -0600 (MDT) Message-Id: <200008231731.LAA12980@nomad.yogotech.com> From: Nate Williams <nate@yogotech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Josef Karthauser <joe@pavilion.net> Cc: Nate Williams <nate@yogotech.com>, Warner Losh <imp@village.org>, "David O'Brien" <obrien@FREEBSD.ORG>, Jeroen Ruigrok van der Werven <asmodai@FREEBSD.ORG>, Peter Wemm <peter@netplex.com.au>, Doug Barton <DougB@gorean.org>, Ade Lovett <ade@FREEBSD.ORG>, Jonathan Lemon <jlemon@FREEBSD.ORG>, cvs-committers@FREEBSD.ORG, cvs-all@FREEBSD.ORG Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-Reply-To: <20000823183009.E12911@pavilion.net> References: <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231651.KAA12190@nomad.yogotech.com> <20000823180308.C12911@pavilion.net> <200008231703.LAA12281@nomad.yogotech.com> <20000823183009.E12911@pavilion.net> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > Although it should be a file in CVSROOT, and so will probably turn > > > up with a cvsup of the repository. > > > > Obviously not under CVS control right? You may need to talk with John > > Polstra about having a file that's constantly changing that is not under > > CVS control, to make sure CVSup will 'Do The Right Thing'. > > Of course not :) :) I'd imagine that it would get handled in the same > way as any of the prechecked out files in CVSROOT/. (history.README > for instance :) Possibly, but there may be an optimization that could be done that John would know about. I know that some of the files are handled 'special' via CVSup configurations, which optimizes how they are updated. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:42:44 2000 Delivered-To: cvs-all@freebsd.org Received: from genius.systems.pavilion.net (genius.systems.pavilion.net [212.74.1.100]) by hub.freebsd.org (Postfix) with ESMTP id E038337B422; Wed, 23 Aug 2000 10:42:40 -0700 (PDT) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id 40EDF9B2D; Wed, 23 Aug 2000 18:42:40 +0100 (BST) Date: Wed, 23 Aug 2000 18:42:40 +0100 From: Josef Karthauser <joe@pavilion.net> To: Nate Williams <nate@yogotech.com> Cc: Warner Losh <imp@village.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000823184240.B13773@pavilion.net> References: <200008231651.KAA12190@nomad.yogotech.com> <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231704.LAA02617@billy-club.village.org> <200008231707.LAA12343@nomad.yogotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008231707.LAA12343@nomad.yogotech.com>; from nate@yogotech.com on Wed, Aug 23, 2000 at 11:07:05AM -0600 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 11:07:05AM -0600, Nate Williams wrote: > > Both true. And both problems today. We won't have the TOPS-20 > > version numbering where you'd have numbers like > > 5.0(123) > > 5.1(345) > > 5.2(9534) > > 6.0(23) > > > > Also, I don't see a functional difference between DATE-NUMBER and just > > NUMBER, especially since it isn't in the CVS tree. However, a GMT > > date down to the second as a change number id, then that would make > > checking out from CVS to that point possible. > > That would be cool. Actually, a GMT date would be adequate for me, > instead of using a number, since that makes things really easy from a > CVS point of view. I'd actually prefer that to a number, for the > reasons mentioned. If we had an incrementing number we need locking and a counter file. If we have "utime/user" we probably don't. Utime (by which I mean any format with a resolution of a second) on it's own probably isn't sufficient without a lock and a sub increment counter (although a byte from /dev/urandom may work..... only joking! :) Joe -- Josef Karthauser FreeBSD: How many times have you booted today? Technical Manager Viagra for your server (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@uk.freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:44:42 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id D30CB37B424; Wed, 23 Aug 2000 10:44:38 -0700 (PDT) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id LAA08213; Wed, 23 Aug 2000 11:44:34 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id LAA13050; Wed, 23 Aug 2000 11:43:14 -0600 (MDT) (envelope-from nate) Date: Wed, 23 Aug 2000 11:43:14 -0600 (MDT) Message-Id: <200008231743.LAA13050@nomad.yogotech.com> From: Nate Williams <nate@yogotech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Josef Karthauser <joe@pavilion.net> Cc: Nate Williams <nate@yogotech.com>, Warner Losh <imp@village.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-Reply-To: <20000823184240.B13773@pavilion.net> References: <200008231651.KAA12190@nomad.yogotech.com> <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231704.LAA02617@billy-club.village.org> <200008231707.LAA12343@nomad.yogotech.com> <20000823184240.B13773@pavilion.net> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > Also, I don't see a functional difference between DATE-NUMBER and just > > > NUMBER, especially since it isn't in the CVS tree. However, a GMT > > > date down to the second as a change number id, then that would make > > > checking out from CVS to that point possible. > > > > That would be cool. Actually, a GMT date would be adequate for me, > > instead of using a number, since that makes things really easy from a > > CVS point of view. I'd actually prefer that to a number, for the > > reasons mentioned. > > If we had an incrementing number we need locking and a counter file. Agreed. > If we have "utime/user" we probably don't. Utime (by which I mean > any format with a resolution of a second) on it's own probably isn't > sufficient without a lock and a sub increment counter (although a byte > from /dev/urandom may work..... only joking! :) Actually, given the updates from CVS, I think a utime counter is quite adequate. I don't think we're pushing multiple updates/sec at this point. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:48:51 2000 Delivered-To: cvs-all@freebsd.org Received: from genius.systems.pavilion.net (genius.systems.pavilion.net [212.74.1.100]) by hub.freebsd.org (Postfix) with ESMTP id E730037B422; Wed, 23 Aug 2000 10:48:45 -0700 (PDT) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id 4D9099B2D; Wed, 23 Aug 2000 18:48:45 +0100 (BST) Date: Wed, 23 Aug 2000 18:48:45 +0100 From: Josef Karthauser <joe@pavilion.net> To: Nate Williams <nate@yogotech.com> Cc: Warner Losh <imp@village.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000823184845.D13773@pavilion.net> References: <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231704.LAA02617@billy-club.village.org> <200008231707.LAA12343@nomad.yogotech.com> <20000823184240.B13773@pavilion.net> <200008231743.LAA13050@nomad.yogotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008231743.LAA13050@nomad.yogotech.com>; from nate@yogotech.com on Wed, Aug 23, 2000 at 11:43:14AM -0600 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 11:43:14AM -0600, Nate Williams wrote: > > > If we have "utime/user" we probably don't. Utime (by which I mean > > any format with a resolution of a second) on it's own probably isn't > > sufficient without a lock and a sub increment counter (although a byte > > from /dev/urandom may work..... only joking! :) > > Actually, given the updates from CVS, I think a utime counter is quite > adequate. I don't think we're pushing multiple updates/sec at this > point. > Multiple updates/sec no - but can you guarantee that in any given second there won't be two commits. If you can't then we should use an increment counter, or not bother (Or am I being too exacting here?). Joe -- Josef Karthauser FreeBSD: How many times have you booted today? Technical Manager Viagra for your server (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@uk.freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:51:39 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 9C24937B422; Wed, 23 Aug 2000 10:51:32 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id LAA66202; Wed, 23 Aug 2000 11:51:31 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id LAA50873; Wed, 23 Aug 2000 11:51:19 -0600 (MDT) Message-Id: <200008231751.LAA50873@harmony.village.org> To: Josef Karthauser <joe@pavilion.net> Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Cc: Nate Williams <nate@yogotech.com>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Wed, 23 Aug 2000 18:42:40 BST." <20000823184240.B13773@pavilion.net> References: <20000823184240.B13773@pavilion.net> <200008231651.KAA12190@nomad.yogotech.com> <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231704.LAA02617@billy-club.village.org> <200008231707.LAA12343@nomad.yogotech.com> Date: Wed, 23 Aug 2000 11:51:18 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000823184240.B13773@pavilion.net> Josef Karthauser writes: : If we have "utime/user" we probably don't. Utime (by which I mean : any format with a resolution of a second) on it's own probably isn't : sufficient without a lock and a sub increment counter (although a byte : from /dev/urandom may work..... only joking! :) Actually, we'd need a locking file either way to prevent overlapping commits. However, this may cause a bottleneck in the future as more and more people commit to FreeBSD. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:52:27 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id F026C37B42C; Wed, 23 Aug 2000 10:52:21 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id LAA66212; Wed, 23 Aug 2000 11:52:20 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id LAA50893; Wed, 23 Aug 2000 11:52:08 -0600 (MDT) Message-Id: <200008231752.LAA50893@harmony.village.org> To: Josef Karthauser <joe@pavilion.net> Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Cc: Nate Williams <nate@yogotech.com>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Wed, 23 Aug 2000 18:48:45 BST." <20000823184845.D13773@pavilion.net> References: <20000823184845.D13773@pavilion.net> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231704.LAA02617@billy-club.village.org> <200008231707.LAA12343@nomad.yogotech.com> <20000823184240.B13773@pavilion.net> <200008231743.LAA13050@nomad.yogotech.com> Date: Wed, 23 Aug 2000 11:52:08 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000823184845.D13773@pavilion.net> Josef Karthauser writes: : Multiple updates/sec no - but can you guarantee that in any given second : there won't be two commits. If you can't then we should use an increment : counter, or not bother (Or am I being too exacting here?). We can't guarantee there won't be mutliple commits in a second, but we shouldn't worry too much about that case until it happens a lot. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:54:10 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id EDCE937B422; Wed, 23 Aug 2000 10:54:01 -0700 (PDT) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id LAA08389; Wed, 23 Aug 2000 11:53:55 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id LAA13118; Wed, 23 Aug 2000 11:52:38 -0600 (MDT) (envelope-from nate) Date: Wed, 23 Aug 2000 11:52:38 -0600 (MDT) Message-Id: <200008231752.LAA13118@nomad.yogotech.com> From: Nate Williams <nate@yogotech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Josef Karthauser <joe@pavilion.net> Cc: Nate Williams <nate@yogotech.com>, Warner Losh <imp@village.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-Reply-To: <20000823184845.D13773@pavilion.net> References: <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231704.LAA02617@billy-club.village.org> <200008231707.LAA12343@nomad.yogotech.com> <20000823184240.B13773@pavilion.net> <200008231743.LAA13050@nomad.yogotech.com> <20000823184845.D13773@pavilion.net> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > If we have "utime/user" we probably don't. Utime (by which I mean > > > any format with a resolution of a second) on it's own probably isn't > > > sufficient without a lock and a sub increment counter (although a byte > > > from /dev/urandom may work..... only joking! :) > > > > Actually, given the updates from CVS, I think a utime counter is quite > > adequate. I don't think we're pushing multiple updates/sec at this > > point. > > Multiple updates/sec no - but can you guarantee that in any given second > there won't be two commits. If you can't then we should use an increment > counter, or not bother (Or am I being too exacting here?). Sorry, I meant multiple commits/sec. I think if there are multiple commits/sec, the chance of someone getting some of them and not all of them is almost nil, and given the fact that CVS doesn't keep this from happening (we have no locking), I don't think it's a problem we should concern ourselves with. If/when it becomes a problem, CVS will need some sort of locking protocol, and we can update the file in the middle of the lock. :) Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:55:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 895EC37B423; Wed, 23 Aug 2000 10:55:45 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA10074; Wed, 23 Aug 2000 10:55:45 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200008231755.KAA10074@freefall.freebsd.org> From: Ade Lovett <ade@FreeBSD.org> Date: Wed, 23 Aug 2000 10:55:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/evolution Makefile ports/mail/evolution/files md5 ports/mail/evolution/patches patch-ah patch-aa patch-ac patch-ae patch-ag ports/mail/evolution/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/08/23 10:55:45 PDT Modified files: mail/evolution Makefile mail/evolution/files md5 mail/evolution/patches patch-aa patch-ac mail/evolution/pkg PLIST Added files: mail/evolution/patches patch-ah Removed files: mail/evolution/patches patch-ae patch-ag Log: Update to 0.4.1 Revision Changes Path 1.7 +2 -2 ports/mail/evolution/Makefile 1.4 +1 -1 ports/mail/evolution/files/md5 1.5 +0 -40 ports/mail/evolution/patches/patch-aa 1.3 +14 -0 ports/mail/evolution/patches/patch-ac 1.4 +25 -1 ports/mail/evolution/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 10:58:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B0F1737B42C; Wed, 23 Aug 2000 10:58:45 -0700 (PDT) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA10694; Wed, 23 Aug 2000 10:58:45 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200008231758.KAA10694@freefall.freebsd.org> From: Ben Smithurst <ben@FreeBSD.org> Date: Wed, 23 Aug 2000 10:58:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/cvsmail Makefile ports/mail/cvsmail/files md5 ports/mail/cvsmail/pkg COMMENT DESCR MESSAGE PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/08/23 10:58:45 PDT Modified files: mail Makefile Added files: mail/cvsmail Makefile mail/cvsmail/files md5 mail/cvsmail/pkg COMMENT DESCR MESSAGE PLIST Log: Add cvsmail - a program to add cvsweb.cgi links to the FreeBSD commit messages via a procmail rule. (The links point to the actual diff for the commit, not just to the file within the repo.) Revision Changes Path 1.157 +2 -1 ports/mail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 11: 0:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 768DA37B43C; Wed, 23 Aug 2000 11:00:15 -0700 (PDT) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA11035; Wed, 23 Aug 2000 11:00:15 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200008231800.LAA11035@freefall.freebsd.org> From: Ben Smithurst <ben@FreeBSD.org> Date: Wed, 23 Aug 2000 11:00:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/08/23 11:00:15 PDT Modified files: . modules Log: cvsmail --> ports/mail/cvsmail Revision Changes Path 1.1598 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 11: 2:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0209037B422; Wed, 23 Aug 2000 11:02:25 -0700 (PDT) Received: (from nsayer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA11498; Wed, 23 Aug 2000 11:02:24 -0700 (PDT) (envelope-from nsayer@FreeBSD.org) Message-Id: <200008231802.LAA11498@freefall.freebsd.org> From: Nick Sayer <nsayer@FreeBSD.org> Date: Wed, 23 Aug 2000 11:02:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/xearth/files freebsd.committers.markers X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nsayer 2000/08/23 11:02:24 PDT Modified files: astro/xearth/files freebsd.committers.markers Log: 1. Correct the city 2. Improve the accuracy (ala phk. Alas, +/- 1 sec is as far as I've pursued the matter) Revision Changes Path 1.33 +1 -1 ports/astro/xearth/files/freebsd.committers.markers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 11:34: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2959D37B423; Wed, 23 Aug 2000 11:34:00 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA16717; Wed, 23 Aug 2000 11:34:00 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008231834.LAA16717@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Wed, 23 Aug 2000 11:33:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gimp1 Makefile ports/graphics/gimp1/files md5 ports/graphics/gimp1/patches patch-ar ports/graphics/gimp1/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/23 11:33:59 PDT Modified files: graphics/gimp1 Makefile graphics/gimp1/files md5 graphics/gimp1/pkg PLIST Added files: graphics/gimp1/patches patch-ar Log: Update to 1.1.25. Revision Changes Path 1.79 +3 -3 ports/graphics/gimp1/Makefile 1.34 +1 -1 ports/graphics/gimp1/files/md5 1.46 +16 -0 ports/graphics/gimp1/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 11:48:47 2000 Delivered-To: cvs-all@freebsd.org Received: from mail.telemere.net (mail.telemere.net [63.224.9.4]) by hub.freebsd.org (Postfix) with ESMTP id 43FCC37B43C; Wed, 23 Aug 2000 11:48:23 -0700 (PDT) Received: by mail.telemere.net (Postfix, from userid 1001) id 69A7520F01; Wed, 23 Aug 2000 13:51:21 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by mail.telemere.net (Postfix) with ESMTP id 652CC1D101; Wed, 23 Aug 2000 13:51:21 -0500 (CDT) Date: Wed, 23 Aug 2000 13:51:16 -0500 (CDT) From: Visigoth <visigoth@telemere.net> To: current@freebsd.org, cvs-all@freebsd.org Subject: DPT revision....(broken drivers in -STABLE) Message-ID: <Pine.BSF.4.21.0008231343450.2856-100000@mail.telemere.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Sorry for the cross post but.... Would it be possible to revert the DPT commits made by peter on Mon Aug 7 18:48:14 2000 in the RELENG_4 branch? It seems that the dpt_attatch is failing in bus_alloc_resource(9) for the IRQ, and I have production machines that need worlds built for some other updates as well.. I would be happy to install a -CURRENT machine and help debug until it works, but for right now, there is NO DPT support in -STABLE for the DPT PM3334UW. I had a pr started, but haven't been able to get any response from the current maintainer. I am going to install a -CURRENT machine with a DPT in it and start the process of working on the issue, but it would be nice if we can keep -STABLE stable... ;) Visigoth Damieon Stark Sr. Unix Systems Administrator visigoth@telemere.net PGP Public Key: www.telemere.net/~visigoth/visigoth.asc ____________________________________________________________________________ | M$ -Where do you want to go today? | Linux -Where do you want to go tomorrow?| FreeBSD - The POWER to serve Freebsd -Are you guys coming or what? | http://www.freebsd.org | | - ---------------------------------------------------------------------------- -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.1i iQA/AwUBOaQPGDnmC/+RTnGeEQIJmgCfceaKQbQtf6rIw8y7vnKX9yILwzgAoOio qyAuX72v+iICVu5y5n9GQvz/ =TXXY -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 11:57:21 2000 Delivered-To: cvs-all@freebsd.org Received: from dt051n1f.san.rr.com (24-25-220-168.san.rr.com [24.25.220.168]) by hub.freebsd.org (Postfix) with ESMTP id C136E37B43C; Wed, 23 Aug 2000 11:57:16 -0700 (PDT) Received: from slave (doug@slave [10.0.0.1]) by dt051n1f.san.rr.com (8.9.3/8.9.3) with ESMTP id LAA07926; Wed, 23 Aug 2000 11:57:15 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Wed, 23 Aug 2000 11:57:15 -0700 (PDT) From: Doug Barton <Doug@gorean.org> X-Sender: doug@dt051n1f.san.rr.com To: Alfred Perlstein <bright@wintelcom.net> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvsweb links in cvs commit messages In-Reply-To: <20000823093626.Z4854@fw.wintelcom.net> Message-ID: <Pine.BSF.4.21.0008231154070.7876-100000@dt051n1f.san.rr.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 23 Aug 2000, Alfred Perlstein wrote: > Actually all the people complaining should just collaborate to create > script to pipe the commit messages through in procmail to append > the html links for themselves. :) As far as I can see, no one is complaining. My point (so long ago...) was simply that I find the links in the commit messages incredibly useful, and I believe others would as well. If anyone needs the procmail recipe let me know, I can pass on the one I cribbed from hoek... Doug -- "Live free or die" - State motto of my ancestral homeland, New Hampshire Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 12: 6:46 2000 Delivered-To: cvs-all@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 72B1537B43C; Wed, 23 Aug 2000 12:06:43 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e7NJ6gM14003; Wed, 23 Aug 2000 12:06:42 -0700 (PDT) Date: Wed, 23 Aug 2000 12:06:42 -0700 From: Alfred Perlstein <bright@wintelcom.net> To: Doug Barton <Doug@gorean.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvsweb links in cvs commit messages Message-ID: <20000823120642.C4854@fw.wintelcom.net> References: <20000823093626.Z4854@fw.wintelcom.net> <Pine.BSF.4.21.0008231154070.7876-100000@dt051n1f.san.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <Pine.BSF.4.21.0008231154070.7876-100000@dt051n1f.san.rr.com>; from Doug@gorean.org on Wed, Aug 23, 2000 at 11:57:15AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Doug Barton <Doug@gorean.org> [000823 11:57] wrote: > On Wed, 23 Aug 2000, Alfred Perlstein wrote: > > > Actually all the people complaining should just collaborate to create > > script to pipe the commit messages through in procmail to append > > the html links for themselves. :) > > As far as I can see, no one is complaining. My point (so long > ago...) was simply that I find the links in the commit messages incredibly > useful, and I believe others would as well. If anyone needs the procmail > recipe let me know, I can pass on the one I cribbed from hoek... Can you put it up on a url somewhere? -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 12:14:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 99A0837B423; Wed, 23 Aug 2000 12:14:48 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA27114; Wed, 23 Aug 2000 12:14:48 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200008231914.MAA27114@freefall.freebsd.org> From: "Andrey A. Chernov" <ache@FreeBSD.org> Date: Wed, 23 Aug 2000 12:14:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/usr.bin/ssh Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/08/23 12:14:48 PDT Modified files: secure/usr.bin/ssh Makefile Log: Add missing quotes around xauth path Revision Changes Path 1.9 +2 -2 src/secure/usr.bin/ssh/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 12:15:56 2000 Delivered-To: cvs-all@freebsd.org Received: from dt051n1f.san.rr.com (24-25-220-168.san.rr.com [24.25.220.168]) by hub.freebsd.org (Postfix) with ESMTP id 0F9CC37B422; Wed, 23 Aug 2000 12:15:52 -0700 (PDT) Received: from slave (doug@slave [10.0.0.1]) by dt051n1f.san.rr.com (8.9.3/8.9.3) with ESMTP id MAA08057; Wed, 23 Aug 2000 12:15:50 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Wed, 23 Aug 2000 12:15:50 -0700 (PDT) From: Doug Barton <Doug@gorean.org> X-Sender: doug@dt051n1f.san.rr.com To: Alfred Perlstein <bright@wintelcom.net> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvsweb links in cvs commit messages In-Reply-To: <20000823120642.C4854@fw.wintelcom.net> Message-ID: <Pine.BSF.4.21.0008231215280.7876-100000@dt051n1f.san.rr.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 23 Aug 2000, Alfred Perlstein wrote: > * Doug Barton <Doug@gorean.org> [000823 11:57] wrote: > > On Wed, 23 Aug 2000, Alfred Perlstein wrote: > > > > > Actually all the people complaining should just collaborate to create > > > script to pipe the commit messages through in procmail to append > > > the html links for themselves. :) > > > > As far as I can see, no one is complaining. My point (so long > > ago...) was simply that I find the links in the commit messages incredibly > > useful, and I believe others would as well. If anyone needs the procmail > > recipe let me know, I can pass on the one I cribbed from hoek... > > Can you put it up on a url somewhere? http://doug.simplenet.com/cvsweb-procmail.html Enjoy :) -- "Live free or die" - State motto of my ancestral homeland, New Hampshire Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 12:17:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 21BE237B422; Wed, 23 Aug 2000 12:17:23 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA27556; Wed, 23 Aug 2000 12:17:23 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008231917.MAA27556@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Wed, 23 Aug 2000 12:17:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases Makefile ports/databases/ruby-gdbm Makefile ports/databases/ruby-gdbm/files md5 ports/databases/ruby-gdbm/pkg COMMENT DESCR MESSAGE PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/23 12:17:23 PDT Modified files: databases Makefile Added files: databases/ruby-gdbm Makefile databases/ruby-gdbm/files md5 databases/ruby-gdbm/pkg COMMENT DESCR MESSAGE PLIST Log: Add ruby-gdbm, a Ruby extension to GDBM library. Revision Changes Path 1.70 +2 -1 ports/databases/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 12:17:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9150437B43C; Wed, 23 Aug 2000 12:17:53 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA26975; Wed, 23 Aug 2000 12:13:52 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008231913.MAA26975@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Wed, 23 Aug 2000 12:13:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/vmware2 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/23 12:13:51 PDT Modified files: emulators/vmware2 Makefile Log: Chase the recent moving of linux_ioctl.h. Revision Changes Path 1.21 +9 -1 ports/emulators/vmware2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 12:18:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD0F637B424; Wed, 23 Aug 2000 12:18:08 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA27744; Wed, 23 Aug 2000 12:18:08 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008231918.MAA27744@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Wed, 23 Aug 2000 12:18:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/23 12:18:08 PDT Modified files: . modules Log: ruby-gdbm --> ports/databases/ruby-gdbm Revision Changes Path 1.1599 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 12:27:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E97337B422; Wed, 23 Aug 2000 12:27:08 -0700 (PDT) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA28777; Wed, 23 Aug 2000 12:27:08 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200008231927.MAA28777@freefall.freebsd.org> From: Wilko Bulte <wilko@FreeBSD.org> Date: Wed, 23 Aug 2000 12:27:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha HARDWARE.TXT X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/08/23 12:27:08 PDT Modified files: release/texts/alpha HARDWARE.TXT Log: Various cleanups all around. Document serial/graphics console selection for AS1000[A]/800 Revision Changes Path 1.52 +68 -51 src/release/texts/alpha/HARDWARE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 12:27:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F8FD37B424; Wed, 23 Aug 2000 12:27:31 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA28883; Wed, 23 Aug 2000 12:27:31 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008231927.MAA28883@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Wed, 23 Aug 2000 12:27:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/23 12:27:31 PDT Modified files: (Branch: RELENG_4) . Makefile.inc1 Log: MFC: Save any binaries we use by installworld, so that we won't use the binaries we just installed. This allows a future upgrade target to install a new system without intermediate reboots and also prevents conflicts for parallel make runs where we might exec a binary that's being installed at the same time. Note that 4-stable requires miniperl to be saved as an install tool unlike -current. Revision Changes Path 1.141.2.8 +14 -2 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 12:29: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A5B837B423; Wed, 23 Aug 2000 12:29:00 -0700 (PDT) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA29063; Wed, 23 Aug 2000 12:29:00 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200008231929.MAA29063@freefall.freebsd.org> From: Wilko Bulte <wilko@FreeBSD.org> Date: Wed, 23 Aug 2000 12:29:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha HARDWARE.TXT X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/08/23 12:29:00 PDT Modified files: (Branch: RELENG_4) release/texts/alpha HARDWARE.TXT Log: [MFC] Various cleanups all around. Document AS1000[A]/800 serial/graphics console selection. Revision Changes Path 1.22.2.23 +68 -51 src/release/texts/alpha/HARDWARE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 13: 7: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88BE037B424; Wed, 23 Aug 2000 13:07:01 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA37357; Wed, 23 Aug 2000 13:07:01 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Message-Id: <200008232007.NAA37357@freefall.freebsd.org> From: Bruce Mah <bmah@FreeBSD.org> Date: Wed, 23 Aug 2000 13:07:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/vnc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bmah 2000/08/23 13:07:01 PDT Modified files: net/vnc Makefile Log: Update my email address in Makefile MAINTAINER field. Revision Changes Path 1.20 +2 -2 ports/net/vnc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 13: 7:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 96B3B37B422; Wed, 23 Aug 2000 13:07:56 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA37476; Wed, 23 Aug 2000 13:07:56 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Message-Id: <200008232007.NAA37476@freefall.freebsd.org> From: Bruce Mah <bmah@FreeBSD.org> Date: Wed, 23 Aug 2000 13:07:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/dxpc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bmah 2000/08/23 13:07:56 PDT Modified files: x11/dxpc Makefile Log: Update my address in the Makefile MAINTAINER field. Revision Changes Path 1.7 +2 -2 ports/x11/dxpc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 13:10:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 429EF37B42C; Wed, 23 Aug 2000 13:10:45 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA37748; Wed, 23 Aug 2000 13:10:45 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Message-Id: <200008232010.NAA37748@freefall.freebsd.org> From: Bill Paul <wpaul@FreeBSD.org> Date: Wed, 23 Aug 2000 13:10:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults pccard.conf X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wpaul 2000/08/23 13:10:45 PDT Modified files: etc/defaults pccard.conf Log: Add entry for the Farallon Skyline 11Mbps wireless NIC (WaveLAN/IEEE compatible) Revision Changes Path 1.126 +7 -1 src/etc/defaults/pccard.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 13:33:44 2000 Delivered-To: cvs-all@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 9BF5037B424; Wed, 23 Aug 2000 13:33:32 -0700 (PDT) Received: from strontium.scientia.demon.co.uk ([192.168.91.36] ident=root) by scientia.demon.co.uk with esmtp (Exim 3.16 #1) id 13Rg7E-000IeY-00; Wed, 23 Aug 2000 20:23:12 +0100 Received: (from ben@localhost) by strontium.scientia.demon.co.uk (8.9.3/8.9.3) id UAA48238; Wed, 23 Aug 2000 20:23:12 +0100 (BST) (envelope-from ben) Date: Wed, 23 Aug 2000 20:23:12 +0100 From: Ben Smithurst <ben@FreeBSD.org> To: Alfred Perlstein <bright@wintelcom.net> Cc: Doug Barton <Doug@gorean.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvsweb links in cvs commit messages Message-ID: <20000823202312.S20036@strontium.scientia.demon.co.uk> References: <20000823093626.Z4854@fw.wintelcom.net> <Pine.BSF.4.21.0008231154070.7876-100000@dt051n1f.san.rr.com> <20000823120642.C4854@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000823120642.C4854@fw.wintelcom.net> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alfred Perlstein wrote: > * Doug Barton <Doug@gorean.org> [000823 11:57] wrote: >> >> As far as I can see, no one is complaining. My point (so long >> ago...) was simply that I find the links in the commit messages incredibly >> useful, and I believe others would as well. If anyone needs the procmail >> recipe let me know, I can pass on the one I cribbed from hoek... > > Can you put it up on a url somewhere? file:/usr/ports/mail/cvsmail is another alternative. :-) David O'Brien said that hoek's perl script didn't actually link to the specific diff associated with the commit, just to the file itself, so you still had to find the "diffs from a to b" link in that page to click on. I've never used his version though. I just know my program does the Right Thing. -- Ben Smithurst / ben@FreeBSD.org / PGP: 0x99392F7D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 13:36:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4575537B423; Wed, 23 Aug 2000 13:36:55 -0700 (PDT) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA40596; Wed, 23 Aug 2000 13:36:55 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200008232036.NAA40596@freefall.freebsd.org> From: Ben Smithurst <ben@FreeBSD.org> Date: Wed, 23 Aug 2000 13:36:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/articles/committers-guide article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/08/23 13:36:55 PDT Modified files: en_US.ISO_8859-1/articles/committers-guide article.sgml Log: Specify that committers should use a umask of 2 on freefall, so that files/directories added to the repository get the correct group-writable permission. Revision Changes Path 1.36 +12 -1 doc/en_US.ISO_8859-1/articles/committers-guide/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 13:50:59 2000 Delivered-To: cvs-all@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id 995F137B422; Wed, 23 Aug 2000 13:50:55 -0700 (PDT) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.11.0/8.9.3) with ESMTP id e7NKotG63344; Wed, 23 Aug 2000 13:50:55 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200008232050.e7NKotG63344@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Ben Smithurst <ben@FreeBSD.org> Cc: Alfred Perlstein <bright@wintelcom.net>, Doug Barton <Doug@gorean.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvsweb links in cvs commit messages In-Reply-To: <20000823202312.S20036@strontium.scientia.demon.co.uk> Date: Wed, 23 Aug 2000 13:50:54 -0700 From: Peter Wemm <peter@netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ben Smithurst wrote: > Alfred Perlstein wrote: > > > * Doug Barton <Doug@gorean.org> [000823 11:57] wrote: > >> > >> As far as I can see, no one is complaining. My point (so long > >> ago...) was simply that I find the links in the commit messages incredibly > >> useful, and I believe others would as well. If anyone needs the procmail > >> recipe let me know, I can pass on the one I cribbed from hoek... > > > > Can you put it up on a url somewhere? > > file:/usr/ports/mail/cvsmail is another alternative. :-) > > David O'Brien said that hoek's perl script didn't actually link to the > specific diff associated with the commit, just to the file itself, so > you still had to find the "diffs from a to b" link in that page to click > on. I've never used his version though. I just know my program does > the Right Thing. Incidently, what I could deal with is if we create an atomic commit number and collect the individual rcs deltas together and store it in a file or database or something. Then we can put one http:// link in the bottom of emails which allows looking up by commit number and do all the cvsweb links from there. That keeps the html junk down to a minimum and actually gains us something in the process - we can use other tools to mine the data for MFC'ing complete changes etc. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 14: 6:43 2000 Delivered-To: cvs-all@freebsd.org Received: from gatekeeper.whistle.com (gatekeeper.whistle.com [207.76.204.2]) by hub.freebsd.org (Postfix) with ESMTP id 390D137B422; Wed, 23 Aug 2000 14:06:36 -0700 (PDT) Received: from bubba.whistle.com (bubba.whistle.com [207.76.205.7]) by gatekeeper.whistle.com (8.9.3/8.9.3) with ESMTP id OAA09918; Wed, 23 Aug 2000 14:06:35 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.3/8.9.3) id OAA86350; Wed, 23 Aug 2000 14:06:35 -0700 (PDT) (envelope-from archie) From: Archie Cobbs <archie@whistle.com> Message-Id: <200008232106.OAA86350@bubba.whistle.com> Subject: Re: cvsweb links in cvs commit messages In-Reply-To: <200008232050.e7NKotG63344@netplex.com.au> "from Peter Wemm at Aug 23, 2000 01:50:54 pm" To: Peter Wemm <peter@netplex.com.au> Date: Wed, 23 Aug 2000 14:06:35 -0700 (PDT) Cc: Ben Smithurst <ben@FreeBSD.org>, Alfred Perlstein <bright@wintelcom.net>, Doug Barton <Doug@gorean.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Peter Wemm writes: > Incidently, what I could deal with is if we create an atomic commit number > and collect the individual rcs deltas together and store it in a file or > database or something. Then we can put one http:// link in the bottom of > emails which allows looking up by commit number and do all the cvsweb links > from there. That keeps the html junk down to a minimum and actually gains > us something in the process - we can use other tools to mine the data for > MFC'ing complete changes etc. That's a great idea.. once the commit number and URL are assigned, we can, over time, enhance and glorify the actual page displayed. -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 14:20:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A11EE37B449; Wed, 23 Aug 2000 14:20:22 -0700 (PDT) Received: (from jseger@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA46699; Wed, 23 Aug 2000 14:20:22 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Message-Id: <200008232120.OAA46699@freefall.freebsd.org> From: "Justin M. Seger" <jseger@FreeBSD.org> Date: Wed, 23 Aug 2000 14:20:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/ImageMagick Makefile ports/graphics/ImageMagick/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jseger 2000/08/23 14:20:22 PDT Modified files: graphics/ImageMagick Makefile graphics/ImageMagick/files md5 Log: Upgrade to ImageMagick-5.2.3 Revision Changes Path 1.93 +2 -2 ports/graphics/ImageMagick/Makefile 1.48 +1 -1 ports/graphics/ImageMagick/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 14:41:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB53437B42C; Wed, 23 Aug 2000 14:41:26 -0700 (PDT) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA48980; Wed, 23 Aug 2000 14:41:26 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200008232141.OAA48980@freefall.freebsd.org> From: Paul Saab <ps@FreeBSD.org> Date: Wed, 23 Aug 2000 14:41:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_proc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/08/23 14:41:26 PDT Modified files: sys/kern kern_proc.c Log: Add a sysctl which hides all process except those that belong to the user asking for the process list. Reviewed by: peter Revision Changes Path 1.70 +10 -1 src/sys/kern/kern_proc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 14:42:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4544C37B424; Wed, 23 Aug 2000 14:42:40 -0700 (PDT) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA49109; Wed, 23 Aug 2000 14:42:40 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Message-Id: <200008232142.OAA49109@freefall.freebsd.org> From: Chris Piazza <cpiazza@FreeBSD.org> Date: Wed, 23 Aug 2000 14:42:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/cmp3 Makefile ports/audio/cmp3/pkg DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cpiazza 2000/08/23 14:42:40 PDT Modified files: audio/cmp3 Makefile audio/cmp3/pkg DESCR Log: WWW: change Submitted by: Daniel Harris <dannyboy@subdimension.com> Revision Changes Path 1.10 +2 -2 ports/audio/cmp3/Makefile 1.4 +1 -1 ports/audio/cmp3/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 15:48:21 2000 Delivered-To: cvs-all@freebsd.org Received: from cheddar.netmonger.net (cheddar.netmonger.net [209.54.21.140]) by hub.freebsd.org (Postfix) with ESMTP id 8489337B423; Wed, 23 Aug 2000 15:48:17 -0700 (PDT) Received: (from chris@localhost) by cheddar.netmonger.net (8.8.8/8.8.8) id SAA16987; Wed, 23 Aug 2000 18:48:08 -0400 (EDT) Message-ID: <20000823184807.A13252@netmonger.net> Date: Wed, 23 Aug 2000 18:48:07 -0400 From: Christopher Masto <chris@netmonger.net> To: Josef Karthauser <joe@pavilion.net>, Nate Williams <nate@yogotech.com> Cc: Warner Losh <imp@village.org>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/games/fortune/datfiles fortunes References: <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231704.LAA02617@billy-club.village.org> <200008231707.LAA12343@nomad.yogotech.com> <20000823184240.B13773@pavilion.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <20000823184240.B13773@pavilion.net>; from Josef Karthauser on Wed, Aug 23, 2000 at 06:42:40PM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 06:42:40PM +0100, Josef Karthauser wrote: > If we had an incrementing number we need locking and a counter file. > If we have "utime/user" we probably don't. If it's an issue of the extra work to do the locking and counting, Perl has File::CounterFile pre-cooked and ready to serve. -- Christopher Masto Senior Network Monkey NetMonger Communications chris@netmonger.net info@netmonger.net http://www.netmonger.net Free yourself, free your machine, free the daemon -- http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 15:49:52 2000 Delivered-To: cvs-all@freebsd.org Received: from alcanet.com.au (mail.alcanet.com.au [203.62.196.10]) by hub.freebsd.org (Postfix) with SMTP id 9484137B422; Wed, 23 Aug 2000 15:49:46 -0700 (PDT) Received: by border.alcanet.com.au id <115202>; Thu, 24 Aug 2000 08:49:30 +1000 Content-return: prohibited Date: Thu, 24 Aug 2000 08:49:28 +1000 From: Peter Jeremy <peter.jeremy@alcatel.com.au> Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-reply-to: <20000823184240.B13773@pavilion.net>; from joe@pavilion.net on Wed, Aug 23, 2000 at 06:42:40PM +0100 To: Josef Karthauser <joe@pavilion.net> Cc: Nate Williams <nate@yogotech.com>, Warner Losh <imp@village.org>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Mail-followup-to: Josef Karthauser <joe@pavilion.net>, Nate Williams <nate@yogotech.com>, Warner Losh <imp@village.org>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-Id: <00Aug24.084930est.115202@border.alcanet.com.au> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.4i References: <200008231604.KAA11402@nomad.yogotech.com> <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231704.LAA02617@billy-club.village.org> <200008231707.LAA12343@nomad.yogotech.com> <20000823184240.B13773@pavilion.net> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 2000-Aug-23 18:42:40 +0100, Josef Karthauser <joe@pavilion.net> wrote: >If we had an incrementing number we need locking and a counter file. Which isn't that difficult. Perl provides access to flock() and fcntl() so there would be nothing preventing the commit script from open(SERIAL, '+>/path/to/serial/number'); flock(SERIAL, 2); $serial = 0 + <SERIAL>; print SERIAL $serial + 1, "\n"; close(SERIAL); (with approprate error checking added). I agree that this would add a serialisation operation to the commit process, but the lock should only be held for a fraction of a second and so shouldn't noticably slow down commits. Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 15:51:38 2000 Delivered-To: cvs-all@freebsd.org Received: from alcanet.com.au (mail.alcanet.com.au [203.62.196.10]) by hub.freebsd.org (Postfix) with SMTP id 1650B37B424; Wed, 23 Aug 2000 15:51:34 -0700 (PDT) Received: by border.alcanet.com.au id <115204>; Thu, 24 Aug 2000 08:51:26 +1000 Content-return: prohibited Date: Thu, 24 Aug 2000 08:51:24 +1000 From: Peter Jeremy <peter.jeremy@alcatel.com.au> Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-reply-to: <200008231700.e7NH0o479214@hak.lan.Awfulhak.org>; from brian@awfulhak.org on Wed, Aug 23, 2000 at 06:00:50PM +0100 To: Brian Somers <brian@awfulhak.org> Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Mail-followup-to: Brian Somers <brian@awfulhak.org>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-Id: <00Aug24.085126est.115204@border.alcanet.com.au> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.4i References: <obrien@FreeBSD.org> <200008231700.e7NH0o479214@hak.lan.Awfulhak.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 2000-Aug-23 18:00:50 +0100, Brian Somers <brian@awfulhak.org> wrote: >> On Sat, Aug 19, 2000 at 12:48:24PM +0200, Jeroen Ruigrok van der Werven wrote: >> And I and many are strongly for it. It certainly would help us to UTSL >> and not make stupid replies to commit messages because the source hasn't >> made it locally yet and thus people haven't read the diffs. > >I agree. I'm a victim (?) of making stupid comments recently based >on commit messages rather than source diffs. An alternative viewpoint is that the commit messages should be adequate to explain the change without reference to the source. Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 15:59: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4CC0B37B42C; Wed, 23 Aug 2000 15:59:06 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA58984; Wed, 23 Aug 2000 15:59:06 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008232259.PAA58984@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Wed, 23 Aug 2000 15:59:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ucd-snmp/patches patch-ai X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/23 15:59:05 PDT Removed files: net/ucd-snmp/patches patch-ai Log: Axe an unneeded patch. With this patch, the snmp server hangs during a walk. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 16:17:38 2000 Delivered-To: cvs-all@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 6144737B42C; Wed, 23 Aug 2000 16:17:34 -0700 (PDT) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id QAA14054; Wed, 23 Aug 2000 16:15:08 -0700 (PDT) (envelope-from jkh@winston.osd.bsdi.com) To: David Malone <dwmalone@maths.tcd.ie> Cc: Poul-Henning Kamp <phk@critter.freebsd.dk>, obrien@FreeBSD.org, Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>, Peter Wemm <peter@netplex.com.au>, Josef Karthauser <joe@pavilion.net>, Doug Barton <DougB@gorean.org>, Warner Losh <imp@village.org>, Ade Lovett <ade@FreeBSD.org>, Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, iedowse@maths.tcd.ie Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-Reply-To: Message from David Malone <dwmalone@maths.tcd.ie> of "Wed, 23 Aug 2000 12:12:28 BST." <20000823121228.A79079@walton.maths.tcd.ie> Date: Wed, 23 Aug 2000 16:15:08 -0700 Message-ID: <14050.967072508@winston.osd.bsdi.com> From: Jordan Hubbard <jkh@winston.osd.bsdi.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Here's what Ian was working on - it's not that polished, but could > be useful: > > http://www.maths.tcd.ie/common-cgi/cltest.pl Wow, this is pretty slick! - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 16:35: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from mass.osd.bsdi.com (mass.osd.bsdi.com [204.216.28.234]) by hub.freebsd.org (Postfix) with ESMTP id 495CC37B50D; Wed, 23 Aug 2000 16:35:01 -0700 (PDT) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id QAA00996; Wed, 23 Aug 2000 16:48:23 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200008232348.QAA00996@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Visigoth <visigoth@telemere.net> Cc: current@freebsd.org, cvs-all@freebsd.org Subject: Re: DPT revision....(broken drivers in -STABLE) In-reply-to: Your message of "Wed, 23 Aug 2000 13:51:16 CDT." <Pine.BSF.4.21.0008231343450.2856-100000@mail.telemere.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 23 Aug 2000 16:48:23 -0700 From: Mike Smith <msmith@freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Would it be possible to revert the DPT commits made by peter on > Mon Aug 7 18:48:14 2000 in the RELENG_4 branch? It seems that the > dpt_attatch is failing in bus_alloc_resource(9) for the IRQ, and I have > production machines that need worlds built for some other updates as > well.. I would be happy to install a -CURRENT machine and help debug > until it works, but for right now, there is NO DPT support in -STABLE for > the DPT PM3334UW. I had a pr started, but haven't been able to get any > response from the current maintainer. I would recommend just preserving the relevant files and updating the rest of the system right now. I think that Matt Dodd is working on this right now. A quick look at the code doesn't suggest anything immediately wrong with the new interrupt assignment code; has anything else in this system been changed? -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 16:36:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 05BCF37B619; Wed, 23 Aug 2000 16:36:32 -0700 (PDT) Received: (from alfred@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA61808; Wed, 23 Aug 2000 16:36:32 -0700 (PDT) (envelope-from alfred@FreeBSD.org) Message-Id: <200008232336.QAA61808@freefall.freebsd.org> From: Alfred Perlstein <alfred@FreeBSD.org> Date: Wed, 23 Aug 2000 16:36:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/lpr/lpc lpc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alfred 2000/08/23 16:36:32 PDT Modified files: usr.sbin/lpr/lpc lpc.c Log: the code assumes that getgroups() always returns NGROUPS groups, however that is not true. Instead of looping NGROUPS times, get the return value from getgroups() and loop over the return that many times. Noticed by: David A. Holland <dholland@eecs.harvard.edu> Revision Changes Path 1.15 +5 -3 src/usr.sbin/lpr/lpc/lpc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 16:39:18 2000 Delivered-To: cvs-all@freebsd.org Received: from dt051n1f.san.rr.com (24-25-220-168.san.rr.com [24.25.220.168]) by hub.freebsd.org (Postfix) with ESMTP id 5BCD037B616; Wed, 23 Aug 2000 16:39:15 -0700 (PDT) Received: from slave (doug@slave [10.0.0.1]) by dt051n1f.san.rr.com (8.9.3/8.9.3) with ESMTP id QAA09154; Wed, 23 Aug 2000 16:39:02 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Wed, 23 Aug 2000 16:39:02 -0700 (PDT) From: Doug Barton <Doug@gorean.org> X-Sender: doug@dt051n1f.san.rr.com To: Peter Wemm <peter@netplex.com.au> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvsweb links in cvs commit messages In-Reply-To: <200008232050.e7NKotG63344@netplex.com.au> Message-ID: <Pine.BSF.4.21.0008231638190.9100-100000@dt051n1f.san.rr.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 23 Aug 2000, Peter Wemm wrote: > Incidently, what I could deal with is if we create an atomic commit number > and collect the individual rcs deltas together and store it in a file or > database or something. Then we can put one http:// link in the bottom of > emails which allows looking up by commit number and do all the cvsweb links > from there. That keeps the html junk down to a minimum and actually gains > us something in the process - we can use other tools to mine the data for > MFC'ing complete changes etc. Without speaking for him, that's essentially exactly what Josef is working on currently. Doug -- "Live free or die" - State motto of my ancestral homeland, New Hampshire Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 17: 8: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 519B437B62B; Wed, 23 Aug 2000 17:08:00 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA67119; Wed, 23 Aug 2000 17:08:00 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Message-Id: <200008240008.RAA67119@freefall.freebsd.org> From: Bill Paul <wpaul@FreeBSD.org> Date: Wed, 23 Aug 2000 17:08:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci ti_fw.h ti_fw2.h if_ti.c if_tireg.h src/share/man/man4 ti.4 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wpaul 2000/08/23 17:08:00 PDT Modified files: (Branch: RELENG_4) sys/pci ti_fw.h ti_fw2.h if_ti.c if_tireg.h share/man/man4 ti.4 Log: MFC: merge in the support for 1000baseT Tigon cards from -current. This also updates the firmware to 12.4.11+wpaul_hacks. Revision Changes Path 1.6.2.3 +1089 -978 src/sys/pci/ti_fw.h 1.6.2.3 +2185 -1504src/sys/pci/ti_fw2.h 1.25.2.7 +80 -21 src/sys/pci/if_ti.c 1.13.2.3 +8 -5 src/sys/pci/if_tireg.h 1.7.2.2 +18 -8 src/share/man/man4/ti.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 17:26:46 2000 Delivered-To: cvs-all@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 1C14337B628; Wed, 23 Aug 2000 17:26:43 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e7O0Qg123290; Wed, 23 Aug 2000 17:26:42 -0700 (PDT) Date: Wed, 23 Aug 2000 17:26:42 -0700 From: Alfred Perlstein <bright@wintelcom.net> To: Bill Paul <wpaul@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci ti_fw.h ti_fw2.h if_ti.c if_tireg.h src/share/man/man4 ti.4 Message-ID: <20000823172642.T4854@fw.wintelcom.net> References: <200008240008.RAA67119@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200008240008.RAA67119@freefall.freebsd.org>; from wpaul@FreeBSD.org on Wed, Aug 23, 2000 at 05:08:00PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Bill Paul <wpaul@FreeBSD.org> [000823 17:08] wrote: > wpaul 2000/08/23 17:08:00 PDT > > Modified files: (Branch: RELENG_4) > sys/pci ti_fw.h ti_fw2.h if_ti.c if_tireg.h > share/man/man4 ti.4 > Log: > MFC: merge in the support for 1000baseT Tigon cards from -current. > This also updates the firmware to 12.4.11+wpaul_hacks. > > Revision Changes Path > 1.6.2.3 +1089 -978 src/sys/pci/ti_fw.h > 1.6.2.3 +2185 -1504src/sys/pci/ti_fw2.h ugh, isn't there a better way to do this? > 1.25.2.7 +80 -21 src/sys/pci/if_ti.c > 1.13.2.3 +8 -5 src/sys/pci/if_tireg.h > 1.7.2.2 +18 -8 src/share/man/man4/ti.4 > Have you heard back from them about integrating your changes? Just curious. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 17:51:33 2000 Delivered-To: cvs-all@freebsd.org Received: from mail-green.research.att.com (H-135-207-30-103.research.att.com [135.207.30.103]) by hub.freebsd.org (Postfix) with ESMTP id 9EA2337B423; Wed, 23 Aug 2000 17:51:28 -0700 (PDT) Received: from alliance.research.att.com (alliance.research.att.com [135.207.26.26]) by mail-green.research.att.com (Postfix) with ESMTP id DE1A61E003; Wed, 23 Aug 2000 20:51:27 -0400 (EDT) Received: from windsor.research.att.com (windsor.research.att.com [135.207.26.46]) by alliance.research.att.com (8.8.7/8.8.7) with ESMTP id UAA29604; Wed, 23 Aug 2000 20:51:18 -0400 (EDT) From: Bill Fenner <fenner@research.att.com> Received: (from fenner@localhost) by windsor.research.att.com (8.8.8+Sun/8.8.5) id RAA06672; Wed, 23 Aug 2000 17:51:18 -0700 (PDT) Message-Id: <200008240051.RAA06672@windsor.research.att.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII To: peter@netplex.com.au Subject: Re: cvsweb links in cvs commit messages Cc: ben@freebsd.org, bright@wintelcom.net, doug@gorean.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Date: Wed, 23 Aug 2000 17:51:18 -0700 Versions: dmail (solaris) 2.2g/makemail 2.9a Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >Then we can put one http:// link in the bottom of >emails which allows looking up by commit number and do all the cvsweb links >from there. That keeps the html junk down to a minimum and actually gains >us something in the process - we can use other tools to mine the data for >MFC'ing complete changes etc. Pasting a commit email into http://www.freebsd.org/~fenner/cgi/log-entry.cgi gives you all the links. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 18:39:47 2000 Delivered-To: cvs-all@freebsd.org Received: from mail.telemere.net (mail.telemere.net [63.224.9.4]) by hub.freebsd.org (Postfix) with ESMTP id 5920237B422; Wed, 23 Aug 2000 18:39:43 -0700 (PDT) Received: by mail.telemere.net (Postfix, from userid 1001) id CDA3220F01; Wed, 23 Aug 2000 20:42:49 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by mail.telemere.net (Postfix) with ESMTP id C929D1D101; Wed, 23 Aug 2000 20:42:49 -0500 (CDT) Date: Wed, 23 Aug 2000 20:42:45 -0500 (CDT) From: Visigoth <visigoth@telemere.net> To: Mike Smith <msmith@freebsd.org> Cc: cvs-all@freebsd.org, current@freebsd.org Subject: Re: DPT revision....(broken drivers in -STABLE) In-Reply-To: <200008232348.QAA00996@mass.osd.bsdi.com> Message-ID: <Pine.BSF.4.21.0008232039140.4428-100000@mail.telemere.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 > I would recommend just preserving the relevant files and updating the > rest of the system right now. I think that Matt Dodd is working on this > right now. A quick look at the code doesn't suggest anything immediately > wrong with the new interrupt assignment code; has anything else in this > system been changed? No, this system is a regular workstation, and the issue has been tested on a fresh install. Nothin special... Yea, I already did that on at least one machine... (preserving relevent files) Thanks, again, anyway I can help test would be happy to... Visigoth Damieon Stark Sr. Unix Systems Administrator visigoth@telemere.net PGP Public Key: www.telemere.net/~visigoth/visigoth.asc ____________________________________________________________________________ | M$ -Where do you want to go today? | Linux -Where do you want to go tomorrow?| FreeBSD - The POWER to serve Freebsd -Are you guys coming or what? | http://www.freebsd.org | | - ---------------------------------------------------------------------------- -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.1i iQA/AwUBOaRviDnmC/+RTnGeEQI6hwCglJixNl6ygc5lB1htPYHhHnq/gfgAoPyg PFi6lsLGRVUo9zDr+sC4oPx8 =jmqK -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 19:18:29 2000 Delivered-To: cvs-all@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [63.67.141.99]) by hub.freebsd.org (Postfix) with ESMTP id ED80737B422; Wed, 23 Aug 2000 19:18:24 -0700 (PDT) Received: from localhost (winter@localhost) by sasami.jurai.net (8.9.3/8.8.7) with ESMTP id WAA46626; Wed, 23 Aug 2000 22:18:23 -0400 (EDT) Date: Wed, 23 Aug 2000 22:18:23 -0400 (EDT) From: "Matthew N. Dodd" <winter@jurai.net> To: Mike Smith <msmith@FreeBSD.ORG> Cc: Visigoth <visigoth@telemere.net>, current@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: DPT revision....(broken drivers in -STABLE) In-Reply-To: <200008232348.QAA00996@mass.osd.bsdi.com> Message-ID: <Pine.BSF.4.21.0008232214440.686-100000@sasami.jurai.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 23 Aug 2000, Mike Smith wrote: > I would recommend just preserving the relevant files and updating the > rest of the system right now. I think that Matt Dodd is working on > this right now. A quick look at the code doesn't suggest anything > immediately wrong with the new interrupt assignment code; has anything > else in this system been changed? I don't remember seeing a verbose boot log posted so I can't really say whats wrong. There is no difference b/t the -CURRENT and 4-STABLE versions of dpt_pci.c so I'm not sure what could be causing the problem. Of course it may be that the cards don't work in -CURRENT either. Not having a test system with PCI DPT boards somewhat limits my ability to wring these things out. I won't refuse a rackmounted compaq with PCI and EISA slots and a brace of DPT and Smart2 RAID cards if someone sends me one. Who knows? I might even be able to beat a bit on the management tools then. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 19:32:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D64E37B422; Wed, 23 Aug 2000 19:32:43 -0700 (PDT) Received: (from horikawa@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA93612; Wed, 23 Aug 2000 19:32:43 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Message-Id: <200008240232.TAA93612@freefall.freebsd.org> From: Kazuo Horikawa <horikawa@FreeBSD.org> Date: Wed, 23 Aug 2000 19:32:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man7 groff_mm.7 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG horikawa 2000/08/23 19:32:43 PDT Modified files: ja_JP.eucJP/man/man7 groff_mm.7 Log: Avoid "\fB.TC\fP" at the begining of line. .TC in this sequence seems to be treated as an undefined macro. This was translated version only problem. (Originial English manual does not have this problem.) Revision Changes Path 1.8 +2 -2 doc/ja_JP.eucJP/man/man7/groff_mm.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 19:36:12 2000 Delivered-To: cvs-all@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 4919637B423; Wed, 23 Aug 2000 19:36:06 -0700 (PDT) Received: from fledge.watson.org (robert@fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.9.3/8.9.3) with SMTP id WAA26845; Wed, 23 Aug 2000 22:36:02 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Wed, 23 Aug 2000 22:36:01 -0400 (EDT) From: Robert Watson <rwatson@FreeBSD.org> X-Sender: robert@fledge.watson.org To: Brian Feldman <green@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_resource.c In-Reply-To: <200008162328.QAA28755@freefall.freebsd.org> Message-ID: <Pine.NEB.3.96L.1000823222605.26339A-100000@fledge.watson.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 16 Aug 2000, Brian Feldman wrote: > green 2000/08/16 16:28:55 PDT > > Modified files: > sys/kern kern_resource.c > Log: > Fix a couple cases where p_trespass wasn't transitioned into place. > > Make RTP_SET (rtprio) only accessible to real root, not root in jails. Errrr.... case RTP_SET: - if (pcred->pc_ucred->cr_uid && pcred->p_ruid && - pcred->pc_ucred->cr_uid != p->p_ucred->cr_uid && - pcred->p_ruid != p->p_ucred->cr_uid) + if (p_trespass(curp, p) != 0) return (EPERM); /* disallow setting rtprio in most cases if not superuser */ - if (suser(curp)) { + if (suser_xxx(NULL, curp, PRISON_ROOT) != 0) { That suser->suser_xxx change enables RTP_SET, not disables it. And the p_trespass replacement is not equivilent to what was there: p_trespass() allows suser_xxx(..., PRISON_ROOT) to override it, whereas the original check didn't. The other part of the commit (donice()) appears to do a redundant prison check, and checks suser() twice as a result. There does need to be some cleanup here, but this cleanup is not the right cleanup. I have a pile of commits sitting ready to do on this code which clean this up, and make way for the capability support. Please back out your commit. Robert N M Watson robert@fledge.watson.org http://www.watson.org/~robert/ PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 TIS Labs at Network Associates, Safeport Network Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 20:12: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id 2858437B424; Wed, 23 Aug 2000 20:11:56 -0700 (PDT) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.11.0/8.9.3) with ESMTP id e7O3BOG68159; Wed, 23 Aug 2000 20:11:24 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200008240311.e7O3BOG68159@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: nate@yogotech.com (Nate Williams) Cc: Josef Karthauser <joe@pavilion.net>, Warner Losh <imp@village.org>, "David O'Brien" <obrien@FREEBSD.ORG>, Jeroen Ruigrok van der Werven <asmodai@FREEBSD.ORG>, Doug Barton <DougB@gorean.org>, Ade Lovett <ade@FREEBSD.ORG>, Jonathan Lemon <jlemon@FREEBSD.ORG>, cvs-committers@FREEBSD.ORG, cvs-all@FREEBSD.ORG Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-Reply-To: <200008231731.LAA12980@nomad.yogotech.com> Date: Wed, 23 Aug 2000 20:11:24 -0700 From: Peter Wemm <peter@netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Nate Williams wrote: > > > > Although it should be a file in CVSROOT, and so will probably turn > > > > up with a cvsup of the repository. > > > > > > Obviously not under CVS control right? You may need to talk with John > > > Polstra about having a file that's constantly changing that is not under > > > CVS control, to make sure CVSup will 'Do The Right Thing'. > > > > Of course not :) :) I'd imagine that it would get handled in the same > > way as any of the prechecked out files in CVSROOT/. (history.README > > for instance :) > > Possibly, but there may be an optimization that could be done that John > would know about. I know that some of the files are handled 'special' > via CVSup configurations, which optimizes how they are updated. There is no problem with this, it will happen automagically without John needing to do anything. CVSup will replicate it as a plain file. Whether it uses rsync or simple replacement will be pretty much academic for such a small file. > Nate > Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 21:30: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA9F937B423; Wed, 23 Aug 2000 21:30:01 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA35727; Wed, 23 Aug 2000 21:30:01 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008240430.VAA35727@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Wed, 23 Aug 2000 21:30:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux linux_misc.c linux_util.c linux_util.h X-FreeBSD-CVS-Branch: RELENG_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/23 21:30:01 PDT Modified files: (Branch: RELENG_3) sys/i386/linux linux_misc.c linux_util.c linux_util.h Log: MFC: Add bounds checking to stackgap_alloc. Requested by: kris Revision Changes Path 1.51.2.10 +3 -1 src/sys/i386/linux/Attic/linux_misc.c 1.7.2.2 +5 -2 src/sys/i386/linux/Attic/linux_util.c 1.7.2.3 +9 -11 src/sys/i386/linux/Attic/linux_util.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 21:51:40 2000 Delivered-To: cvs-all@freebsd.org Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 9123037B424; Wed, 23 Aug 2000 21:51:34 -0700 (PDT) Date: Thu, 24 Aug 2000 00:51:33 -0400 (EDT) From: Brian Fundakowski Feldman <green@FreeBSD.org> X-Sender: green@green.dyndns.org To: Robert Watson <rwatson@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_resource.c In-Reply-To: <Pine.NEB.3.96L.1000823222605.26339A-100000@fledge.watson.org> Message-ID: <Pine.BSF.4.21.0008240041310.52828-100000@green.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 23 Aug 2000, Robert Watson wrote: > On Wed, 16 Aug 2000, Brian Feldman wrote: > > > green 2000/08/16 16:28:55 PDT > > > > Modified files: > > sys/kern kern_resource.c > > Log: > > Fix a couple cases where p_trespass wasn't transitioned into place. > > > > Make RTP_SET (rtprio) only accessible to real root, not root in jails. > > Errrr.... > > case RTP_SET: > - if (pcred->pc_ucred->cr_uid && pcred->p_ruid && > - pcred->pc_ucred->cr_uid != p->p_ucred->cr_uid && > - pcred->p_ruid != p->p_ucred->cr_uid) > + if (p_trespass(curp, p) != 0) > return (EPERM); > /* disallow setting rtprio in most cases if not superuser > */ > - if (suser(curp)) { > + if (suser_xxx(NULL, curp, PRISON_ROOT) != 0) { > > That suser->suser_xxx change enables RTP_SET, not disables it. And the > p_trespass replacement is not equivilent to what was there: p_trespass() > allows suser_xxx(..., PRISON_ROOT) to override it, whereas the original > check didn't. The other part of the commit (donice()) appears to do a > redundant prison check, and checks suser() twice as a result. Err... the first check? No way, man, that's not right. Read the first part of the if (). This check specifically allows root in jail OR out of jail, whereas p_trestpass doesn't. How can you possibly evaluate it to mean otherwise? The first to checks in the if statement... If you're sure about the suser_xxx/suser, it does seem you're right, I'll fix that back. > > There does need to be some cleanup here, but this cleanup is not the right > cleanup. I have a pile of commits sitting ready to do on this code which > clean this up, and make way for the capability support. Please back out > your commit. > > Robert N M Watson > > robert@fledge.watson.org http://www.watson.org/~robert/ > PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 > TIS Labs at Network Associates, Safeport Network Services > > -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 21:54:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9480737B423; Wed, 23 Aug 2000 21:54:32 -0700 (PDT) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA37917; Wed, 23 Aug 2000 21:54:32 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200008240454.VAA37917@freefall.freebsd.org> From: Brian Feldman <green@FreeBSD.org> Date: Wed, 23 Aug 2000 21:54:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_resource.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/08/23 21:54:32 PDT Modified files: sys/kern kern_resource.c Log: Revert the suser -> suser_xxx change made previously. It was right before. Revision Changes Path 1.59 +2 -2 src/sys/kern/kern_resource.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 22:38:20 2000 Delivered-To: cvs-all@freebsd.org Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 8333B37B42C; Wed, 23 Aug 2000 22:38:15 -0700 (PDT) Date: Thu, 24 Aug 2000 01:38:14 -0400 (EDT) From: Brian Fundakowski Feldman <green@FreeBSD.org> X-Sender: green@green.dyndns.org To: Robert Watson <rwatson@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_resource.c In-Reply-To: <Pine.BSF.4.21.0008240041310.52828-100000@green.dyndns.org> Message-ID: <Pine.BSF.4.21.0008240133530.52828-100000@green.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Err... the first check? No way, man, that's not right. Read the > first part of the if (). This check specifically allows root in > jail OR out of jail, whereas p_trestpass doesn't. How can you > possibly evaluate it to mean otherwise? The first to checks in the if > statement... I hope this didn't come out as sounding flippant and derogatory. I'm sorry... tired and feeling sick, don't mind me, please. It still stands that I believe my original analysis of that specific part was correct, so I'd appreciate more input. -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Aug 23 22:47:51 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 618) id D38B637B423; Wed, 23 Aug 2000 22:47:47 -0700 (PDT) Subject: Re: cvs commit: src/sys/pci ti_fw.h ti_fw2.h if_ti.c if_tireg.h src/share/man/man4 ti.4 In-Reply-To: <20000823172642.T4854@fw.wintelcom.net> from Alfred Perlstein at "Aug 23, 2000 05:26:42 pm" To: bright@wintelcom.net (Alfred Perlstein) Date: Wed, 23 Aug 2000 22:47:47 -0700 (PDT) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: <20000824054747.D38B637B423@hub.freebsd.org> From: wpaul@FreeBSD.ORG (Bill Paul) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > * Bill Paul <wpaul@FreeBSD.org> [000823 17:08] wrote: > > wpaul 2000/08/23 17:08:00 PDT > > > > Modified files: (Branch: RELENG_4) > > sys/pci ti_fw.h ti_fw2.h if_ti.c if_tireg.h > > share/man/man4 ti.4 > > Log: > > MFC: merge in the support for 1000baseT Tigon cards from -current. > > This also updates the firmware to 12.4.11+wpaul_hacks. > > > > Revision Changes Path > > 1.6.2.3 +1089 -978 src/sys/pci/ti_fw.h > > 1.6.2.3 +2185 -1504src/sys/pci/ti_fw2.h > > ugh, isn't there a better way to do this? Not that I can see. Importing the firmware source is not an option, since you need a gcc cross-compiler targeted for mips-any-elf to build it. (Not to mention binutils with a customized version of GNU as.) Also, the source for the Tigon 1 firmware is not available anyway. > > 1.25.2.7 +80 -21 src/sys/pci/if_ti.c > > 1.13.2.3 +8 -5 src/sys/pci/if_tireg.h > > 1.7.2.2 +18 -8 src/share/man/man4/ti.4 > > > > Have you heard back from them about integrating your changes? > Just curious. "Them?" You mean the giant ants? If you mean Alteon, they don't really need my changes. The 12.4.13 firmware has problems setting/negotiating 10/100 modes with the 1000baseT cards. The 12.4.11 version works correctly, but lacks a couple of the bug fixes from 12.4.13. So I merged some of the fixes from 12.4.13 back into 12.4.11 and made a custom image. I assume that eventually they'll come out with a 12.4.14 or something that fixes all this. Ken Merry asked about the 10/100 bugs on the Alteon open firmware mailing list, but they haven't answered yet. -Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 0: 1:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C61237B43E; Thu, 24 Aug 2000 00:01:14 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA56435; Thu, 24 Aug 2000 00:01:14 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200008240701.AAA56435@freefall.freebsd.org> From: Warner Losh <imp@FreeBSD.org> Date: Thu, 24 Aug 2000 00:01:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard pccarddevs X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/08/24 00:01:13 PDT Modified files: sys/dev/pccard pccarddevs Log: o Fix unterminated comment o Sync to NetBSD (rev NetBSD-user edited-log): 1.97 onoe add Samsung MagicLAN SWL-2000N 1.96 gmcgarry Add entries for all Xircom ethernet models. 1.95 onoe Add Farallon SkyLINE 11mb card as Intersil Prism2 [...] 1.94 joda add 3Com 3CRWE737A (AirConnect) 1.93 soren Include vendor name for IBM products. 1.92 onoe Add Farallon SkyLINE Wireless LAN Card for awi(4) [...] 1.91 soren Add Olicom GoCard. 1.90 gmcgarry Clean up XIRCOM entries - Add entry for Xircom CreditCard Ethernet + Modem 28 - Add entry for Intel EtherExpress PRO/100 - Add entry for Compaq Netelligent 10/100 Ethernet 1.89 is RATOC REX-R280 (another if_mbe_pcmcia card) support by [...] 1.88 joda Panasonic KXLC003 1.87 scw [...] SOHOware PCMCIA Ethernet card, model ND5100-E [...] 1.86 itojun add CIS for Corega Wireless LAN PCC-11 [...] o Minor diffs between the two files corrected to aid future sync. Revision Changes Path 1.5 +53 -28 src/sys/dev/pccard/pccarddevs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 0: 1:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35B9237B423; Thu, 24 Aug 2000 00:01:50 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA56503; Thu, 24 Aug 2000 00:01:50 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200008240701.AAA56503@freefall.freebsd.org> From: Warner Losh <imp@FreeBSD.org> Date: Thu, 24 Aug 2000 00:01:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard pccarddevs.h pccarddevs_data.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/08/24 00:01:50 PDT Modified files: sys/dev/pccard pccarddevs.h pccarddevs_data.h Log: Sync to pccarddevs 1.5 Revision Changes Path 1.5 +104 -51 src/sys/dev/pccard/pccarddevs.h 1.5 +182 -56 src/sys/dev/pccard/pccarddevs_data.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 0:29: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2732937B423; Thu, 24 Aug 2000 00:29:05 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA60960; Thu, 24 Aug 2000 00:29:05 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008240729.AAA60960@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Thu, 24 Aug 2000 00:29:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4/man4.i386 linux.4 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/24 00:29:05 PDT Modified files: share/man/man4/man4.i386 Makefile Added files: share/man/man4/man4.i386 linux.4 Log: Import the new linux(4) manual page, which will be useful when the linux(8) utility and manual page go away. Revision Changes Path 1.127 +3 -2 src/share/man/man4/man4.i386/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 1: 0:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D441D37B423; Thu, 24 Aug 2000 01:00:30 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA64570; Thu, 24 Aug 2000 01:00:30 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008240800.BAA64570@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Thu, 24 Aug 2000 01:00:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/common loader.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/24 01:00:30 PDT Modified files: sys/boot/common loader.8 Log: List loader.conf and friends in the FILES section. Requested by: obrien Revision Changes Path 1.20 +7 -1 src/sys/boot/common/loader.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 1: 1:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 50CC737B422; Thu, 24 Aug 2000 01:01:49 -0700 (PDT) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA64747; Thu, 24 Aug 2000 01:01:49 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200008240801.BAA64747@freefall.freebsd.org> From: KATO Takenori <kato@FreeBSD.org> Date: Thu, 24 Aug 2000 01:01:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa/bs bsif.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/08/24 01:01:49 PDT Modified files: sys/i386/isa/bs bsif.c Log: Fixed freeing wrong address. Submitted by: Nobuyuki Koganemaru <kogane@koganemaru.co.jp> Revision Changes Path 1.13 +2 -2 src/sys/i386/isa/bs/bsif.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 1: 6:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD40D37B424; Thu, 24 Aug 2000 01:06:13 -0700 (PDT) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA66773; Thu, 24 Aug 2000 01:06:13 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200008240806.BAA66773@freefall.freebsd.org> From: KATO Takenori <kato@FreeBSD.org> Date: Thu, 24 Aug 2000 01:06:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa/bs bsif.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/08/24 01:06:13 PDT Modified files: (Branch: RELENG_4) sys/i386/isa/bs bsif.c Log: MFC: Fixed freeing wrong address (rev. 1.13). Revision Changes Path 1.10.2.1 +2 -2 src/sys/i386/isa/bs/bsif.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 1:17:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D3CD37B424; Thu, 24 Aug 2000 01:17:29 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA68099; Thu, 24 Aug 2000 01:17:28 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008240817.BAA68099@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Thu, 24 Aug 2000 01:17:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/wine Makefile ports/emulators/wine/files README.patch patch-3.3-sys-fsgs ports/emulators/wine/pkg MESSAGE PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/24 01:17:25 PDT Modified files: emulators/wine Makefile emulators/wine/files README.patch emulators/wine/pkg MESSAGE PLIST Removed files: emulators/wine/files patch-3.3-sys-fsgs Log: Remove the fsgs patch, which is no longer required. PR: 11287 Reported by: Juergen Lock <nox@jelal.kn-bremen.de> Submitted by: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> Revision Changes Path 1.92 +1 -2 ports/emulators/wine/Makefile 1.5 +7 -25 ports/emulators/wine/files/README.patch 1.3 +0 -4 ports/emulators/wine/pkg/MESSAGE 1.12 +0 -1 ports/emulators/wine/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 1:19:42 2000 Delivered-To: cvs-all@freebsd.org Received: from genius.systems.pavilion.net (genius.systems.pavilion.net [212.74.1.100]) by hub.freebsd.org (Postfix) with ESMTP id DC31D37B424; Thu, 24 Aug 2000 01:19:38 -0700 (PDT) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id 0C4889B2D; Thu, 24 Aug 2000 09:19:38 +0100 (BST) Date: Thu, 24 Aug 2000 09:19:38 +0100 From: Josef Karthauser <joe@pavilion.net> To: Doug Barton <Doug@gorean.org> Cc: Peter Wemm <peter@netplex.com.au>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvsweb links in cvs commit messages Message-ID: <20000824091937.A534@pavilion.net> References: <200008232050.e7NKotG63344@netplex.com.au> <Pine.BSF.4.21.0008231638190.9100-100000@dt051n1f.san.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <Pine.BSF.4.21.0008231638190.9100-100000@dt051n1f.san.rr.com>; from Doug@gorean.org on Wed, Aug 23, 2000 at 04:39:02PM -0700 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 04:39:02PM -0700, Doug Barton wrote: > On Wed, 23 Aug 2000, Peter Wemm wrote: > > > Incidently, what I could deal with is if we create an atomic commit number > > and collect the individual rcs deltas together and store it in a file or > > database or something. Then we can put one http:// link in the bottom of > > emails which allows looking up by commit number and do all the cvsweb links > > from there. That keeps the html junk down to a minimum and actually gains > > us something in the process - we can use other tools to mine the data for > > MFC'ing complete changes etc. > > Without speaking for him, that's essentially exactly what Josef is > working on currently. To be more accurate, I'm restructuring the scripts in CVSROOT so that this kind of functionality can be built in in a more controlled way. The other goals were mentioned in another mail to this thread. Joe -- Josef Karthauser FreeBSD: How many times have you booted today? Technical Manager Viagra for your server (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@uk.freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 1:20:27 2000 Delivered-To: cvs-all@freebsd.org Received: from genius.systems.pavilion.net (genius.systems.pavilion.net [212.74.1.100]) by hub.freebsd.org (Postfix) with ESMTP id 6730A37B423; Thu, 24 Aug 2000 01:20:23 -0700 (PDT) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id D6F3A9B2D; Thu, 24 Aug 2000 09:20:22 +0100 (BST) Date: Thu, 24 Aug 2000 09:20:22 +0100 From: Josef Karthauser <joe@pavilion.net> To: Christopher Masto <chris@netmonger.net> Cc: Nate Williams <nate@yogotech.com>, Warner Losh <imp@village.org>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000824092022.B534@pavilion.net> References: <20000814003636.A74639@pavilion.net> <200008140753.AAA08038@netplex.com.au> <20000819124824.E88550@lucifer.bart.nl> <20000822161835.B807@dragon.nuxi.com> <20000823091714.D650@pavilion.net> <200008231648.KAA02382@billy-club.village.org> <200008231704.LAA02617@billy-club.village.org> <200008231707.LAA12343@nomad.yogotech.com> <20000823184240.B13773@pavilion.net> <20000823184807.A13252@netmonger.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000823184807.A13252@netmonger.net>; from chris@netmonger.net on Wed, Aug 23, 2000 at 06:48:07PM -0400 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 06:48:07PM -0400, Christopher Masto wrote: > On Wed, Aug 23, 2000 at 06:42:40PM +0100, Josef Karthauser wrote: > > If we had an incrementing number we need locking and a counter file. > > If we have "utime/user" we probably don't. > > If it's an issue of the extra work to do the locking and counting, > Perl has File::CounterFile pre-cooked and ready to serve. Probably :) but it isn't guaranteed to be installed everywhere that these scripts are going to be running :) Joe -- Josef Karthauser FreeBSD: How many times have you booted today? Technical Manager Viagra for your server (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@uk.freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 1:24:24 2000 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (beachchick.freebsd.dk [212.242.34.254]) by hub.freebsd.org (Postfix) with ESMTP id 290DE37B423; Thu, 24 Aug 2000 01:24:02 -0700 (PDT) Received: from critter (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id KAA06193; Thu, 24 Aug 2000 10:23:00 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Peter Jeremy <peter.jeremy@alcatel.com.au> Cc: Brian Somers <brian@awfulhak.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes In-Reply-To: Your message of "Thu, 24 Aug 2000 08:51:24 +1000." <00Aug24.085126est.115204@border.alcanet.com.au> Date: Thu, 24 Aug 2000 10:23:00 +0200 Message-ID: <6191.967105380@critter> From: Poul-Henning Kamp <phk@critter.freebsd.dk> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <00Aug24.085126est.115204@border.alcanet.com.au>, Peter Jeremy write s: >On 2000-Aug-23 18:00:50 +0100, Brian Somers <brian@awfulhak.org> wrote: >>> On Sat, Aug 19, 2000 at 12:48:24PM +0200, Jeroen Ruigrok van der Werven wrote: >>> And I and many are strongly for it. It certainly would help us to UTSL >>> and not make stupid replies to commit messages because the source hasn't >>> made it locally yet and thus people haven't read the diffs. >> >>I agree. I'm a victim (?) of making stupid comments recently based >>on commit messages rather than source diffs. > >An alternative viewpoint is that the commit messages should be >adequate to explain the change without reference to the source. Unless they contain the diff they will never *quite* be adequate for all uses, and in general I would prefer not to have commit messages be verbose enough to reach that target. One diff is worth at least DEV_BSIZE words :-) -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 1:29:19 2000 Delivered-To: cvs-all@freebsd.org Received: from lists01.iafrica.com (lists01.iafrica.com [196.7.0.141]) by hub.freebsd.org (Postfix) with ESMTP id 8F2BE37B423; Thu, 24 Aug 2000 01:29:14 -0700 (PDT) Received: from nwl.fw.uunet.co.za ([196.31.2.162]) by lists01.iafrica.com with esmtp (Exim 3.12 #2) id 13RsNs-0003Q3-00; Thu, 24 Aug 2000 10:29:12 +0200 Received: (from nobody@localhost) by nwl.fw.uunet.co.za (8.8.8/8.6.9) id KAA20719; Thu, 24 Aug 2000 10:29:10 +0200 (SAST) Received: by nwl.fw.uunet.co.za via recvmail id 20492; Thu Aug 24 10:28:03 2000 Received: from sheldonh (helo=axl.fw.uunet.co.za) by axl.fw.uunet.co.za with local-esmtp (Exim 3.16 #1) id 13RsMl-000KTk-00; Thu, 24 Aug 2000 10:28:03 +0200 From: Sheldon Hearn <sheldonh@uunet.co.za> To: cvs-committers@freebsd.org Cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/share/man/man4/man4.i386 linux.4 Makefile In-reply-to: Your message of "Thu, 24 Aug 2000 00:29:05 MST." <200008240729.AAA60960@freefall.freebsd.org> Date: Thu, 24 Aug 2000 10:28:03 +0200 Message-ID: <78723.967105683@axl.fw.uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 24 Aug 2000 00:29:05 MST, Sheldon Hearn wrote: > Modified files: > share/man/man4/man4.i386 Makefile > Added files: > share/man/man4/man4.i386 linux.4 > Log: > Import the new linux(4) manual page, which will be useful when the > linux(8) utility and manual page go away. Marcel is increibly busy at the moment and was only able to give this a cursory glance. _Please_ would someone in the know tell me whether my description of the Linuxulator's function is accurate, and if not how it could be improved. I basically guessed the wording of the third bullet point. :-) Thanks, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 1:32:34 2000 Delivered-To: cvs-all@freebsd.org Received: from lists01.iafrica.com (lists01.iafrica.com [196.7.0.141]) by hub.freebsd.org (Postfix) with ESMTP id 348D937B423; Thu, 24 Aug 2000 01:32:28 -0700 (PDT) Received: from nwl.fw.uunet.co.za ([196.31.2.162]) by lists01.iafrica.com with esmtp (Exim 3.12 #2) id 13RsQz-0003TJ-00; Thu, 24 Aug 2000 10:32:25 +0200 Received: (from nobody@localhost) by nwl.fw.uunet.co.za (8.8.8/8.6.9) id KAA21333; Thu, 24 Aug 2000 10:32:24 +0200 (SAST) Received: by nwl.fw.uunet.co.za via recvmail id 21167; Thu Aug 24 10:31:18 2000 Received: from sheldonh (helo=axl.fw.uunet.co.za) by axl.fw.uunet.co.za with local-esmtp (Exim 3.16 #1) id 13RsPu-000KZ6-00; Thu, 24 Aug 2000 10:31:18 +0200 From: Sheldon Hearn <sheldonh@uunet.co.za> To: Paul Saab <ps@freebsd.org> Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_proc.c In-reply-to: Your message of "Wed, 23 Aug 2000 14:41:26 MST." <200008232141.OAA48980@freefall.freebsd.org> Date: Thu, 24 Aug 2000 10:31:18 +0200 Message-ID: <79055.967105878@axl.fw.uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 23 Aug 2000 14:41:26 MST, Paul Saab wrote: > Modified files: > sys/kern kern_proc.c > Log: > Add a sysctl which hides all process except those that belong to > the user asking for the process list. Where should this be documented? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 1:33:11 2000 Delivered-To: cvs-all@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 4F99D37B42C; Thu, 24 Aug 2000 01:33:08 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e7O8V2e04402; Thu, 24 Aug 2000 01:31:02 -0700 (PDT) Date: Thu, 24 Aug 2000 01:31:02 -0700 From: Alfred Perlstein <bright@wintelcom.net> To: Poul-Henning Kamp <phk@critter.freebsd.dk> Cc: Peter Jeremy <peter.jeremy@alcatel.com.au>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20000824013102.B1209@fw.wintelcom.net> References: <00Aug24.085126est.115204@border.alcanet.com.au> <6191.967105380@critter> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <6191.967105380@critter>; from phk@critter.freebsd.dk on Thu, Aug 24, 2000 at 10:23:00AM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Poul-Henning Kamp <phk@critter.freebsd.dk> [000824 01:24] wrote: > In message <00Aug24.085126est.115204@border.alcanet.com.au>, Peter Jeremy writes: > > > >An alternative viewpoint is that the commit messages should be > >adequate to explain the change without reference to the source. > > Unless they contain the diff they will never *quite* be adequate > for all uses, and in general I would prefer not to have commit > messages be verbose enough to reach that target. > > One diff is worth at least DEV_BSIZE words :-) I agree, but only for seasoned developers, for newbies tracking our CVS lists it serves as a running commentary that can prove invaluable for training and recruiting new talent. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 1:49:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F226937B43C; Thu, 24 Aug 2000 01:49:44 -0700 (PDT) Received: (from yokota@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA71897; Thu, 24 Aug 2000 01:49:44 -0700 (PDT) (envelope-from yokota@FreeBSD.org) Message-Id: <200008240849.BAA71897@freefall.freebsd.org> From: Kazutaka YOKOTA <yokota@FreeBSD.org> Date: Thu, 24 Aug 2000 01:49:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/isa psm.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG yokota 2000/08/24 01:49:44 PDT Modified files: sys/isa psm.c Log: Add spltty()/splx() in the watchdog timer routine. Revision Changes Path 1.29 +4 -1 src/sys/isa/psm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 1:50:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BEC137B423; Thu, 24 Aug 2000 01:50:38 -0700 (PDT) Received: (from yokota@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA72052; Thu, 24 Aug 2000 01:50:38 -0700 (PDT) (envelope-from yokota@FreeBSD.org) Message-Id: <200008240850.BAA72052@freefall.freebsd.org> From: Kazutaka YOKOTA <yokota@FreeBSD.org> Date: Thu, 24 Aug 2000 01:50:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/isa psm.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG yokota 2000/08/24 01:50:38 PDT Modified files: (Branch: RELENG_4) sys/isa psm.c Log: MFC: rev 1.28 and 1.29. - Fix GENERIC_MOUSE_ENTRY. - Add spltty() and splx(). Revision Changes Path 1.23.2.4 +5 -2 src/sys/isa/psm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 2:33:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA8EE37B423; Thu, 24 Aug 2000 02:33:30 -0700 (PDT) Received: (from takawata@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA77683; Thu, 24 Aug 2000 02:33:30 -0700 (PDT) (envelope-from takawata@FreeBSD.org) Message-Id: <200008240933.CAA77683@freefall.freebsd.org> From: Takanori Watanabe <takawata@FreeBSD.org> Date: Thu, 24 Aug 2000 02:33:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/acpi acpi.c src/sys/dev/acpi/aml aml_amlmem.c aml_amlmem.h aml_common.c aml_common.h aml_env.h aml_evalobj.c aml_evalobj.h aml_memman.c aml_memman.h aml_name.c aml_name.h aml_obj.c aml_obj.h aml_parse.c aml_parse.h ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG takawata 2000/08/24 02:33:30 PDT Added files: sys/dev/acpi acpi.c sys/dev/acpi/aml aml_amlmem.c aml_amlmem.h aml_common.c aml_common.h aml_env.h aml_evalobj.c aml_evalobj.h aml_memman.c aml_memman.h aml_name.c aml_name.h aml_obj.c aml_obj.h aml_parse.c aml_parse.h aml_region.c aml_region.h aml_status.h aml_store.c aml_store.h sys/i386/i386 acpi_machdep.c sys/sys acpi.h Log: Add orthogonal part of ACPI support code. This does not come effect until non-orthogonal part is commited. Approved by: jkh Obtained from: ACPI for FreeBSD CVS repository. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 2:33:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 16A3737B43C; Thu, 24 Aug 2000 02:33:45 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA77739; Thu, 24 Aug 2000 02:33:45 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008240933.CAA77739@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Thu, 24 Aug 2000 02:33:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 services.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/24 02:33:44 PDT Modified files: share/man/man5 services.5 Log: Whitepace-only: normalize line-breaking. Revision Changes Path 1.7 +5 -5 src/share/man/man5/services.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 2:53:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C116237B424; Thu, 24 Aug 2000 02:53:15 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA79389; Thu, 24 Aug 2000 02:53:14 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008240953.CAA79389@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Thu, 24 Aug 2000 02:53:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/Mesa3 Makefile ports/graphics/Mesa3/files md5 ports/graphics/Mesa3/patches patch-ad patch-aa ports/graphics/Mesa3/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/24 02:53:14 PDT Modified files: graphics/Mesa3 Makefile graphics/Mesa3/files md5 graphics/Mesa3/patches patch-aa graphics/Mesa3/pkg PLIST Added files: graphics/Mesa3/patches patch-ad Log: Update to 3.2.1 and make it working on XFree86-4. On XFree86-4 the port builds/installs only GLU and glut libraries and associated includes, so GL applications have a chance to use GL library provided by the XFree itself. Please don't forget to set XFREE86_VERSION=4 in your make.conf if you are building it with XFee86-4. Approved by: jseger (previous maintainer) Revision Changes Path 1.41 +30 -4 ports/graphics/Mesa3/Makefile 1.18 +2 -2 ports/graphics/Mesa3/files/md5 1.19 +5 -5 ports/graphics/Mesa3/patches/patch-aa 1.17 +13 -13 ports/graphics/Mesa3/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 3:23:53 2000 Delivered-To: cvs-all@freebsd.org Received: from zibbi.mikom.csir.co.za (zibbi.mikom.csir.co.za [146.64.24.58]) by hub.freebsd.org (Postfix) with ESMTP id EF1A737B423; Thu, 24 Aug 2000 03:23:38 -0700 (PDT) Received: (from jhay@localhost) by zibbi.mikom.csir.co.za (8.10.1/8.10.1) id e7OANOb76460; Thu, 24 Aug 2000 12:23:24 +0200 (SAT) From: John Hay <jhay@icomtek.co.za> Message-Id: <200008241023.e7OANOb76460@zibbi.mikom.csir.co.za> Subject: Re: cvs commit: src/include unistd.h src/lib/libcrypt Makefile crypt.3 crypt.c crypt.h src/lib/libutil Makefile login_cap.c In-Reply-To: <200008220215.TAA35477@freefall.freebsd.org> from Brian Feldman at "Aug 21, 2000 07:15:55 pm" To: green@FreeBSD.org (Brian Feldman) Date: Thu, 24 Aug 2000 12:23:24 +0200 (SAT) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Log: ... > The simple synopsis is: > edit login.conf; add a passwd_format field set to "des" or "md5"; go nuts :) Has anyone been able to change passwords after this? I just get: ############ beast:/home/jhay # passwd root Changing local password for root. New password: Retype new password: Bus error (core dumped) beast:/home/jhay # ############ I have tried it first without changing /etc/login.conf and then by adding ":passwd_format=md5:" to the default block, but it does not change. I have done a make world with USA_RESIDENT=NO and without NODESCRYPTLINKS in my make.conf with todays source. John -- John Hay -- John.Hay@icomtek.csir.co.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 3:25: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id 3A4B437B423; Thu, 24 Aug 2000 03:25:02 -0700 (PDT) Received: from localhost (iwasaki.imasy.or.jp [202.227.24.92]) by tasogare.imasy.or.jp (8.10.2+3.3W/3.7W-tasogare/smtpfeed 1.07) with ESMTP id e7OAP0r35912; Thu, 24 Aug 2000 19:25:00 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) To: takawata@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/acpi acpi.c src/sys/dev/acpi/aml aml_amlmem.c aml_amlmem.h aml_common.c aml_common.h aml_env.h aml_evalobj.c aml_evalobj.h aml_memman.c aml_memman.h aml_name.c aml_name.h aml_obj.c aml_obj.h aml_parse.c aml_parse.h ... In-Reply-To: <200008240933.CAA77683@freefall.freebsd.org> References: <200008240933.CAA77683@freefall.freebsd.org> X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000824192456M.iwasaki@jp.FreeBSD.org> Date: Thu, 24 Aug 2000 19:24:56 +0900 From: Mitsuru IWASAKI <iwasaki@jp.FreeBSD.org> X-Dispatcher: imput version 20000228(IM140) Lines: 23 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > takawata 2000/08/24 02:33:30 PDT > > Added files: > sys/dev/acpi acpi.c > sys/dev/acpi/aml aml_amlmem.c aml_amlmem.h aml_common.c > aml_common.h aml_env.h aml_evalobj.c > aml_evalobj.h aml_memman.c aml_memman.h > aml_name.c aml_name.h aml_obj.c aml_obj.h > aml_parse.c aml_parse.h aml_region.c > aml_region.h aml_status.h aml_store.c > aml_store.h > sys/i386/i386 acpi_machdep.c > sys/sys acpi.h > Log: > Add orthogonal part of ACPI support code. > This does not come effect until non-orthogonal part is commited. > > Approved by: jkh > Obtained from: ACPI for FreeBSD CVS repository. Wow! You really did it!! Please don't forget updating release note for CURRENT :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 4:20:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F3BDB37B423; Thu, 24 Aug 2000 04:20:47 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA91612; Thu, 24 Aug 2000 04:20:47 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008241120.EAA91612@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Thu, 24 Aug 2000 04:20:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/encompass Makefile ports/www/encompass/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/24 04:20:47 PDT Modified files: www/encompass Makefile www/encompass/files md5 Log: Update to 0.2.0. Revision Changes Path 1.5 +2 -2 ports/www/encompass/Makefile 1.3 +1 -1 ports/www/encompass/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 5: 6:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B426537B422; Thu, 24 Aug 2000 05:06:41 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA97749; Thu, 24 Aug 2000 05:06:41 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008241206.FAA97749@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Thu, 24 Aug 2000 05:06:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11 Makefile ports/x11/gnomeres_applet Makefile ports/x11/gnomeres_applet/files md5 ports/x11/gnomeres_applet/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/24 05:06:41 PDT Modified files: x11 Makefile Added files: x11/gnomeres_applet Makefile x11/gnomeres_applet/files md5 x11/gnomeres_applet/pkg COMMENT DESCR PLIST Log: Add gnomeres_applet - a GNOME applet for changing XFree display modes. Revision Changes Path 1.298 +2 -1 ports/x11/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 5: 7: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 930B237B424; Thu, 24 Aug 2000 05:06:59 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA97796; Thu, 24 Aug 2000 05:06:59 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008241206.FAA97796@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Thu, 24 Aug 2000 05:06:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/24 05:06:59 PDT Modified files: . modules Log: gnomeres_applet --> ports/x11/gnomeres_applet Revision Changes Path 1.1600 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 5: 9:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BFE037B423; Thu, 24 Aug 2000 05:09:37 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA98519; Thu, 24 Aug 2000 05:09:37 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008241209.FAA98519@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Thu, 24 Aug 2000 05:09:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese Makefile ports/chinese/xmms Makefile ports/chinese/xmms/files md5 ports/chinese/xmms/patches patch-aa patch-ab patch-ac patch-ad patch-ae xmms-1.2.x-xfont.diff ports/chinese/xmms/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/24 05:09:37 PDT Modified files: chinese Makefile Added files: chinese/xmms Makefile chinese/xmms/files md5 chinese/xmms/patches patch-aa patch-ab patch-ac patch-ad patch-ae xmms-1.2.x-xfont.diff chinese/xmms/pkg COMMENT DESCR PLIST Log: Initial import of zh-xmms 1.2.2 zh-xmms is an audio player with a Winamp GUI. PR: 20719 Submitted by: Clive Lin <clive@CirX.ORG> Revision Changes Path 1.49 +2 -1 ports/chinese/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 5:17:27 2000 Delivered-To: cvs-all@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id D509A37B42C; Thu, 24 Aug 2000 05:17:23 -0700 (PDT) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id AAA25624; Fri, 25 Aug 2000 00:17:22 +1200 (NZST) Message-Id: <200008241217.AAA25624@ducky.nz.freebsd.org> From: "Dan Langille" <dan@langille.org> Organization: langille.org To: Maxim Sobolev <sobomax@FreeBSD.ORG>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Date: Fri, 25 Aug 2000 00:17:18 +1200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvs commit: ports/graphics/Mesa3 Makefile ports/graphics/Mesa3/files md5 ports/graphics/Mesa3/patches patch-ad patc Reply-To: dan@langille.org In-reply-to: <200008240953.CAA79389@freefall.freebsd.org> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 24 Aug 2000, at 2:53, Maxim Sobolev wrote: > sobomax 2000/08/24 02:53:14 PDT > > Modified files: > graphics/Mesa3 Makefile > graphics/Mesa3/files md5 > graphics/Mesa3/patches patch-aa > graphics/Mesa3/pkg PLIST > Added files: > graphics/Mesa3/patches patch-ad > Log: > Update to 3.2.1 and make it working on XFree86-4. > > On XFree86-4 the port builds/installs only GLU and glut libraries and > associated includes, so GL applications have a chance to use GL library > provided by the XFree itself. Please don't forget to set > XFREE86_VERSION=4 in your make.conf if you are building it with XFee86-4. We got problems? $ make -V PKGNAME "Makefile", line 36: Malformed conditional (${XFREE86_VERSION} == 3) "Makefile", line 36: Need an operator "Makefile", line 41: if-less else "Makefile", line 41: Need an operator "Makefile", line 48: if-less endif "Makefile", line 48: Need an operator "Makefile", line 60: Malformed conditional (${XFREE86_VERSION} > 3) "Makefile", line 60: Need an operator "Makefile", line 64: if-less endif "Makefile", line 64: Need an operator make: fatal errors encountered -- cannot continue -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ FreshPorts - http://freshports.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 5:24:25 2000 Delivered-To: cvs-all@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id B549837B423; Thu, 24 Aug 2000 05:24:17 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.106]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id PAA04070; Thu, 24 Aug 2000 15:23:54 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.9.3/8.9.3) with ESMTP id PAA22010; Thu, 24 Aug 2000 15:23:21 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39A513B2.B4FB2B27@FreeBSD.org> Date: Thu, 24 Aug 2000 15:23:14 +0300 From: Maxim Sobolev <sobomax@FreeBSD.org> Organization: Vega International Capital X-Mailer: Mozilla 4.74 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: dan@langille.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/graphics/Mesa3 Makefile ports/graphics/Mesa3/files md5 ports/graphics/Mesa3/patches patch-ad patc References: <200008241217.AAA25624@ducky.nz.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dan Langille wrote: > On 24 Aug 2000, at 2:53, Maxim Sobolev wrote: > > > sobomax 2000/08/24 02:53:14 PDT > > > > Modified files: > > graphics/Mesa3 Makefile > > graphics/Mesa3/files md5 > > graphics/Mesa3/patches patch-aa > > graphics/Mesa3/pkg PLIST > > Added files: > > graphics/Mesa3/patches patch-ad > > Log: > > Update to 3.2.1 and make it working on XFree86-4. > > > > On XFree86-4 the port builds/installs only GLU and glut libraries and > > associated includes, so GL applications have a chance to use GL library > > provided by the XFree itself. Please don't forget to set > > XFREE86_VERSION=4 in your make.conf if you are building it with XFee86-4. > > We got problems? > > $ make -V PKGNAME > "Makefile", line 36: Malformed conditional (${XFREE86_VERSION} == 3) > "Makefile", line 36: Need an operator > "Makefile", line 41: if-less else > "Makefile", line 41: Need an operator > "Makefile", line 48: if-less endif > "Makefile", line 48: Need an operator > "Makefile", line 60: Malformed conditional (${XFREE86_VERSION} > 3) > "Makefile", line 60: Need an operator > "Makefile", line 64: if-less endif > "Makefile", line 64: Need an operator > make: fatal errors encountered -- cannot continue You are probably have to update your bsd.port.*.mk to catch recent Satishi's XFREE86_VERSION additon. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 5:34:54 2000 Delivered-To: cvs-all@freebsd.org Received: from argon.gryphonsoft.com (mcut-b-078.resnet.purdue.edu [128.211.209.78]) by hub.freebsd.org (Postfix) with ESMTP id C25F937B424; Thu, 24 Aug 2000 05:34:51 -0700 (PDT) Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id CD1A2197F; Thu, 24 Aug 2000 07:33:12 -0500 (EST) Date: Thu, 24 Aug 2000 07:33:12 -0500 From: Will Andrews <will@physics.purdue.edu> To: Kevin Lo <kevlo@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/chinese Makefile ports/chinese/xmms Makefile ports/chinese/xmms/files md5 ports/chinese/xmms/patches patch-aa patch-ab patch-ac patch-ad patch-ae xmms-1.2.x-xfont.diff ports/chinese/xmms/pkg COMMENT DESCR PLIST Message-ID: <20000824073312.X8055@argon.gryphonsoft.com> Mail-Followup-To: Kevin Lo <kevlo@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200008241209.FAA98519@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008241209.FAA98519@freefall.freebsd.org>; from kevlo@FreeBSD.org on Thu, Aug 24, 2000 at 05:09:37AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Aug 24, 2000 at 05:09:37AM -0700, Kevin Lo wrote: > Modified files: > chinese Makefile > Added files: > chinese/xmms Makefile > chinese/xmms/files md5 > chinese/xmms/patches patch-aa patch-ab patch-ac patch-ad > patch-ae xmms-1.2.x-xfont.diff > chinese/xmms/pkg COMMENT DESCR PLIST > Log: > Initial import of zh-xmms 1.2.2 > zh-xmms is an audio player with a Winamp GUI. > PR: 20719 > Submitted by: Clive Lin <clive@CirX.ORG> Um Kevin, this probably was supposed to be given a repository copy, just as I told you in your email about addport 2 days ago. **sigh** -- Will Andrews <will@physics.purdue.edu> <will@FreeBSD.org> GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 5:42:42 2000 Delivered-To: cvs-all@freebsd.org Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 35B2C37B423; Thu, 24 Aug 2000 05:42:37 -0700 (PDT) Date: Thu, 24 Aug 2000 08:42:36 -0400 (EDT) From: Brian Fundakowski Feldman <green@FreeBSD.org> X-Sender: green@green.dyndns.org To: John Hay <jhay@icomtek.co.za> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include unistd.h src/lib/libcrypt Makefile crypt.3 crypt.c crypt.h src/lib/libutil Makefile login_cap.c In-Reply-To: <200008241023.e7OANOb76460@zibbi.mikom.csir.co.za> Message-ID: <Pine.BSF.4.21.0008240839460.52828-100000@green.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 24 Aug 2000, John Hay wrote: > > Log: > ... > > The simple synopsis is: > > edit login.conf; add a passwd_format field set to "des" or "md5"; go nuts :) > > Has anyone been able to change passwords after this? I just get: > > ############ > beast:/home/jhay # passwd root > Changing local password for root. > New password: > Retype new password: > Bus error (core dumped) > beast:/home/jhay # > ############ Try debugging it? I have not seen this ever, nor has anyone reported it in testing, and I can't think of anything that would be going wrong. Seems like this is maybe an NIS bug? -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 6:25: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D7AA37B422; Thu, 24 Aug 2000 06:25:06 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA13413; Thu, 24 Aug 2000 06:25:06 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008241325.GAA13413@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 06:25:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/freepwing Makefile ports/japanese/freepwing/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 06:25:06 PDT Modified files: japanese/freepwing Makefile japanese/freepwing/files md5 Log: Updated to 1.2.1 Revision Changes Path 1.9 +2 -2 ports/japanese/freepwing/Makefile 1.4 +1 -1 ports/japanese/freepwing/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 6:32:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3077A37B424; Thu, 24 Aug 2000 06:32:31 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA14148; Thu, 24 Aug 2000 06:32:31 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008241332.GAA14148@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Thu, 24 Aug 2000 06:32:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/Mesa3 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/24 06:32:31 PDT Modified files: graphics/Mesa3 Makefile Log: Fix a breakage when XFREE86_VERSION is not defined in make.conf (I think asami should move it into BEFOREPORTMK section). Revision Changes Path 1.42 +3 -1 ports/graphics/Mesa3/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 6:35:28 2000 Delivered-To: cvs-all@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id A740D37B422; Thu, 24 Aug 2000 06:35:20 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.106]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id QAA06342; Thu, 24 Aug 2000 16:35:04 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.9.3/8.9.3) with ESMTP id QAA22390; Thu, 24 Aug 2000 16:35:04 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39A52480.34ED079F@FreeBSD.org> Date: Thu, 24 Aug 2000 16:34:56 +0300 From: Maxim Sobolev <sobomax@FreeBSD.org> Organization: Vega International Capital X-Mailer: Mozilla 4.74 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: dan@langille.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, Dmitry Karasik <dk@raven.plab.ku.dk> Subject: Re: cvs commit: ports/graphics/Mesa3 Makefile ports/graphics/Mesa3/files md5 ports/graphics/Mesa3/patches patch-ad patc References: <200008241217.AAA25624@ducky.nz.freebsd.org> <39A513B2.B4FB2B27@FreeBSD.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Maxim Sobolev wrote: > Dan Langille wrote: > > > On 24 Aug 2000, at 2:53, Maxim Sobolev wrote: > > > > > sobomax 2000/08/24 02:53:14 PDT > > > > > > Modified files: > > > graphics/Mesa3 Makefile > > > graphics/Mesa3/files md5 > > > graphics/Mesa3/patches patch-aa > > > graphics/Mesa3/pkg PLIST > > > Added files: > > > graphics/Mesa3/patches patch-ad > > > Log: > > > Update to 3.2.1 and make it working on XFree86-4. > > > > > > On XFree86-4 the port builds/installs only GLU and glut libraries and > > > associated includes, so GL applications have a chance to use GL library > > > provided by the XFree itself. Please don't forget to set > > > XFREE86_VERSION=4 in your make.conf if you are building it with XFee86-4. > > > > We got problems? > > > > $ make -V PKGNAME > > "Makefile", line 36: Malformed conditional (${XFREE86_VERSION} == 3) > > "Makefile", line 36: Need an operator > > "Makefile", line 41: if-less else > > "Makefile", line 41: Need an operator > > "Makefile", line 48: if-less endif > > "Makefile", line 48: Need an operator > > "Makefile", line 60: Malformed conditional (${XFREE86_VERSION} > 3) > > "Makefile", line 60: Need an operator > > "Makefile", line 64: if-less endif > > "Makefile", line 64: Need an operator > > make: fatal errors encountered -- cannot continue > > You are probably have to update your bsd.port.*.mk to catch recent Satishi's > XFREE86_VERSION additon. Shame on me! I forgot to check if asami added XFREE86_VERSION into BEFOREPORTMK section (he didn't in fact). I'm sorry 'bout that :(. Should be fixed now. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 6:36:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F22F137B424; Thu, 24 Aug 2000 06:36:20 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA17565; Thu, 24 Aug 2000 06:36:20 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008241336.GAA17565@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 06:36:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/edict-sdic Makefile ports/japanese/edict-sdic/files md5 ports/japanese/edict-sdic/pkg COMMENT PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 06:36:20 PDT Modified files: japanese/edict-sdic Makefile japanese/edict-sdic/files md5 japanese/edict-sdic/pkg COMMENT PLIST Log: Names of distfiles (the original dictonary) were changed. And this port was broken. Fixed it. Revision Changes Path 1.4 +5 -5 ports/japanese/edict-sdic/Makefile 1.4 +2 -2 ports/japanese/edict-sdic/files/md5 1.3 +1 -1 ports/japanese/edict-sdic/pkg/COMMENT 1.2 +1 -1 ports/japanese/edict-sdic/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 6:39:16 2000 Delivered-To: cvs-all@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id EB9EA37B422; Thu, 24 Aug 2000 06:39:11 -0700 (PDT) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id BAA25975; Fri, 25 Aug 2000 01:39:10 +1200 (NZST) Message-Id: <200008241339.BAA25975@ducky.nz.freebsd.org> From: "Dan Langille" <dan@langille.org> Organization: langille.org To: Maxim Sobolev <sobomax@FreeBSD.ORG>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, Dmitry Karasik <dk@raven.plab.ku.dk> Date: Fri, 25 Aug 2000 01:39:08 +1200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvs commit: ports/graphics/Mesa3 Makefile ports/graphics/Mesa3/files md5 ports/graphics/Mesa3/patches patch-ad pa Reply-To: dan@langille.org In-reply-to: <39A52480.34ED079F@FreeBSD.org> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 24 Aug 2000, at 16:34, Maxim Sobolev wrote: > Shame on me! I forgot to check if asami added XFREE86_VERSION into > BEFOREPORTMK section (he didn't in fact). I'm sorry 'bout that :(. > > Should be fixed now. Yes. All fixed. Thank you. -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ FreshPorts - http://freshports.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 6:42:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F18937B424; Thu, 24 Aug 2000 06:42:11 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA36104; Thu, 24 Aug 2000 06:42:11 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008241342.GAA36104@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 06:42:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/edict-fpw Makefile ports/japanese/edict-fpw/files md5 ports/japanese/edict-fpw/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 06:42:11 PDT Modified files: japanese/edict-fpw Makefile japanese/edict-fpw/files md5 japanese/edict-fpw/pkg COMMENT DESCR PLIST Log: Updated to version 1.2.1 - Names of distfiles (the original dictonary) were changed. - Previous dictonary is only Japanese-English one. This version's dictonary includes English-Japanese one, too. Revision Changes Path 1.3 +9 -7 ports/japanese/edict-fpw/Makefile 1.3 +3 -3 ports/japanese/edict-fpw/files/md5 1.3 +1 -1 ports/japanese/edict-fpw/pkg/COMMENT 1.3 +4 -4 ports/japanese/edict-fpw/pkg/DESCR 1.2 +2 -2 ports/japanese/edict-fpw/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 6:54:36 2000 Delivered-To: cvs-all@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id A6E4C37B422; Thu, 24 Aug 2000 06:54:30 -0700 (PDT) Received: from fledge.watson.org (robert@fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.9.3/8.9.3) with SMTP id JAA31751; Thu, 24 Aug 2000 09:54:30 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Thu, 24 Aug 2000 09:54:30 -0400 (EDT) From: Robert Watson <rwatson@FreeBSD.org> X-Sender: robert@fledge.watson.org To: Brian Fundakowski Feldman <green@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_resource.c In-Reply-To: <Pine.BSF.4.21.0008240133530.52828-100000@green.dyndns.org> Message-ID: <Pine.NEB.3.96L.1000824094015.31571C-100000@fledge.watson.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 24 Aug 2000, Brian Fundakowski Feldman wrote: > > Err... the first check? No way, man, that's not right. Read the > > first part of the if (). This check specifically allows root in > > jail OR out of jail, whereas p_trestpass doesn't. How can you > > possibly evaluate it to mean otherwise? The first to checks in the if > > statement... > > I hope this didn't come out as sounding flippant and derogatory. I'm > sorry... tired and feeling sick, don't mind me, please. It still > stands that I believe my original analysis of that specific part was > correct, so I'd appreciate more input. Don't worry about it -- rereading my e-mail, I didn't mean to come out looking as aggressive as I did, also suffering from somewhat of a lack of sleep, et al, due to all the travel lately :-). On the first set of checks, my real concern is that they are not equivilent: - if (pcred->pc_ucred->cr_uid && pcred->p_ruid && - pcred->pc_ucred->cr_uid != p->p_ucred->cr_uid && - pcred->p_ruid != p->p_ucred->cr_uid) vs. if (!PRISON_CHECK(p1, p2)) return (ESRCH); if (p1->p_cred->p_ruid == p2->p_cred->p_ruid) return (0); if (p1->p_ucred->cr_uid == p2->p_cred->p_ruid) return (0); if (p1->p_cred->p_ruid == p2->p_ucred->cr_uid) return (0); if (p1->p_ucred->cr_uid == p2->p_ucred->cr_uid) return (0); The new check allows processes to do rtprio stuff in situations where previously, they could not. Part of this is because the whole multiple uid cred thing is getting a bit out of hand (due to POSIX, et al). I misinterpretted in saying that the out-of-jail check has been removed, as the later suser_xxx() call happens after a PRISON_CHECK(), and the old code did not have the PRISON_CHECK() call (just my patches to it, hence my thinking it had now become broken :-). Now, I'm actually not claiming the permissions change here isn't good, as making our checks more consistent is "good". However, we probably need to figure out if these changes are a problem or not--(a) whether we violate any specs through these changes, and (b) whether the permission changes now allow a class of processes to change their real time priority that should not be able to. Frankly, all these "your uid equals their uid" checks in different forms irritate me, and I'd rather see a migration towards consistent checks. What I should do is bundle up my patches for this code (essentially, a set of calls, p_can_kill(), p_can_see(), p_can_debug(), p_can_schedule(), etc) and we can merge them into the source base to simplify things. Many of the p_can_* calls actually invoke p_can_see(), which effectively breaks out the prison check from the super-user check. In my mind, the prison check is really a scoping issue rather than strictly a invoking privilege check. Robert N M Watson robert@fledge.watson.org http://www.watson.org/~robert/ PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 TIS Labs at Network Associates, Safeport Network Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 7: 0:41 2000 Delivered-To: cvs-all@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id C199637B422; Thu, 24 Aug 2000 07:00:36 -0700 (PDT) Received: from fledge.watson.org (robert@fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.9.3/8.9.3) with SMTP id KAA31821; Thu, 24 Aug 2000 10:00:36 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Thu, 24 Aug 2000 10:00:36 -0400 (EDT) From: Robert Watson <rwatson@FreeBSD.org> X-Sender: robert@fledge.watson.org To: Brian Fundakowski Feldman <green@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_resource.c In-Reply-To: <Pine.NEB.3.96L.1000824094015.31571C-100000@fledge.watson.org> Message-ID: <Pine.NEB.3.96L.1000824095738.31688B-100000@fledge.watson.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 24 Aug 2000, Robert Watson wrote: > On Thu, 24 Aug 2000, Brian Fundakowski Feldman wrote: > > misinterpretted in saying that the out-of-jail check has been removed, as > the later suser_xxx() call happens after a PRISON_CHECK(), and the old > code did not have the PRISON_CHECK() call (just my patches to it, hence my > thinking it had now become broken :-). Dammit, never read patches right after you get up. As you note in the recent commit comment, the PRISON_ROOT must be removed from suser(), or it allows jail'd processes to do nasty scheduling things. There are actually two types of privilege being checked for here: 1) Can the process influence the scheduling of the target pid regardless of credentials on either process (ok within jail) 2) Can the process violate system policy for safe scheduling of user processes (not ok within jail) The first check, currently in p_trespass(), but perhaps to be pulled out, has to do with issue 1. The suser() you just fixed (at my request) has to do with issue 2. Robert N M Watson robert@fledge.watson.org http://www.watson.org/~robert/ PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 TIS Labs at Network Associates, Safeport Network Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 7: 7:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D715F37B42C; Thu, 24 Aug 2000 07:07:30 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA82159; Thu, 24 Aug 2000 07:07:30 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008241407.HAA82159@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Thu, 24 Aug 2000 07:07:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/mingw-gcc Makefile ports/devel/mingw-gcc/patches patch-aa patch-ab ports/devel/mingw-gcc/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/24 07:07:30 PDT Modified files: devel/mingw-gcc Makefile devel/mingw-gcc/pkg PLIST Added files: devel/mingw-gcc/patches patch-aa patch-ab Log: Fix extras. Do not write outside the working directory during the build process. PR: ports/20740 Submitted by: Toshihiro Inoue <tino@pa2.so-net.ne.jp> (MAINTAINER) Revision Changes Path 1.3 +12 -16 ports/devel/mingw-gcc/Makefile 1.2 +8 -10 ports/devel/mingw-gcc/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 7:12:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 60BD337B424; Thu, 24 Aug 2000 07:12:31 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA82944; Thu, 24 Aug 2000 07:12:31 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008241412.HAA82944@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Thu, 24 Aug 2000 07:12:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/ruby-opengl Makefile ports/graphics/ruby-opengl/files md5 ports/graphics/ruby-opengl/patches patch-aa ports/graphics/ruby-opengl/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/24 07:12:31 PDT Modified files: graphics Makefile Added files: graphics/ruby-opengl Makefile graphics/ruby-opengl/files md5 graphics/ruby-opengl/patches patch-aa graphics/ruby-opengl/pkg COMMENT DESCR PLIST Log: Add ruby-opengl, OpenGL/GLU/GLUT interface modules for Ruby. Revision Changes Path 1.211 +2 -1 ports/graphics/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 7:13: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B4A5937B422; Thu, 24 Aug 2000 07:13:01 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA83073; Thu, 24 Aug 2000 07:13:01 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008241413.HAA83073@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Thu, 24 Aug 2000 07:13:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/24 07:13:01 PDT Modified files: . modules Log: ruby-opengl --> ports/graphics/ruby-opengl Revision Changes Path 1.1601 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 7:17:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A6ABC37B423; Thu, 24 Aug 2000 07:17:07 -0700 (PDT) Received: (from roger@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA83452; Thu, 24 Aug 2000 07:17:07 -0700 (PDT) (envelope-from roger@FreeBSD.org) Message-Id: <200008241417.HAA83452@freefall.freebsd.org> From: Roger Hardiman <roger@FreeBSD.org> Date: Thu, 24 Aug 2000 07:17:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/bktr bktr_os.c bktr_reg.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG roger 2000/08/24 07:17:07 PDT Modified files: sys/dev/bktr bktr_os.c bktr_reg.h Log: Fix newbus resource allocations PR: kern/18744 Submitted by: Alexander Langer <alex@cichlids.com> Revision Changes Path 1.12 +15 -11 src/sys/dev/bktr/bktr_os.c 1.39 +3 -1 src/sys/dev/bktr/bktr_reg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 7:39:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1EEBA37B423; Thu, 24 Aug 2000 07:39:51 -0700 (PDT) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA85896; Thu, 24 Aug 2000 07:39:51 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200008241439.HAA85896@freefall.freebsd.org> From: KATO Takenori <kato@FreeBSD.org> Date: Thu, 24 Aug 2000 07:39:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa/bs bsif.c X-FreeBSD-CVS-Branch: RELENG_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/08/24 07:39:46 PDT Modified files: (Branch: RELENG_3) sys/i386/isa/bs bsif.c Log: - MFC: Fixed freeing wrong address (rev. 1.13). - Added $FreeBSD$. Revision Changes Path 1.9.2.1 +3 -1 src/sys/i386/isa/bs/bsif.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 7:51:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C821B37B42C; Thu, 24 Aug 2000 07:51:20 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA87534; Thu, 24 Aug 2000 07:51:20 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008241451.HAA87534@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Thu, 24 Aug 2000 07:51:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/rtc Makefile ports/emulators/rtc/files rtc_linux.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/24 07:51:20 PDT Modified files: emulators/rtc Makefile emulators/rtc/files rtc_linux.c Log: Chase the recent moving of linux_ioctl.h. PR: ports/20818 Submitted by: Sean-Paul Rees <sean@dreamfire.net> Revision Changes Path 1.5 +8 -2 ports/emulators/rtc/Makefile 1.2 +1 -1 ports/emulators/rtc/files/rtc_linux.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 8: 1:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D6DE37B422; Thu, 24 Aug 2000 08:01:45 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA88887; Thu, 24 Aug 2000 08:01:45 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008241501.IAA88887@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Thu, 24 Aug 2000 08:01:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/vmware2 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/24 08:01:45 PDT Modified files: emulators/vmware2 Makefile Log: Do in Makefile as make groks, not as Ruby groks. (make groks it though) .if exists?(..) -> .if exists(..) Revision Changes Path 1.22 +2 -2 ports/emulators/vmware2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 8:30:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BEC0637B422; Thu, 24 Aug 2000 08:30:32 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA93627; Thu, 24 Aug 2000 08:30:31 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008241530.IAA93627@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 08:30:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/mypaedia-fpw-package Makefile ports/japanese/mypaedia-fpw-package/files md5 ports/japanese/mypaedia-fpw-package/patches patch-aa ports/japanese/mypaedia-fpw-package/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 08:30:30 PDT Modified files: japanese/mypaedia-fpw-package Makefile japanese/mypaedia-fpw-package/files md5 japanese/mypaedia-fpw-package/pkg PLIST Removed files: japanese/mypaedia-fpw-package/patches patch-aa Log: Updated to version 1.0.3 Revision Changes Path 1.3 +4 -5 ports/japanese/mypaedia-fpw-package/Makefile 1.2 +1 -1 ports/japanese/mypaedia-fpw-package/files/md5 1.2 +1 -1 ports/japanese/mypaedia-fpw-package/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 8:31:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD3E437B424; Thu, 24 Aug 2000 08:31:32 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA93783; Thu, 24 Aug 2000 08:31:32 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008241531.IAA93783@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 08:31:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/srd-fpw-package Makefile ports/japanese/srd-fpw-package/files md5 ports/japanese/srd-fpw-package/patches patch-aa ports/japanese/srd-fpw-package/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 08:31:32 PDT Modified files: japanese/srd-fpw-package Makefile japanese/srd-fpw-package/files md5 japanese/srd-fpw-package/pkg PLIST Removed files: japanese/srd-fpw-package/patches patch-aa Log: Updated to version 1.0.3 Revision Changes Path 1.2 +4 -4 ports/japanese/srd-fpw-package/Makefile 1.2 +1 -1 ports/japanese/srd-fpw-package/files/md5 1.2 +1 -1 ports/japanese/srd-fpw-package/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 8:37: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 404DD37B423; Thu, 24 Aug 2000 08:37:00 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA94483; Thu, 24 Aug 2000 08:37:00 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200008241537.IAA94483@freefall.freebsd.org> From: Poul-Henning Kamp <phk@FreeBSD.org> Date: Thu, 24 Aug 2000 08:36:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c src/sys/kern kern_descrip.c vfs_conf.c src/sys/miscfs/specfs spec_vnops.c src/sys/sys conf.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/08/24 08:36:59 PDT Modified files: sys/fs/devfs devfs.h devfs_devs.c devfs_vfsops.c devfs_vnops.c sys/kern kern_descrip.c vfs_conf.c sys/miscfs/specfs spec_vnops.c sys/sys conf.h Log: Fix panic when removing open device (found by bp@) Implement subdirs. Build the full "devicename" for cloning functions. Fix panic when deleted device goes away. Collaps devfs_dir and devfs_dirent structures. Add proper cloning to the /dev/fd* "device-"driver. Fix a bug in make_dev_alias() handling which made aliases appear multiple times. Use devfs_clone to implement getdiskbyname() Make specfs maintain the stat(2) timestamps per dev_t Revision Changes Path 1.2 +16 -11 src/sys/fs/devfs/devfs.h 1.3 +57 -24 src/sys/fs/devfs/devfs_devs.c 1.3 +4 -21 src/sys/fs/devfs/devfs_vfsops.c 1.3 +119 -75 src/sys/fs/devfs/devfs_vnops.c 1.89 +39 -7 src/sys/kern/kern_descrip.c 1.52 +21 -1 src/sys/kern/vfs_conf.c 1.144 +12 -4 src/sys/miscfs/specfs/spec_vnops.c 1.116 +4 -1 src/sys/sys/conf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 8:59:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9961637B423; Thu, 24 Aug 2000 08:59:45 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA96831; Thu, 24 Aug 2000 08:59:45 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200008241559.IAA96831@freefall.freebsd.org> From: Poul-Henning Kamp <phk@FreeBSD.org> Date: Thu, 24 Aug 2000 08:59:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_descrip.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/08/24 08:59:45 PDT Modified files: sys/kern kern_descrip.c Log: Dang, a _clone routine escaped #ifdef DEVFS containment. Revision Changes Path 1.90 +3 -1 src/sys/kern/kern_descrip.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 9: 7:20 2000 Delivered-To: cvs-all@freebsd.org Received: from lists01.iafrica.com (lists01.iafrica.com [196.7.0.141]) by hub.freebsd.org (Postfix) with ESMTP id CF14C37B424; Thu, 24 Aug 2000 09:07:14 -0700 (PDT) Received: from nwl.fw.uunet.co.za ([196.31.2.162]) by lists01.iafrica.com with esmtp (Exim 3.12 #2) id 13RzWq-000358-00; Thu, 24 Aug 2000 18:06:56 +0200 Received: (from nobody@localhost) by nwl.fw.uunet.co.za (8.8.8/8.6.9) id SAA12983; Thu, 24 Aug 2000 18:06:55 +0200 (SAST) Received: by nwl.fw.uunet.co.za via recvmail id 12850; Thu Aug 24 18:06:20 2000 Received: from sheldonh (helo=axl.fw.uunet.co.za) by axl.fw.uunet.co.za with local-esmtp (Exim 3.16 #1) id 13RzWG-0001rH-00; Thu, 24 Aug 2000 18:06:20 +0200 From: Sheldon Hearn <sheldonh@uunet.co.za> To: "Jeroen C. van Gelderen" <jeroen@vangelderen.org> Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/share/man/man4/man4.i386 linux.4 Makefile In-reply-to: Your message of "Thu, 24 Aug 2000 12:01:46 -0400." <39A546EA.B719B096@vangelderen.org> Date: Thu, 24 Aug 2000 18:06:20 +0200 Message-ID: <7146.967133180@axl.fw.uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 24 Aug 2000 12:01:46 -0400, "Jeroen C. van Gelderen" wrote: > "Linux to native system call vector redirection" > > just *might* be better worded as > > "Linux to native system call translation" > > I don't think 'vector' is appropriate and translation is > indeed being done AFAIK. Anyone have any better suggestions, or is Jeroen's wording good? I wouldn't know one way or another. For all I know, the Linuxulator runs on tomato juice. ;-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 9:11: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1CD6A37B422; Thu, 24 Aug 2000 09:10:58 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA99144; Thu, 24 Aug 2000 09:10:58 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Thu, 24 Aug 2000 09:10:58 -0700 (PDT) From: <kevlo@FreeBSD.org> Message-Id: <200008241610.JAA99144@freefall.freebsd.org> To: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: ports/chinese Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Will Andrew wrote: > On Thu, Aug 24, 2000 at 05:09:37AM -0700, Kevin Lo wrote: >> Modified files: >> chinese Makefile >> Added files: >> chinese/xmms Makefile >> chinese/xmms/files md5 >> chinese/xmms/patches patch-aa patch-ab patch-ac patch-ad >> patch-ae xmms-1.2.x-xfont.diff >> chinese/xmms/pkg COMMENT DESCR PLIST >> Log: >> Initial import of zh-xmms 1.2.2 >> zh-xmms is an audio player with a Winamp GUI. >> PR: 20719 >> Submitted by: Clive Lin <clive@CirX.ORG> > > Um Kevin, this probably was supposed to be given a repository copy, just > > **sigh** I didn't check my e-mails 'cause I was busy :-( Sorry, my fault... > -- > Will Andrews <will@physics.purdue.edu> <will@FreeBSD.org> > GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- > O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ > G++ e>++++ h! r- y? - Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 9:27:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 77DAB37B423; Thu, 24 Aug 2000 09:27:09 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA01191; Thu, 24 Aug 2000 09:27:09 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008241627.JAA01191@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 09:27:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/mypaedia-fpw Makefile ports/japanese/mypaedia-fpw/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 09:27:09 PDT Modified files: japanese/mypaedia-fpw Makefile japanese/mypaedia-fpw/files md5 Log: Updated to version 1.4.1 Revision Changes Path 1.2 +7 -7 ports/japanese/mypaedia-fpw/Makefile 1.2 +1 -1 ports/japanese/mypaedia-fpw/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 9:35:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5908537B424; Thu, 24 Aug 2000 09:35:15 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA02341; Thu, 24 Aug 2000 09:35:15 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008241635.JAA02341@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Thu, 24 Aug 2000 09:35:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/ruby-tmail Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/24 09:35:15 PDT Modified files: mail/ruby-tmail Makefile Log: BUILD_DEPENDS upon ruby-amstd. Pointed out by: reberto Revision Changes Path 1.2 +3 -2 ports/mail/ruby-tmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 9:36:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EBBC337B424; Thu, 24 Aug 2000 09:36:19 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA02480; Thu, 24 Aug 2000 09:36:19 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Message-Id: <200008241636.JAA02480@freefall.freebsd.org> From: Bruce Mah <bmah@FreeBSD.org> Date: Thu, 24 Aug 2000 09:36:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/vtwm Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bmah 2000/08/24 09:36:19 PDT Modified files: x11-wm/vtwm Makefile Log: Update my MAINTAINER's email address in Makefile. Revision Changes Path 1.6 +2 -2 ports/x11-wm/vtwm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 9:49: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 630DE37B424; Thu, 24 Aug 2000 09:49:03 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA04219; Thu, 24 Aug 2000 09:49:03 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008241649.JAA04219@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Thu, 24 Aug 2000 09:49:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/ruby/pkg PLIST ports/lang/ruby-man/pkg PLIST ports/japanese/ruby-man/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/24 09:49:02 PDT Modified files: lang/ruby/pkg PLIST lang/ruby-man/pkg PLIST japanese/ruby-man/pkg PLIST Log: Remove ${PREFIX}/share/doc/ruby correctly. (giving up if it fails) Revision Changes Path 1.14 +1 -1 ports/lang/ruby/pkg/PLIST 1.2 +1 -0 ports/lang/ruby-man/pkg/PLIST 1.2 +1 -0 ports/japanese/ruby-man/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 9:59: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from genius.systems.pavilion.net (genius.systems.pavilion.net [212.74.1.100]) by hub.freebsd.org (Postfix) with ESMTP id 3A4F337B423; Thu, 24 Aug 2000 09:59:03 -0700 (PDT) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id 885799B2D; Thu, 24 Aug 2000 17:59:01 +0100 (BST) Date: Thu, 24 Aug 2000 17:59:01 +0100 From: Josef Karthauser <joe@pavilion.net> To: Ben Smithurst <ben@FreeBSD.org> Cc: Alfred Perlstein <bright@wintelcom.net>, Doug Barton <Doug@gorean.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvsweb links in cvs commit messages Message-ID: <20000824175901.C8962@pavilion.net> References: <20000823093626.Z4854@fw.wintelcom.net> <Pine.BSF.4.21.0008231154070.7876-100000@dt051n1f.san.rr.com> <20000823120642.C4854@fw.wintelcom.net> <20000823202312.S20036@strontium.scientia.demon.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000823202312.S20036@strontium.scientia.demon.co.uk>; from ben@FreeBSD.org on Wed, Aug 23, 2000 at 08:23:12PM +0100 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 08:23:12PM +0100, Ben Smithurst wrote: > Alfred Perlstein wrote: > > > * Doug Barton <Doug@gorean.org> [000823 11:57] wrote: > >> > >> As far as I can see, no one is complaining. My point (so long > >> ago...) was simply that I find the links in the commit messages incredibly > >> useful, and I believe others would as well. If anyone needs the procmail > >> recipe let me know, I can pass on the one I cribbed from hoek... > > > > Can you put it up on a url somewhere? > > file:/usr/ports/mail/cvsmail is another alternative. :-) > > David O'Brien said that hoek's perl script didn't actually link to the > specific diff associated with the commit, just to the file itself, so > you still had to find the "diffs from a to b" link in that page to click > on. I've never used his version though. I just know my program does > the Right Thing. On a related thing it would be really useful to be able to do: http://www.FreeBSD.org/cgi/cvsweb.cgi/src/bin/chmod/chmod.1?rev=HEAD to pull out head release of a file. Joe -- Josef Karthauser FreeBSD: How many times have you booted today? Technical Manager Viagra for your server (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@uk.freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 10:51:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 84E7A37B423; Thu, 24 Aug 2000 10:51:16 -0700 (PDT) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA12465; Thu, 24 Aug 2000 10:51:16 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200008241751.KAA12465@freefall.freebsd.org> From: Brian Feldman <green@FreeBSD.org> Date: Thu, 24 Aug 2000 10:51:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libcrypt crypt.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/08/24 10:51:16 PDT Modified files: lib/libcrypt crypt.c Log: Still have to support libscrypt for now :( Add #defines to take DES out for it. Revision Changes Path 1.16 +4 -2 src/lib/libcrypt/crypt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 10:54:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 65CCA37B422; Thu, 24 Aug 2000 10:54:45 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA12997; Thu, 24 Aug 2000 10:54:45 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008241754.KAA12997@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Thu, 24 Aug 2000 10:54:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/i386/fdisk fdisk.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/24 10:54:45 PDT Modified files: sbin/i386/fdisk fdisk.c Log: - When adjusting the end of a partition to lie on a cylinder boundary, don't adjust the size, but the actual end. - Break out some of the sanity checks on partitions into a sanitize_partition function. - When adjusting partitions, always adjust the start "up", and the end "down" so that we stay within the boundaries of the original request. - Various small nits found by bde. Reported by: bde, imp, rgrimes Revision Changes Path 1.46 +95 -47 src/sbin/i386/fdisk/fdisk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 10:56:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DD3D37B42C; Thu, 24 Aug 2000 10:56:22 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA13214; Thu, 24 Aug 2000 10:56:22 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008241756.KAA13214@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Thu, 24 Aug 2000 10:56:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/i386/fdisk fdisk.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/24 10:56:22 PDT Modified files: (Branch: RELENG_4) sbin/i386/fdisk fdisk.c Log: MFC: - Properly adjust partitions to start on head boundaries and end on cylinder boundaries. - Add sanitize_partition() function. Revision Changes Path 1.36.2.6 +95 -47 src/sbin/i386/fdisk/fdisk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 11: 4:43 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 3954D37B43C; Thu, 24 Aug 2000 11:04:40 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id MAA71505; Thu, 24 Aug 2000 12:04:39 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id MAA11067; Thu, 24 Aug 2000 12:04:36 -0600 (MDT) Message-Id: <200008241804.MAA11067@harmony.village.org> To: Takanori Watanabe <takawata@FreeBSD.org> Subject: Re: cvs commit: src/sys/dev/acpi acpi.c src/sys/dev/acpi/aml aml_amlmem.c aml_amlmem.h aml_common.c aml_common.h aml_env.h aml_evalobj.c aml_evalobj.h aml_memman.c aml_memman.h aml_name.c aml_name.h aml_obj.c aml_obj.h aml_parse.c aml_parse.h ... Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Thu, 24 Aug 2000 02:33:30 PDT." <200008240933.CAA77683@freefall.freebsd.org> References: <200008240933.CAA77683@freefall.freebsd.org> Date: Thu, 24 Aug 2000 12:04:36 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200008240933.CAA77683@freefall.freebsd.org> Takanori Watanabe writes: : Add orthogonal part of ACPI support code. : This does not come effect until non-orthogonal part is commited. Way Cool! Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 11: 5:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DFF8F37B423; Thu, 24 Aug 2000 11:05:48 -0700 (PDT) Received: (from cjh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA15600; Thu, 24 Aug 2000 11:05:48 -0700 (PDT) (envelope-from cjh@FreeBSD.org) Message-Id: <200008241805.LAA15600@freefall.freebsd.org> From: CHOI Junho <cjh@FreeBSD.org> Date: Thu, 24 Aug 2000 11:05:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/korean/netscape47-communicator Makefile ports/korean/netscape47-communicator/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cjh 2000/08/24 11:05:48 PDT Modified files: korean/netscape47-communicator Makefile korean/netscape47-communicator/files md5 Log: Update to Korean kit v4.75. Revision Changes Path 1.21 +3 -3 ports/korean/netscape47-communicator/Makefile 1.12 +1 -1 ports/korean/netscape47-communicator/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 11: 8:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1127437B43F; Thu, 24 Aug 2000 11:08:28 -0700 (PDT) Received: (from cjh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA16062; Thu, 24 Aug 2000 11:08:27 -0700 (PDT) (envelope-from cjh@FreeBSD.org) Message-Id: <200008241808.LAA16062@freefall.freebsd.org> From: CHOI Junho <cjh@FreeBSD.org> Date: Thu, 24 Aug 2000 11:08:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/korean/baekmukfonts-bdf Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cjh 2000/08/24 11:08:27 PDT Modified files: korean/baekmukfonts-bdf Makefile Log: Extra BUILD_DEPENDS on XFree86 removed. (it uses USE_X_PREFIX) Revision Changes Path 1.8 +1 -3 ports/korean/baekmukfonts-bdf/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 11:18:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F18A537B424; Thu, 24 Aug 2000 11:18:27 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA17713; Thu, 24 Aug 2000 11:18:27 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200008241818.LAA17713@freefall.freebsd.org> From: Brian Somers <brian@FreeBSD.org> Date: Thu, 24 Aug 2000 11:18:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/finger finger.conf.5 pathnames.h Makefile finger.1 finger.c sprint.c util.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/08/24 11:18:27 PDT Modified files: (Branch: RELENG_4) usr.bin/finger Makefile finger.1 finger.c sprint.c util.c Added files: (Branch: RELENG_4) usr.bin/finger finger.conf.5 pathnames.h Log: MFC: understand /etc/finger.conf Revision Changes Path 1.1.1.1.14.1 +3 -0 src/usr.bin/finger/Makefile 1.9.2.1 +17 -2 src/usr.bin/finger/finger.1 1.15.2.1 +31 -1 src/usr.bin/finger/finger.c 1.11.2.2 +1 -1 src/usr.bin/finger/sprint.c 1.8.2.2 +1 -1 src/usr.bin/finger/util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 11:46:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BBE037B423; Thu, 24 Aug 2000 11:46:52 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA21391; Thu, 24 Aug 2000 11:46:52 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200008241846.LAA21391@freefall.freebsd.org> From: Warner Losh <imp@FreeBSD.org> Date: Thu, 24 Aug 2000 11:46:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/08/24 11:46:52 PDT Modified files: (Branch: RELENG_4) . UPDATING Log: Remove manual installation of modules. installkernel does that. Revision Changes Path 1.73.2.14 +1 -3 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 11:53:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F11A637B423; Thu, 24 Aug 2000 11:53:09 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA22263; Thu, 24 Aug 2000 11:53:09 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008241853.LAA22263@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Thu, 24 Aug 2000 11:53:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/24 11:53:09 PDT Modified files: sys Makefile Log: I should know better than to touch this without testing a 'make release' but ${MACHINE_ARCH} should be ${MACHINE} here. pc98 has its own GENERIC.hints file and should not be used with the i386 version. Revision Changes Path 1.25 +2 -2 src/sys/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 11:56:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 528A937B423; Thu, 24 Aug 2000 11:56:55 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA22743; Thu, 24 Aug 2000 11:56:55 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008241856.LAA22743@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Thu, 24 Aug 2000 11:56:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/conf GENERIC src/sys/i386/conf GENERIC src/sys/pc98/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/24 11:56:55 PDT Modified files: sys/alpha/conf GENERIC sys/i386/conf GENERIC sys/pc98/conf GENERIC Log: Comment out the static wiring of hints for GENERIC - the release process now installs the hints file into /boot. Revision Changes Path 1.90 +3 -2 src/sys/alpha/conf/GENERIC 1.272 +3 -2 src/sys/i386/conf/GENERIC 1.154 +3 -2 src/sys/pc98/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 12: 6:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F55A37B42C; Thu, 24 Aug 2000 12:06:56 -0700 (PDT) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA25573; Thu, 24 Aug 2000 12:06:56 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200008241906.MAA25573@freefall.freebsd.org> From: Brian Feldman <green@FreeBSD.org> Date: Thu, 24 Aug 2000 12:06:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/lib/libcrypto Makefile Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/08/24 12:06:56 PDT Modified files: secure/lib/libcrypto Makefile Makefile.inc Log: Make the temporary file _evp.h instead of evp.h to not conflict with the real evp.h. Reported by: markm Revision Changes Path 1.23 +3 -3 src/secure/lib/libcrypto/Makefile 1.17 +6 -4 src/secure/lib/libcrypto/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 12:23:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 038D137B424; Thu, 24 Aug 2000 12:23:13 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA27628; Thu, 24 Aug 2000 12:23:12 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008241923.MAA27628@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Thu, 24 Aug 2000 12:23:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_sa.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/24 12:23:11 PDT Modified files: sys/cam/scsi scsi_sa.c Log: Quick fix. <sys/conf.h> now depends on <sys/time.h>, which is not present when libcam is building this in userland. Revision Changes Path 1.53 +3 -1 src/sys/cam/scsi/scsi_sa.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 12:27:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 32CB737B42C; Thu, 24 Aug 2000 12:27:11 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA28261; Thu, 24 Aug 2000 12:27:11 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200008241927.MAA28261@freefall.freebsd.org> From: "Chris D. Faulhaber" <jedgar@FreeBSD.org> Date: Thu, 24 Aug 2000 12:27:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/staroffice52 Makefile ports/editors/staroffice52/files setup.ins.patch md5 setup.patch soffice.patch dot.sversionrc instdb.ins.patch ports/editors/staroffice52/pkg DESCR MESSAGE PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/08/24 12:27:11 PDT Modified files: editors/staroffice52 Makefile editors/staroffice52/files md5 setup.patch soffice.patch editors/staroffice52/pkg DESCR MESSAGE PLIST Added files: editors/staroffice52/files setup.ins.patch Removed files: editors/staroffice52/files dot.sversionrc instdb.ins.patch Log: New port: staroffice52 (after repo-copy from staroffice5) Submitted by: Martin Blapp <mb@imp.ch> Revision Changes Path 1.14 +64 -48 ports/editors/staroffice52/Makefile 1.4 +2 -4 ports/editors/staroffice52/files/md5 1.2 +8 -19 ports/editors/staroffice52/files/setup.patch 1.2 +8 -47 ports/editors/staroffice52/files/soffice.patch 1.2 +1 -1 ports/editors/staroffice52/pkg/DESCR 1.5 +9 -7 ports/editors/staroffice52/pkg/MESSAGE 1.4 +3027 -2542ports/editors/staroffice52/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 12:27:35 2000 Delivered-To: cvs-all@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 2482D37B43C; Thu, 24 Aug 2000 12:27:30 -0700 (PDT) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id EAA04546; Fri, 25 Aug 2000 04:27:29 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id EAA58180; Fri, 25 Aug 2000 04:26:46 +0900 (JST) Date: Fri, 25 Aug 2000 04:26:45 +0900 Message-ID: <8666oq4g0a.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" <knu@idaemons.org> To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/mail/ruby-tmail Makefile In-Reply-To: In your message of "Thu, 24 Aug 2000 09:35:15 -0700 (PDT)" <200008241635.JAA02341@freefall.freebsd.org> References: <200008241635.JAA02341@freefall.freebsd.org> User-Agent: Wanderlust/2.3.0 (Roam) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 11) (Carlsbad Caverns) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE X-PGP-Comment: I changed my key on 2000-08-10 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At Thu, 24 Aug 2000 09:35:15 -0700 (PDT), I wrote: > knu 2000/08/24 09:35:15 PDT > > Modified files: > mail/ruby-tmail Makefile > Log: > BUILD_DEPENDS upon ruby-amstd. > > Pointed out by: reberto roberto So sorry.. -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 12:28: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from palrel3.hp.com (palrel3.hp.com [156.153.255.226]) by hub.freebsd.org (Postfix) with ESMTP id 76BC837B422; Thu, 24 Aug 2000 12:27:47 -0700 (PDT) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel3.hp.com (Postfix) with ESMTP id 54D665D9; Thu, 24 Aug 2000 12:27:40 -0700 (PDT) Received: from cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by adlmail.cup.hp.com (8.9.3 (PHNE_18546)/8.9.3 SMKit7.02) with ESMTP id MAA08907; Thu, 24 Aug 2000 12:27:40 -0700 (PDT) Message-ID: <39A5772C.9ECB5F7D@cup.hp.com> Date: Thu, 24 Aug 2000 15:27:40 -0400 From: Marcel Moolenaar <marcel@cup.hp.com> Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Sheldon Hearn <sheldonh@uunet.co.za> Cc: "Jeroen C. van Gelderen" <jeroen@vangelderen.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man4/man4.i386 linux.4 Makefile References: <7146.967133180@axl.fw.uunet.co.za> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sheldon Hearn wrote: > > On Thu, 24 Aug 2000 12:01:46 -0400, "Jeroen C. van Gelderen" wrote: > > > "Linux to native system call vector redirection" > > > > just *might* be better worded as > > > > "Linux to native system call translation" > > > > I don't think 'vector' is appropriate and translation is > > indeed being done AFAIK. > > Anyone have any better suggestions, or is Jeroen's wording good? I > wouldn't know one way or another. For all I know, the Linuxulator runs > on tomato juice. ;-) Aha... that would explain why I'm drooling everytime I'm working on the Linuxulator :-) I prefer "system call translation" over "vector redirection". Maybe the use of ABI is not misplaced as well (as in "ABI translation")? -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 12:29:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CB3FF37B422; Thu, 24 Aug 2000 12:29:31 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA28644; Thu, 24 Aug 2000 12:29:31 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200008241929.MAA28644@freefall.freebsd.org> From: "Chris D. Faulhaber" <jedgar@FreeBSD.org> Date: Thu, 24 Aug 2000 12:29:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/german/staroffice52 Makefile ports/german/staroffice52/files setup.ins.patch md5 setup.patch soffice.patch dot.sversionrc instdb.ins.patch ports/german/staroffice52/pkg DESCR MESSAGE PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/08/24 12:29:31 PDT Modified files: german/staroffice52 Makefile german/staroffice52/files md5 setup.patch soffice.patch german/staroffice52/pkg DESCR MESSAGE PLIST Added files: german/staroffice52/files setup.ins.patch Removed files: german/staroffice52/files dot.sversionrc instdb.ins.patch Log: New port: staroffice52 (after repo-copy from staroffice5) Submitted by: Martin Blapp <mb@imp.ch> Revision Changes Path 1.8 +50 -49 ports/german/staroffice52/Makefile 1.2 +2 -8 ports/german/staroffice52/files/md5 1.2 +8 -19 ports/german/staroffice52/files/setup.patch 1.2 +8 -44 ports/german/staroffice52/files/soffice.patch 1.2 +1 -1 ports/german/staroffice52/pkg/DESCR 1.2 +7 -19 ports/german/staroffice52/pkg/MESSAGE 1.2 +5942 -2553ports/german/staroffice52/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 12:30:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B538537B422; Thu, 24 Aug 2000 12:30:15 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA28762; Thu, 24 Aug 2000 12:30:15 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200008241930.MAA28762@freefall.freebsd.org> From: "Chris D. Faulhaber" <jedgar@FreeBSD.org> Date: Thu, 24 Aug 2000 12:30:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/08/24 12:30:15 PDT Modified files: . modules Log: de-staroffice52 -> ports/german/staroffice52 staroffice52 -> ports/editors/staroffice52 Revision Changes Path 1.1602 +3 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 12:30:33 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id F2F4037B42C; Thu, 24 Aug 2000 12:30:29 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id NAA71826; Thu, 24 Aug 2000 13:30:28 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id NAA11692; Thu, 24 Aug 2000 13:30:27 -0600 (MDT) Message-Id: <200008241930.NAA11692@harmony.village.org> To: Peter Wemm <peter@FreeBSD.org> Subject: Re: cvs commit: src/sys/alpha/conf GENERIC src/sys/i386/conf GENERIC src/sys/pc98/conf GENERIC Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Thu, 24 Aug 2000 11:56:55 PDT." <200008241856.LAA22743@freefall.freebsd.org> References: <200008241856.LAA22743@freefall.freebsd.org> Date: Thu, 24 Aug 2000 13:30:26 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200008241856.LAA22743@freefall.freebsd.org> Peter Wemm writes: : peter 2000/08/24 11:56:55 PDT : : Modified files: : sys/alpha/conf GENERIC : sys/i386/conf GENERIC : sys/pc98/conf GENERIC : Log: : Comment out the static wiring of hints for GENERIC - the release process : now installs the hints file into /boot. But what about normal kernel installations? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 12:42:29 2000 Delivered-To: cvs-all@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 7F75E37B509; Thu, 24 Aug 2000 12:42:26 -0700 (PDT) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id HAA28349; Fri, 25 Aug 2000 07:41:48 +1200 (NZST) Message-Id: <200008241941.HAA28349@ducky.nz.freebsd.org> From: "Dan Langille" <dan@langille.org> Organization: langille.org To: Josef Karthauser <joe@pavilion.net> Date: Fri, 25 Aug 2000 07:41:46 +1200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvsweb links in cvs commit messages Reply-To: dan@langille.org Cc: Alfred Perlstein <bright@wintelcom.net>, Doug Barton <Doug@gorean.org>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <20000824175901.C8962@pavilion.net> References: <20000823202312.S20036@strontium.scientia.demon.co.uk>; from ben@FreeBSD.org on Wed, Aug 23, 2000 at 08:23:12PM +0100 X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 24 Aug 2000, at 17:59, Josef Karthauser wrote: > On a related thing it would be really useful to be able to do: > > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/bin/chmod/chmod.1?rev=HEAD > > to pull out head release of a file. I'll say. At present, FreshPorts pulls the file out twice. Once to get the list of revisions. Then again to the get the latest revision based on what it finds from the first pull. -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ FreshPorts - http://freshports.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 12:43:29 2000 Delivered-To: cvs-all@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id 7048337B422; Thu, 24 Aug 2000 12:43:25 -0700 (PDT) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.11.0/8.9.3) with ESMTP id e7OJhCG90517; Thu, 24 Aug 2000 12:43:12 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200008241943.e7OJhCG90517@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Warner Losh <imp@village.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/conf GENERIC src/sys/i386/conf GENERIC src/sys/pc98/conf GENERIC In-Reply-To: <200008241930.NAA11692@harmony.village.org> Date: Thu, 24 Aug 2000 12:43:12 -0700 From: Peter Wemm <peter@netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Warner Losh wrote: > In message <200008241856.LAA22743@freefall.freebsd.org> Peter Wemm writes: > : peter 2000/08/24 11:56:55 PDT > : > : Modified files: > : sys/alpha/conf GENERIC > : sys/i386/conf GENERIC > : sys/pc98/conf GENERIC > : Log: > : Comment out the static wiring of hints for GENERIC - the release process > : now installs the hints file into /boot. > > But what about normal kernel installations? Well, on a 'fresh install' we have a /boot/device.hints already, right? It won't go away. The default device.hints file will work just fine even with most custom kernel builds - there is no need or value in installing device.hints over and over again. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 13:22:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AF5537B422; Thu, 24 Aug 2000 13:22:44 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA36220; Thu, 24 Aug 2000 13:22:44 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008242022.NAA36220@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Thu, 24 Aug 2000 13:22:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/systat swap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/24 13:22:44 PDT Modified files: usr.bin/systat swap.c Log: Quick Fix: swap.c doesn't appear to actually need <sys/conf.h>, so remove it to try and get world building again. (sys/conf.h now depends on sys/types.h) Revision Changes Path 1.14 +1 -2 src/usr.bin/systat/swap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 13:23:12 2000 Delivered-To: cvs-all@freebsd.org Received: from mail-green.research.att.com (H-135-207-30-103.research.att.com [135.207.30.103]) by hub.freebsd.org (Postfix) with ESMTP id 8C49B37B422; Thu, 24 Aug 2000 13:23:10 -0700 (PDT) Received: from alliance.research.att.com (alliance.research.att.com [135.207.26.26]) by mail-green.research.att.com (Postfix) with ESMTP id 0FB561E033; Thu, 24 Aug 2000 16:23:10 -0400 (EDT) Received: from windsor.research.att.com (windsor.research.att.com [135.207.26.46]) by alliance.research.att.com (8.8.7/8.8.7) with ESMTP id QAA22500; Thu, 24 Aug 2000 16:22:53 -0400 (EDT) From: Bill Fenner <fenner@research.att.com> Received: (from fenner@localhost) by windsor.research.att.com (8.8.8+Sun/8.8.5) id NAA06781; Thu, 24 Aug 2000 13:22:53 -0700 (PDT) Message-Id: <200008242022.NAA06781@windsor.research.att.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII To: dan@langille.org Subject: Re: cvsweb links in cvs commit messages Cc: joe@pavilion.net, bright@wintelcom.net, doug@gorean.org, cvs-committers@freebsd.org, cvs-all@freebsd.org References: <20000823202312.S20036@strontium.scientia.demon.co.uk>; from ben@FreeBSD.org on Wed, Aug 23, 2000 at 08:23:12PM +0100 <200008241941.HAA28349@ducky.nz.freebsd.org> Date: Thu, 24 Aug 2000 13:22:52 -0700 Versions: dmail (solaris) 2.2g/makemail 2.9a Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I thought ?rev=. and ?rev=HEAD worked, but I guess not. Prepending the magic value ~checkout~/ to the path works. http://www.FreeBSD.org/cgi/cvsweb.cgi/~checkout~/src/bin/chmod/chmod.1 Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 13:30:41 2000 Delivered-To: cvs-all@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id A9A8637B423; Thu, 24 Aug 2000 13:30:32 -0700 (PDT) Received: from strontium.scientia.demon.co.uk ([192.168.91.36] ident=root) by scientia.demon.co.uk with esmtp (Exim 3.16 #1) id 13S231-000K9I-00; Thu, 24 Aug 2000 19:48:19 +0100 Received: (from ben@localhost) by strontium.scientia.demon.co.uk (8.9.3/8.9.3) id TAA16503; Thu, 24 Aug 2000 19:48:19 +0100 (BST) (envelope-from ben) Date: Thu, 24 Aug 2000 19:48:19 +0100 From: Ben Smithurst <ben@FreeBSD.org> To: Josef Karthauser <joe@pavilion.net> Cc: Alfred Perlstein <bright@wintelcom.net>, Doug Barton <Doug@gorean.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvsweb links in cvs commit messages Message-ID: <20000824194818.B28527@strontium.scientia.demon.co.uk> References: <20000823093626.Z4854@fw.wintelcom.net> <Pine.BSF.4.21.0008231154070.7876-100000@dt051n1f.san.rr.com> <20000823120642.C4854@fw.wintelcom.net> <20000823202312.S20036@strontium.scientia.demon.co.uk> <20000824175901.C8962@pavilion.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000824175901.C8962@pavilion.net> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Josef Karthauser wrote: > On a related thing it would be really useful to be able to do: > > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/bin/chmod/chmod.1?rev=HEAD > > to pull out head release of a file. Ah, now that's easy. :-) Try the diff below. revcmp() doesn't work for symbolic names, but I don't think that's too important. It doesn't work for diffs between say HEAD and RELENG_4 though, and trying the equivalent command at the prompt gives: ben@magnesium:~/bsdwork/www/en/cgi$ rcsdiff -u -rHEAD -rRELENG_4 /usr/cvs/src/Makefile.inc1 =================================================================== RCS file: /usr/cvs/src/Makefile.inc1,v rcsdiff: /usr/cvs/src/Makefile.inc1,v: Symbolic name `HEAD' is undefined. How would you get around that? You can't use cvs itself, unless you have a checked out version. :-( ben@magnesium:~$ cvs -Rd /usr/cvs diff -rHEAD -rRELENG_4 src/Makefile.inc1 cvs [diff aborted]: no such directory `src' hmm. Index: cvsweb.cgi =================================================================== RCS file: /usr/cvs/www/en/cgi/cvsweb.cgi,v retrieving revision 1.47 diff -u -r1.47 cvsweb.cgi --- cvsweb.cgi 2000/08/15 08:47:40 1.47 +++ cvsweb.cgi 2000/08/24 18:42:11 @@ -960,6 +960,8 @@ my(@r2) = split(/\./, $rev2); my($a,$b); + return 0 if $rev1 =~ /[A-Za-z_]/ || $rev2 =~ /[A-Za-z_]/; + while (($a = shift(@r1)) && ($b = shift(@r2))) { if ($a != $b) { return $a <=> $b; @@ -1070,7 +1072,7 @@ # make sure the revisions a wellformed, for security # reasons .. - if (!($rev =~ /^[\d\.]+$/)) { + if (!($rev =~ /^[A-Za-z_\d\.]+$/)) { &fatal("404 Not Found", "Malformed query \"$ENV{QUERY_STRING}\""); } @@ -1223,7 +1225,7 @@ # make sure the revisions a wellformed, for security # reasons .. - if (defined($rev) && !($rev =~ /^[\d\.]+$/)) { + if (defined($rev) && !($rev =~ /^[A-Za-z_\d\.]+$/)) { &fatal("404 Not Found", "Malformed query \"$ENV{QUERY_STRING}\""); } @@ -1378,7 +1380,7 @@ } # make sure the revisions a wellformed, for security # reasons .. - if (!($rev1 =~ /^[\d\.]+$/) || !($rev2 =~ /^[\d\.]+$/)) { + if (!($rev1 =~ /^[A-Za-z_\d\.]+$/) || !($rev2 =~ /^[A-Za-z_\d\.]+$/)) { &fatal("404 Not Found", "Malformed query \"$ENV{QUERY_STRING}\""); } -- Ben Smithurst / ben@FreeBSD.org / PGP: 0x99392F7D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 13:31:53 2000 Delivered-To: cvs-all@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 8E41F37B423; Thu, 24 Aug 2000 13:31:48 -0700 (PDT) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id IAA28601; Fri, 25 Aug 2000 08:31:23 +1200 (NZST) Message-Id: <200008242031.IAA28601@ducky.nz.freebsd.org> From: "Dan Langille" <dan@langille.org> Organization: langille.org To: Bill Fenner <fenner@research.att.com> Date: Fri, 25 Aug 2000 08:31:22 +1200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvsweb links in cvs commit messages Reply-To: dan@langille.org Cc: joe@pavilion.net, bright@wintelcom.net, doug@gorean.org, cvs-committers@freebsd.org, cvs-all@freebsd.org In-reply-to: <200008242022.NAA06781@windsor.research.att.com> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG All of my browsing attempts were with Netscape 4.74... On 24 Aug 2000, at 13:22, Bill Fenner wrote: > I thought ?rev=. and ?rev=HEAD worked, but I guess not. Correct, it doesn't work. http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/textproc/sgmltools-lite/Makefile?rev=HEAD Error: Malformed query "rev=HEAD" http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/textproc/sgmltools-lite/Makefile?rev=. Check whether the directory /home/ncvs/CVSROOT exists and the script has write-access to the CVSROOT/history file if it exists. The script needs to place lock files in the directory the file is in as well. > Prepending the magic value ~checkout~/ to the path works. > > http://www.FreeBSD.org/cgi/cvsweb.cgi/~checkout~/src/bin/chmod/chmod.1 My use of ~checkout~/ doesn't give what I would expect: ### http://www.FreeBSD.org/cgi/cvsweb.cgi/~checkout~/ports/textproc/sgmltools-lite/Makefile Error: Unexpected output from cvs co: Check whether the directory /home/ncvs/CVSROOT exists and the script has write-access to the CVSROOT/history file if it exists. The script needs to place lock files in the directory the file is in as well. ### -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ FreshPorts - http://freshports.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 13:36:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9303837B422; Thu, 24 Aug 2000 13:36:47 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA37991; Thu, 24 Aug 2000 13:36:47 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008242036.NAA37991@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Thu, 24 Aug 2000 13:36:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/vim6 Makefile ports/editors/vim6/files md5 ports/editors/vim6/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/24 13:36:47 PDT Modified files: editors/vim6 Makefile editors/vim6/files md5 editors/vim6/pkg PLIST Log: Update to version 6.0 Beta G. Revision Changes Path 1.82 +2 -2 ports/editors/vim6/Makefile 1.50 +2 -2 ports/editors/vim6/files/md5 1.28 +74 -64 ports/editors/vim6/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 13:43:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EEC6637B422; Thu, 24 Aug 2000 13:43:55 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA38938; Thu, 24 Aug 2000 13:43:55 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008242043.NAA38938@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Thu, 24 Aug 2000 13:43:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/ghostscript6 Makefile ports/print/ghostscript6/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/24 13:43:55 PDT Modified files: print/ghostscript6 Makefile print/ghostscript6/patches patch-aa Log: The software's own genarch program took several HOURS on my dual PIII-700 trying to figure out the sizes of the primary and secondary caches. The sizes turned out to be rather wrong (definetly true for the L2 cache, may be L1 is indeed 32Kb). Their algorithm seems bogus to me, but most importantly, the obtained values are NOT USED anywhere in the GhostScript code... One of the submitted patches rips the "cache size" section from the genarch entirely. The attached modification and new patches also: . replace the use of mktemp/fopen with mkstemp/fdopen . modify the unix-gcc.mak so that there is no need for GNU-make PR: 20038 Submitted by: Mikhail Teterin <mi@aldan.algebra.com> Revision Changes Path 1.50 +1 -2 ports/print/ghostscript6/Makefile 1.12 +57 -16 ports/print/ghostscript6/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 13:45: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 30D2F37B423; Thu, 24 Aug 2000 13:44:59 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA39112; Thu, 24 Aug 2000 13:44:59 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008242044.NAA39112@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Thu, 24 Aug 2000 13:44:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/ghostscript6/patches patch-ac patch-ad X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/24 13:44:58 PDT Added files: print/ghostscript6/patches patch-ac patch-ad Log: forgot the two patches, sorry. PR: 20038 Submitted by: Mikhail Teterin <mi@aldan.algebra.com> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 13:46: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from alcanet.com.au (mail.alcanet.com.au [203.62.196.10]) by hub.freebsd.org (Postfix) with SMTP id E607437B422; Thu, 24 Aug 2000 13:45:55 -0700 (PDT) Received: by border.alcanet.com.au id <115225>; Fri, 25 Aug 2000 06:45:39 +1000 Date: Fri, 25 Aug 2000 06:45:30 +1000 From: Peter Jeremy <peter.jeremy@alcatel.com.au> Subject: Re: cvs commit: src/sys/pci ti_fw.h ti_fw2.h if_ti.c if_tireg.h src/share/man/man4 ti.4 In-reply-to: <20000823172642.T4854@fw.wintelcom.net>; from bright@wintelcom.net on Wed, Aug 23, 2000 at 05:26:42PM -0700 To: Alfred Perlstein <bright@wintelcom.net> Cc: Bill Paul <wpaul@FreeBSD.ORG>, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-Id: <00Aug25.064539est.115225@border.alcanet.com.au> MIME-version: 1.0 X-Mailer: Mutt 1.0i Content-type: text/plain; charset=us-ascii References: <200008240008.RAA67119@freefall.freebsd.org> <20000823172642.T4854@fw.wintelcom.net> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 05:26:42PM -0700, Alfred Perlstein wrote: >* Bill Paul <wpaul@FreeBSD.org> [000823 17:08] wrote: >> 1.6.2.3 +1089 -978 src/sys/pci/ti_fw.h >> 1.6.2.3 +2185 -1504src/sys/pci/ti_fw2.h > >ugh, isn't there a better way to do this? I second Alfred's `ugh'. Since the result is that v1.6.2.3 and v1.9 are identical, couldn't this be done by moving the RELENG_4 tag, rather than an explicit commit? (Maybe followed by a forced commit to explain what happened). The only downside I see is that we lose the cronological history for RELENG_4. Is that history worth ~120K repo bloat? (On a related bloat issue, why isn't the firmware treated as a KLD which is automatically loaded and unloaded by XXattach()?). Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 13:57:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 60F0137B423; Thu, 24 Aug 2000 13:57:49 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA40646; Thu, 24 Aug 2000 13:57:49 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200008242057.NAA40646@freefall.freebsd.org> From: John Baldwin <jhb@FreeBSD.org> Date: Thu, 24 Aug 2000 13:57:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/btx/btx Makefile btx.s X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/08/24 13:57:45 PDT Modified files: sys/boot/i386/btx/btx Makefile btx.s Log: Add a new compile-time tweak to BTX. If you set the make(1) variable BOOT_BTX_NOHANG, then BTX will be compiled with the appropriate flags so that it reboots after a fault instead of hanging forever. Requested by: ps Approved by: rnordier Revision Changes Path 1.9 +9 -1 src/sys/boot/i386/btx/btx/Makefile 1.23 +2 -2 src/sys/boot/i386/btx/btx/btx.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 14: 1: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B57437B422; Thu, 24 Aug 2000 14:01:01 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA41195; Thu, 24 Aug 2000 14:01:01 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008242101.OAA41195@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Thu, 24 Aug 2000 14:01:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/postgresql Makefile ports/databases/postgresql/files md5 pgsql.sh.tmpl post-install-notes ports/databases/postgresql/patches patch-aj patch-ar patch-as patch-at patch-ba ports/databases/postgresql/pkg COMMENT DESCR ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/24 14:01:01 PDT Removed files: databases/postgresql Makefile databases/postgresql/files md5 pgsql.sh.tmpl post-install-notes databases/postgresql/patches patch-aj patch-ar patch-as patch-at patch-ba databases/postgresql/pkg COMMENT DESCR INSTALL PLIST PLIST.jdbc PLIST.tcl databases/postgresql/scripts configure createuser Log: remove old postgresql port after 7.x has proven stability. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 14: 4:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC76837B43C; Thu, 24 Aug 2000 14:04:18 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA41452; Thu, 24 Aug 2000 14:04:18 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008242104.OAA41452@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Thu, 24 Aug 2000 14:04:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/24 14:04:18 PDT Modified files: . modules Log: nuke it entirely Revision Changes Path 1.1603 +1 -2 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 14: 5:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E446837B43C; Thu, 24 Aug 2000 14:05:17 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA42148; Thu, 24 Aug 2000 14:05:17 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008242105.OAA42148@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Thu, 24 Aug 2000 14:05:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/24 14:05:17 PDT Modified files: databases Makefile Log: not available anymore, use postgresql 7 Revision Changes Path 1.71 +1 -2 ports/databases/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 14:14:10 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id BBC3A37B423; Thu, 24 Aug 2000 14:14:07 -0700 (PDT) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 2D45C1C72; Thu, 24 Aug 2000 17:14:07 -0400 (EDT) Date: Thu, 24 Aug 2000 17:14:07 -0400 From: Bill Fumerola <billf@chimesnet.com> To: Andreas Klemm <andreas@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/postgresql Makefile ports/databases/postgresql/files md5 pgsql.sh.tmpl post-install-notes ports/databases/postgresql/patches patch-aj patch-ar patch-as patch-at patch-ba ports/databases/postgresql/pkg COMMENT DESCR ... Message-ID: <20000824171407.C57333@jade.chc-chimes.com> References: <200008242101.OAA41195@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200008242101.OAA41195@freefall.freebsd.org>; from andreas@FreeBSD.org on Thu, Aug 24, 2000 at 02:01:01PM -0700 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Aug 24, 2000 at 02:01:01PM -0700, Andreas Klemm wrote: > andreas 2000/08/24 14:01:01 PDT > > Removed files: > databases/postgresql Makefile > databases/postgresql/files md5 pgsql.sh.tmpl > post-install-notes > databases/postgresql/patches patch-aj patch-ar patch-as > patch-at patch-ba > databases/postgresql/pkg COMMENT DESCR INSTALL PLIST > PLIST.jdbc PLIST.tcl > databases/postgresql/scripts configure createuser > Log: > remove old postgresql port after 7.x has proven stability. This port should be upgraded to match pg7 and then the pg7 port should be retired, not the other way around. -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 14:20:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB3A837B423; Thu, 24 Aug 2000 14:20:35 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA44735; Thu, 24 Aug 2000 14:20:35 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008242120.OAA44735@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Thu, 24 Aug 2000 14:20:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/ghostscript55 Makefile ports/print/ghostscript55/files md5 ports/print/ghostscript55/patches patch-ad patch-aa ports/print/ghostscript55/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/24 14:20:35 PDT Modified files: print/ghostscript55 Makefile print/ghostscript55/files md5 print/ghostscript55/patches patch-aa print/ghostscript55/pkg COMMENT DESCR PLIST Added files: print/ghostscript55/patches patch-ad Log: Update port: print/ghostscript55 to 5.50a Thanks for port submission ! PR: 20266 Submitted by: tkato@prontomail.ne.jp Revision Changes Path 1.45 +18 -24 ports/print/ghostscript55/Makefile 1.16 +3 -4 ports/print/ghostscript55/files/md5 1.9 +23 -15 ports/print/ghostscript55/patches/patch-aa 1.3 +1 -1 ports/print/ghostscript55/pkg/COMMENT 1.7 +11 -14 ports/print/ghostscript55/pkg/DESCR 1.10 +2 -3 ports/print/ghostscript55/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 14:30:49 2000 Delivered-To: cvs-all@freebsd.org Received: from picalon.gun.de (picalon.gun.de [192.109.159.1]) by hub.freebsd.org (Postfix) with ESMTP id 3A52737B422; Thu, 24 Aug 2000 14:30:44 -0700 (PDT) Received: (from uucp@localhost) by picalon.gun.de (8.9.3/8.9.3) id XAA18919; Thu, 24 Aug 2000 23:30:26 +0200 (MET DST) >Received: (from andreas@localhost) by klemm.gtn.com (8.9.3/8.9.3) id XAA86311; Thu, 24 Aug 2000 23:23:51 +0200 (CEST) (envelope-from andreas) Date: Thu, 24 Aug 2000 23:23:51 +0200 From: Andreas Klemm <andreas@klemm.gtn.com> To: Bill Fumerola <billf@chimesnet.com> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/postgresql Makefile ports/databases/postgresql/files md5 pgsql.sh.tmpl post-install-notes ports/databases/postgresql/patches patch-aj patch-ar patch-as patch-at patch-ba ports/databases/postgresql/pkg COMMENT DESCR ... Message-ID: <20000824232351.A85368@titan.klemm.gtn.com> References: <200008242101.OAA41195@freefall.freebsd.org> <20000824171407.C57333@jade.chc-chimes.com> Mime-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20000824171407.C57333@jade.chc-chimes.com>; from billf@chimesnet.com on Thu, Aug 24, 2000 at 05:14:07PM -0400 X-Operating-System: FreeBSD 4.1-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Aug 24, 2000 at 05:14:07PM -0400, Bill Fumerola wrote: > This port should be upgraded to match pg7 and then the pg7 port > should be retired, not the other way around. I think not, since postgresql7 already is a repository copy of the old postgresql port. -- Andreas Klemm Powered by FreeBSD SMP Songs from our band >>64Bits<<............http://www.apsfilter.org/64bits.html My homepage................................ http://people.FreeBSD.ORG/~andreas Please note: Apsfilter got a NEW HOME................http://www.apsfilter.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 14:57:30 2000 Delivered-To: cvs-all@freebsd.org Received: from argon.gryphonsoft.com (mcut-b-078.resnet.purdue.edu [128.211.209.78]) by hub.freebsd.org (Postfix) with ESMTP id C0FEA37B42C; Thu, 24 Aug 2000 14:57:27 -0700 (PDT) Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id DE630197F; Thu, 24 Aug 2000 16:55:48 -0500 (EST) Date: Thu, 24 Aug 2000 16:55:48 -0500 From: Will Andrews <will@physics.purdue.edu> To: Andreas Klemm <andreas@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/print/ghostscript6/patches patch-ac patch-ad Message-ID: <20000824165548.E41087@argon.gryphonsoft.com> Reply-To: Will Andrews <will@physics.purdue.edu> Mail-Followup-To: Andreas Klemm <andreas@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200008242044.NAA39112@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008242044.NAA39112@freefall.freebsd.org>; from andreas@FreeBSD.org on Thu, Aug 24, 2000 at 01:44:59PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Aug 24, 2000 at 01:44:59PM -0700, Andreas Klemm wrote: > andreas 2000/08/24 13:44:58 PDT > > Added files: > print/ghostscript6/patches patch-ac patch-ad > Log: > forgot the two patches, sorry. > > PR: 20038 > Submitted by: Mikhail Teterin <mi@aldan.algebra.com> This is not an acceptable commit log, please only say you forgot *initially*, then add the content you put in the previous log. -- Will Andrews <will@physics.purdue.edu> <will@FreeBSD.org> GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 15: 1:40 2000 Delivered-To: cvs-all@freebsd.org Received: from smtp2.nifty.ne.jp (smtp2.nifty.ne.jp [202.219.63.54]) by hub.freebsd.org (Postfix) with ESMTP id 6263537B422 for <cvs-all@FreeBSD.org>; Thu, 24 Aug 2000 15:01:38 -0700 (PDT) Received: from host.home (snig0135.ppp.infoweb.ne.jp [210.131.112.51]) by smtp2.nifty.ne.jp (8.9.3+3.2W/3.7W-991025) with ESMTP id HAA17509 for <cvs-all@FreeBSD.org>; Fri, 25 Aug 2000 07:01:36 +0900 (JST) Message-Id: <200008242201.HAA17509@smtp2.nifty.ne.jp> Date: Fri, 25 Aug 2000 07:01:15 +0900 (JST) From: Ohara Kanichi <okan@mba.nifty.ne.jp> To: cvs-all@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 15:16:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A363F37B43C; Thu, 24 Aug 2000 15:16:15 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA52150; Thu, 24 Aug 2000 15:16:15 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200008242216.PAA52150@freefall.freebsd.org> From: Ade Lovett <ade@FreeBSD.org> Date: Thu, 24 Aug 2000 15:16:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/libglade/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/08/24 15:16:15 PDT Added files: devel/libglade/patches patch-aa Log: Disable bonobo support, even if the software is available on the system, since the code has bit-rotted and does not grok the new bonobo Problem reports by: Archie Cobbs <archie@whistle.com> Sledgehammer patch by: ade To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 15:59:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F263337B422; Thu, 24 Aug 2000 15:59:14 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA56391; Thu, 24 Aug 2000 15:59:14 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200008242259.PAA56391@freefall.freebsd.org> From: "Jordan K. Hubbard" <jkh@FreeBSD.org> Date: Thu, 24 Aug 2000 15:59:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/internal machines.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/08/24 15:59:14 PDT Modified files: en/internal machines.sgml Log: Update to include ref4 and ref5 and eliminate the dead node machines. Revision Changes Path 1.16 +13 -6 www/en/internal/machines.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 16: 2: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D93C37B42C; Thu, 24 Aug 2000 16:01:56 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA56620; Thu, 24 Aug 2000 16:01:56 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200008242301.QAA56620@freefall.freebsd.org> From: "Jordan K. Hubbard" <jkh@FreeBSD.org> Date: Thu, 24 Aug 2000 16:01:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/internal machines.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/08/24 16:01:56 PDT Modified files: en/internal machines.sgml Log: Update the hardware descriptions as well. Revision Changes Path 1.17 +13 -6 www/en/internal/machines.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 16:45:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 792A637B422; Thu, 24 Aug 2000 16:45:50 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA62381; Thu, 24 Aug 2000 16:45:50 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008242345.QAA62381@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Thu, 24 Aug 2000 16:45:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/conserver Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/24 16:45:50 PDT Modified files: comms/conserver Makefile Log: Assume maintainership. Approved by: peter Revision Changes Path 1.14 +3 -2 ports/comms/conserver/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 17:27: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 36F5637B423; Thu, 24 Aug 2000 17:27:01 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA66774; Thu, 24 Aug 2000 17:27:01 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200008250027.RAA66774@freefall.freebsd.org> From: Satoshi Asami <asami@FreeBSD.org> Date: Thu, 24 Aug 2000 17:27:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/xemacs21-mule/pkg DESCR ports/japanese/xemacs21-canna/pkg DESCR ports/editors/xemacs21-mule-common/pkg DESCR INSTALL PLIST ports/editors/xemacs21-sumo Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/08/24 17:27:01 PDT Modified files: editors/xemacs21-mule/pkg DESCR japanese/xemacs21-canna/pkg DESCR editors/xemacs21-mule-common/pkg DESCR INSTALL PLIST editors/xemacs21-sumo Makefile Log: Get these up to 21.1.12 too. PR: 20481, 20482 Submitted by: maintainer Revision Changes Path 1.9 +4 -4 ports/editors/xemacs21-mule/pkg/DESCR 1.9 +4 -4 ports/japanese/xemacs21-canna/pkg/DESCR 1.9 +4 -4 ports/editors/xemacs21-mule-common/pkg/DESCR 1.5 +2 -2 ports/editors/xemacs21-mule-common/pkg/INSTALL 1.10 +0 -1 ports/editors/xemacs21-mule-common/pkg/PLIST 1.11 +2 -2 ports/editors/xemacs21-sumo/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 17:54:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 46E6437B422; Thu, 24 Aug 2000 17:54:40 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA69112; Thu, 24 Aug 2000 17:54:40 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008250054.RAA69112@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 17:54:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/srd-fpw Makefile ports/japanese/srd-fpw/files md5 ports/japanese/srd-fpw/pkg DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 17:54:40 PDT Modified files: japanese/srd-fpw Makefile japanese/srd-fpw/files md5 japanese/srd-fpw/pkg DESCR PLIST Log: Update to version 1.1 Revision Changes Path 1.2 +17 -7 ports/japanese/srd-fpw/Makefile 1.2 +1 -1 ports/japanese/srd-fpw/files/md5 1.2 +4 -0 ports/japanese/srd-fpw/pkg/DESCR 1.2 +1 -0 ports/japanese/srd-fpw/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 18: 1:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C2E137B43C; Thu, 24 Aug 2000 18:01:08 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA70050; Thu, 24 Aug 2000 18:01:08 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200008250101.SAA70050@freefall.freebsd.org> From: Brian Somers <brian@FreeBSD.org> Date: Thu, 24 Aug 2000 18:01:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/finger extern.h finger.1 finger.c finger.conf.5 lprint.c pathnames.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/08/24 18:01:07 PDT Modified files: usr.bin/finger extern.h finger.1 finger.c finger.conf.5 lprint.c pathnames.h Log: Allow finger.conf to contain aliases for files that will be displayed when fingered. Submitted by: Mark Knight <markk@knigma.org> Revision Changes Path 1.3 +2 -0 src/usr.bin/finger/extern.h 1.11 +2 -4 src/usr.bin/finger/finger.1 1.17 +21 -9 src/usr.bin/finger/finger.c 1.3 +13 -4 src/usr.bin/finger/finger.conf.5 1.11 +8 -8 src/usr.bin/finger/lprint.c 1.2 +9 -1 src/usr.bin/finger/pathnames.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 18:17: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A26337B422; Thu, 24 Aug 2000 18:16:59 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA73048; Thu, 24 Aug 2000 18:16:59 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008250116.SAA73048@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 18:16:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/srd-fpw/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 18:16:59 PDT Added files: japanese/srd-fpw/patches patch-aa Log: I have a trouble that is converting from BMP to PNG by convert of ImageMagick-5.2.3. I executed the following command: % convert temp.bmp temp.png Then I could not disappear half of image of temp.bmp by temp.png (width of temp.png is distended twice and the extra part (half of it) is disappeared). I found the method to fix the problem incidentally. If you do % convert -frame 2x2 temp.bmp temp.png then you get correct data. Thus I do modification that convert with "-frame 2x2" is excecuted To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 18:22:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D6E137B424; Thu, 24 Aug 2000 18:22:23 -0700 (PDT) Received: (from motoyuki@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA73426; Thu, 24 Aug 2000 18:22:23 -0700 (PDT) (envelope-from motoyuki@FreeBSD.org) Message-Id: <200008250122.SAA73426@freefall.freebsd.org> From: Motoyuki Konno <motoyuki@FreeBSD.org> Date: Thu, 24 Aug 2000 18:22:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ja docs.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG motoyuki 2000/08/24 18:22:23 PDT Modified files: ja docs.sgml Log: Fix link to FreeBSD diary. Submitted by: Yuzo Furukawa <furukawa@eee.tut.ac.jp> References: [doc-jp 7642][doc-jp 7650] Revision Changes Path 1.36 +3 -3 www/ja/docs.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 19:12:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C72137B422; Thu, 24 Aug 2000 19:12:52 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA79286; Thu, 24 Aug 2000 19:12:52 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008250212.TAA79286@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 19:12:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/jvim3 Makefile ports/japanese/jvim3/files md5 ports/japanese/jvim3/patches patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 19:12:51 PDT Modified files: japanese/jvim3 Makefile japanese/jvim3/files md5 Added files: japanese/jvim3/patches patch-ac Log: Updated to 2.1beta Revision Changes Path 1.17 +4 -4 ports/japanese/jvim3/Makefile 1.6 +1 -1 ports/japanese/jvim3/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 19:13:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 61F8837B422; Thu, 24 Aug 2000 19:13:26 -0700 (PDT) Received: (from takawata@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA79369; Thu, 24 Aug 2000 19:13:26 -0700 (PDT) (envelope-from takawata@FreeBSD.org) Message-Id: <200008250213.TAA79369@freefall.freebsd.org> From: Takanori Watanabe <takawata@FreeBSD.org> Date: Thu, 24 Aug 2000 19:13:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/include acpica_osd.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG takawata 2000/08/24 19:13:26 PDT Added files: sys/i386/include acpica_osd.h Log: Another file needed for ACPI,I forgot to commit. Noticed by:iwasaki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 19:19:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D89B137B43C; Thu, 24 Aug 2000 19:19:22 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA80006; Thu, 24 Aug 2000 19:19:22 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008250219.TAA80006@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 19:19:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/jvim3/patches patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 19:19:22 PDT Modified files: japanese/jvim3/patches patch-ac Log: Deleted extra white spaces Revision Changes Path 1.4 +1 -1 ports/japanese/jvim3/patches/patch-ac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 19:50:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EBE7C37B423; Thu, 24 Aug 2000 19:50:53 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA82856; Thu, 24 Aug 2000 19:50:53 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008250250.TAA82856@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 19:50:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/easypr Makefile ports/japanese/easypr/files md5 ports/japanese/easypr/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 19:50:53 PDT Modified files: japanese/easypr Makefile japanese/easypr/files md5 japanese/easypr/pkg PLIST Log: Updated to version 0.60 Revision Changes Path 1.4 +5 -3 ports/japanese/easypr/Makefile 1.2 +1 -1 ports/japanese/easypr/files/md5 1.2 +1 -0 ports/japanese/easypr/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 19:53:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 110D537B42C; Thu, 24 Aug 2000 19:53:27 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA83125; Thu, 24 Aug 2000 19:53:27 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008250253.TAA83125@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 19:53:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/easypr/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 19:53:26 PDT Added files: japanese/easypr/patches patch-aa Log: Oops. I forgot to add a new patch to succeed in compiling on FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 20:59: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9324E37B42C; Thu, 24 Aug 2000 20:59:00 -0700 (PDT) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA90236; Thu, 24 Aug 2000 20:59:00 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200008250359.UAA90236@freefall.freebsd.org> From: Brian Feldman <green@FreeBSD.org> Date: Thu, 24 Aug 2000 20:59:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/lib/libcrypto Makefile Makefile.inc X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/08/24 20:59:00 PDT Modified files: (Branch: RELENG_4) secure/lib/libcrypto Makefile Makefile.inc Log: Merge evp.h problem fixes. Prompted by: dirk Revision Changes Path 1.15.2.3 +3 -5 src/secure/lib/libcrypto/Makefile 1.7.2.2 +8 -3 src/secure/lib/libcrypto/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 22:19:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 163B437B423; Thu, 24 Aug 2000 22:19:49 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA01882; Thu, 24 Aug 2000 22:19:49 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) Message-Id: <200008250519.WAA01882@freefall.freebsd.org> From: "Vanilla I. Shu" <vanilla@FreeBSD.org> Date: Thu, 24 Aug 2000 22:19:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/xcin25 Makefile ports/chinese/xcin25/files md5 ports/chinese/xcin25/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG vanilla 2000/08/24 22:19:48 PDT Modified files: chinese/xcin25 Makefile chinese/xcin25/files md5 chinese/xcin25/pkg PLIST Log: Upgrade to 2.5.2p5. Revision Changes Path 1.22 +4 -4 ports/chinese/xcin25/Makefile 1.11 +1 -1 ports/chinese/xcin25/files/md5 1.11 +0 -4 ports/chinese/xcin25/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 22:28:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A354B37B424; Thu, 24 Aug 2000 22:28:35 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA02625; Thu, 24 Aug 2000 22:28:35 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008250528.WAA02625@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 22:28:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-fonts/intlfonts/files DEINSTALL.tmpl ports/x11-fonts/intlfonts/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 22:28:35 PDT Modified files: x11-fonts/intlfonts/files DEINSTALL.tmpl x11-fonts/intlfonts/pkg PLIST Log: To delete extra files and directories after pkg_delete Obtained from: asami Revision Changes Path 1.2 +5 -0 ports/x11-fonts/intlfonts/files/DEINSTALL.tmpl 1.3 +4 -0 ports/x11-fonts/intlfonts/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Aug 24 22:41:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FF0D37B42C; Thu, 24 Aug 2000 22:41:31 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA03620; Thu, 24 Aug 2000 22:41:31 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008250541.WAA03620@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Thu, 24 Aug 2000 22:41:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/mgp-mode.el/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/24 22:41:31 PDT Modified files: misc/mgp-mode.el/pkg PLIST Log: Delete extra files and directories after pkg_delete Obtained from: bento Revision Changes Path 1.2 +2 -0 ports/misc/mgp-mode.el/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 0:31:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 31EEB37B42C; Fri, 25 Aug 2000 00:31:19 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA17068; Fri, 25 Aug 2000 00:31:19 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008250731.AAA17068@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Fri, 25 Aug 2000 00:31:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_ioctl.h linux_ipc.h linux_mib.c linux_mib.h linux_signal.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/25 00:31:18 PDT Modified files: sys/compat/linux linux_ioctl.h linux_ipc.h linux_mib.c linux_mib.h linux_signal.h Log: Fix typo in license. Revision Changes Path 1.4 +2 -2 src/sys/compat/linux/linux_ioctl.h 1.2 +2 -2 src/sys/compat/linux/linux_ipc.h 1.7 +2 -2 src/sys/compat/linux/linux_mib.c 1.3 +2 -2 src/sys/compat/linux/linux_mib.h 1.2 +2 -2 src/sys/compat/linux/linux_signal.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 0:32:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED96F37B424; Fri, 25 Aug 2000 00:32:26 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA17195; Fri, 25 Aug 2000 00:32:26 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008250732.AAA17195@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Fri, 25 Aug 2000 00:32:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux linux_machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/25 00:32:26 PDT Modified files: sys/i386/linux linux_machdep.c Log: Fix typo in license. Revision Changes Path 1.2 +2 -2 src/sys/i386/linux/linux_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 0:42: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6273537B423; Fri, 25 Aug 2000 00:42:02 -0700 (PDT) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA18415; Fri, 25 Aug 2000 00:42:02 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Message-Id: <200008250742.AAA18415@freefall.freebsd.org> From: Satoshi Taoka <taoka@FreeBSD.org> Date: Fri, 25 Aug 2000 00:42:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-fonts/nexfontsel/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG taoka 2000/08/25 00:42:02 PDT Modified files: x11-fonts/nexfontsel/pkg PLIST Log: Delete extra directories after pkg_delete Obtained from: bento Revision Changes Path 1.2 +2 -0 ports/x11-fonts/nexfontsel/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 1: 8:22 2000 Delivered-To: cvs-all@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id BF4F237B423; Fri, 25 Aug 2000 01:08:11 -0700 (PDT) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id RAA09031; Fri, 25 Aug 2000 17:08:09 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id RAA08200; Fri, 25 Aug 2000 17:07:36 +0900 (JST) Date: Fri, 25 Aug 2000 17:07:34 +0900 Message-ID: <86k8d53gs9.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" <knu@idaemons.org> To: Dan Langille <dan@langille.org> Cc: Bill Fenner <fenner@research.att.com>, joe@pavilion.net, bright@wintelcom.net, doug@gorean.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvsweb links in cvs commit messages In-Reply-To: In your message of "Fri, 25 Aug 2000 08:31:22 +1200" <200008242031.IAA28601@ducky.nz.freebsd.org> References: <200008242022.NAA06781@windsor.research.att.com> <200008242031.IAA28601@ducky.nz.freebsd.org> User-Agent: Wanderlust/2.3.0 (Roam) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 11) (Carlsbad Caverns) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE X-PGP-Comment: I changed my key on 2000-08-10 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, At Fri, 25 Aug 2000 08:31:22 +1200, Dan Langille <dan@langille.org> wrote: > On 24 Aug 2000, at 13:22, Bill Fenner wrote: > > > I thought ?rev=. and ?rev=HEAD worked, but I guess not. > > Correct, it doesn't work. > > http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/textproc/sgmltools-lite/Makefile?rev=HEAD > > Error: Malformed query "rev=HEAD" Ok, I'll commit the fix that allows one to use a tag name for rev. > > Prepending the magic value ~checkout~/ to the path works. > > > > http://www.FreeBSD.org/cgi/cvsweb.cgi/~checkout~/src/bin/chmod/chmod.1 Thanks for the tip, Bill! This is hacky but a workaround for now. > My use of ~checkout~/ doesn't give what I would expect: > > ### > http://www.FreeBSD.org/cgi/cvsweb.cgi/~checkout~/ports/textproc/sgmltools-lite/Makefile > > Error: Unexpected output from cvs co: (snip) > ### Is it intentional to request a file that does not exist? The file ports/textproc/sgmltools-lite/Makefile is removed at HEAD. I have to admit that cvsweb needs more error checks. It is a problem to be solved in the future. -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 1:18:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 355F037B422; Fri, 25 Aug 2000 01:18:51 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA23365; Fri, 25 Aug 2000 01:18:51 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008250818.BAA23365@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Fri, 25 Aug 2000 01:18:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4/man4.i386 linux.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/25 01:18:50 PDT Modified files: share/man/man4/man4.i386 linux.4 Log: Replace the thumb-suck phrase "system call vector translation" with something that people who like tomato juice prefer. Revision Changes Path 1.2 +2 -2 src/share/man/man4/man4.i386/linux.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 1:23: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 18D8637B422; Fri, 25 Aug 2000 01:23:02 -0700 (PDT) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id UAA33011; Fri, 25 Aug 2000 20:22:38 +1200 (NZST) Message-Id: <200008250822.UAA33011@ducky.nz.freebsd.org> From: "Dan Langille" <dan@langille.org> Organization: langille.org To: "Akinori -Aki- MUSHA" <knu@idaemons.org> Date: Fri, 25 Aug 2000 20:22:38 +1200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvsweb links in cvs commit messages Reply-To: dan@langille.org Cc: Bill Fenner <fenner@research.att.com>, joe@pavilion.net, bright@wintelcom.net, doug@gorean.org, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <86k8d53gs9.wl@archon.local.idaemons.org> References: In your message of "Fri, 25 Aug 2000 08:31:22 +1200" <200008242031.IAA28601@ducky.nz.freebsd.org> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 25 Aug 2000, at 17:07, Akinori -Aki- MUSHA wrote: > > My use of ~checkout~/ doesn't give what I would expect: > > > > ### > > http://www.FreeBSD.org/cgi/cvsweb.cgi/~checkout~/ports/textproc/sgmltools > > -lite/Makefile > > > > Error: Unexpected output from cvs co: > (snip) > > ### > > Is it intentional to request a file that does not exist? The file No. That was a poor choice as an example. -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ FreshPorts - http://freshports.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 1:29:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BB5837B42C; Fri, 25 Aug 2000 01:29:28 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA24518; Fri, 25 Aug 2000 01:29:28 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008250829.BAA24518@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Fri, 25 Aug 2000 01:29:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/finger finger.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/25 01:29:28 PDT Modified files: usr.bin/finger finger.1 Log: Add a missing comma. Revision Changes Path 1.12 +2 -2 src/usr.bin/finger/finger.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 1:31: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3907F37B424; Fri, 25 Aug 2000 01:30:56 -0700 (PDT) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA24640; Fri, 25 Aug 2000 01:30:56 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200008250830.BAA24640@freefall.freebsd.org> From: Jun Kuriyama <kuriyama@FreeBSD.org> Date: Fri, 25 Aug 2000 01:30:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci pcisupport.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/08/25 01:30:56 PDT Modified files: sys/pci pcisupport.c Log: Correct messages for VIA Apollo Pro133A. Revision Changes Path 1.166 +6 -2 src/sys/pci/pcisupport.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 1:36:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D59B37B42C; Fri, 25 Aug 2000 01:36:44 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA25154; Fri, 25 Aug 2000 01:36:44 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200008250836.BAA25154@freefall.freebsd.org> From: "Andrey A. Chernov" <ache@FreeBSD.org> Date: Fri, 25 Aug 2000 01:36:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/termcap termcap.src X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/08/25 01:36:44 PDT Modified files: share/termcap termcap.src Log: cons25r: minimize differences with cons25 Revision Changes Path 1.101 +2 -2 src/share/termcap/termcap.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 1:37:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E955237B422; Fri, 25 Aug 2000 01:37:56 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA25346; Fri, 25 Aug 2000 01:37:56 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200008250837.BAA25346@freefall.freebsd.org> From: "Andrey A. Chernov" <ache@FreeBSD.org> Date: Fri, 25 Aug 2000 01:37:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/termcap termcap.src X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/08/25 01:37:56 PDT Modified files: (Branch: RELENG_4) share/termcap termcap.src Log: MFC: minimize cons25r vs cons25 differences Revision Changes Path 1.89.2.11 +2 -2 src/share/termcap/termcap.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 1:49:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A62337B43E; Fri, 25 Aug 2000 01:49:40 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA26835; Fri, 25 Aug 2000 01:49:40 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008250849.BAA26835@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Fri, 25 Aug 2000 01:49:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/apsfilter6 Makefile ports/print/apsfilter6/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/25 01:49:40 PDT Modified files: print/apsfilter6 Makefile print/apsfilter6/files md5 Log: upgrade to newest snap 25.08.2000 See ANNOUNCE file in apsfilterrc, what changes have been done ! Revision Changes Path 1.69 +2 -2 ports/print/apsfilter6/Makefile 1.35 +1 -1 ports/print/apsfilter6/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 1:50:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 525B437B424; Fri, 25 Aug 2000 01:50:54 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA26979; Fri, 25 Aug 2000 01:50:54 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008250850.BAA26979@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Fri, 25 Aug 2000 01:50:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/apsfilter Makefile ports/print/apsfilter/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/25 01:50:54 PDT Modified files: print/apsfilter Makefile print/apsfilter/files md5 Log: MFC Allow 6.x gs versions, even developer snapshots. by using gs --version to get gs version number. Revision Changes Path 1.66 +2 -2 ports/print/apsfilter/Makefile 1.31 +1 -1 ports/print/apsfilter/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 1:53:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCB2137B422; Fri, 25 Aug 2000 01:53:23 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA27314; Fri, 25 Aug 2000 01:53:23 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200008250853.BAA27314@freefall.freebsd.org> From: "Andrey A. Chernov" <ache@FreeBSD.org> Date: Fri, 25 Aug 2000 01:53:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/l10n chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/08/25 01:53:23 PDT Modified files: en_US.ISO_8859-1/books/handbook/l10n chapter.sgml Log: KOI8-R setup: Fix references to KOI8-R WWW Remove keychange for console setup according to new termcap changes Add XFree86 v4 setup examples No English touched Revision Changes Path 1.40 +20 -10 doc/en_US.ISO_8859-1/books/handbook/l10n/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 1:56:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E52537B424; Fri, 25 Aug 2000 01:56:29 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA27720; Fri, 25 Aug 2000 01:56:29 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200008250856.BAA27720@freefall.freebsd.org> From: "Andrey A. Chernov" <ache@FreeBSD.org> Date: Fri, 25 Aug 2000 01:56:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc termcap.small X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/08/25 01:56:28 PDT Modified files: etc termcap.small Log: Sync with main Revision Changes Path 1.21 +2 -2 src/etc/termcap.small To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 1:57:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D2B637B422; Fri, 25 Aug 2000 01:57:46 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA27869; Fri, 25 Aug 2000 01:57:46 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200008250857.BAA27869@freefall.freebsd.org> From: "Andrey A. Chernov" <ache@FreeBSD.org> Date: Fri, 25 Aug 2000 01:57:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc termcap.small X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/08/25 01:57:45 PDT Modified files: (Branch: RELENG_4) etc termcap.small Log: MFC: sync with main Revision Changes Path 1.16.2.4 +2 -2 src/etc/termcap.small To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 2: 4: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BA87137B423; Fri, 25 Aug 2000 02:03:59 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA28823; Fri, 25 Aug 2000 02:03:59 -0700 (PDT) (envelope-from bde@FreeBSD.org) Message-Id: <200008250903.CAA28823@freefall.freebsd.org> From: Bruce Evans <bde@FreeBSD.org> Date: Fri, 25 Aug 2000 02:03:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/msdosfs bpb.h msdosfsmount.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bde 2000/08/25 02:03:59 PDT Modified files: sys/msdosfs bpb.h msdosfsmount.h Log: Quick fix for msdsofs_write() on alphas and other machines with either longs larger than 32 bits or strict alignment requirements. pm_fatmask had type u_long, but it must have a type that has precisely 32 bits and this type must be no smaller than int, so that ~pmp->pm_fatmask has no bits above the 31st set. Otherwise, comparisons between (cn | ~pmp->pm_fatmask) and magic 32-bit "cluster" numbers always fail. The correct fix is to use the C99 type uint_least32_t and mask with 0xffffffff. The quick fix is to use u_int32_t and assume that ints have msdosfs metadata is riddled with unaligned fields, and on alphas, unaligned_fixup() apparently has problems fixing up the unaligned accesses caused by this. The quick fix is to not comment out the NetBSD code that sort of handles this, and define UNALIGNED_ACCESS on i386's so that the code doesn't change on i386's. The correct fix would define UNALIGNED_ACCESS in a central machine-dependent header and maybe add some extra cases to unaligned_fixup(). UNALIGNED_ACCESS is also tested in isofs. Submitted by: parts by Mark Abene <phiber@radicalmedia.com> PR: 19086 Revision Changes Path 1.8 +8 -2 src/sys/msdosfs/bpb.h 1.22 +2 -2 src/sys/msdosfs/msdosfsmount.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 2: 5:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C614A37B42C; Fri, 25 Aug 2000 02:05:56 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA30531; Fri, 25 Aug 2000 02:05:56 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Message-Id: <200008250905.CAA30531@freefall.freebsd.org> From: Sheldon Hearn <sheldonh@FreeBSD.org> Date: Fri, 25 Aug 2000 02:05:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if_iso88025subr.c X-FreeBSD-CVS-Branch: RELENG_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sheldonh 2000/08/25 02:05:56 PDT Modified files: (Branch: RELENG_3) sys/net if_iso88025subr.c Log: MFC rev 1.6: add a missing semi-colon. Revision Changes Path 1.2.2.3 +2 -2 src/sys/net/if_iso88025subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 2: 8: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C811937B424; Fri, 25 Aug 2000 02:08:01 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA30909; Fri, 25 Aug 2000 02:08:01 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008250908.CAA30909@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Fri, 25 Aug 2000 02:08:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/svgalib Makefile ports/graphics/svgalib/files md5 ports/graphics/svgalib/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/25 02:08:01 PDT Modified files: graphics Makefile Added files: graphics/svgalib Makefile graphics/svgalib/files md5 graphics/svgalib/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-aq patch-ar patch-as patch-at patch-au graphics/svgalib/pkg COMMENT DESCR PLIST Log: Add svgalib - a *native* port of well-knows Linux console graphics library. Please note, that it's a work in progress, so some features doesn't work (for example mouse support). However, the functionality already present is sufficient to run some of the popular apps (quakeforge for example). I tested it on ATI Mach64 and C&T55554 adapters. Revision Changes Path 1.212 +2 -1 ports/graphics/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 2: 8:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B98E437B423; Fri, 25 Aug 2000 02:08:22 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA30951; Fri, 25 Aug 2000 02:08:22 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008250908.CAA30951@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Fri, 25 Aug 2000 02:08:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/25 02:08:22 PDT Modified files: . modules Log: svgalib --> ports/graphics/svgalib Revision Changes Path 1.1604 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 2:13:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9151937B424; Fri, 25 Aug 2000 02:13:40 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA31644; Fri, 25 Aug 2000 02:13:40 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008250913.CAA31644@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Fri, 25 Aug 2000 02:13:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/cgi - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/25 02:13:40 PDT www/en/cgi - Imported sources Update of /home/ncvs/www/en/cgi In directory freefall.freebsd.org:/d/home/knu/work/cvsweb Log Message: Import knu-cvsweb 1.94.1.15, which is based on cvsweb-zeller 1.94. Status: Vendor Tag: KNU Release Tags: v1_94_1_15 C www/en/cgi/cvsweb.cgi C www/en/cgi/cvsweb.conf 2 conflicts created by this import. Use the following command to help the merge: cvs checkout -jKNU:yesterday -jKNU www/en/cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 2:21: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9542137B423; Fri, 25 Aug 2000 02:21:01 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA32548; Fri, 25 Aug 2000 02:21:01 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008250921.CAA32548@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Fri, 25 Aug 2000 02:21:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/cgi cvsweb.cgi cvsweb.conf X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/25 02:21:01 PDT Modified files: en/cgi cvsweb.cgi cvsweb.conf Log: Merge from knu-cvsweb 1.94.1.15. 2000-08-25 18:01 knu * cvsweb.cgi: Get side-by-side diff working when $showfunc is true, noting that `-p' option of diff(1) can only be used with context and unified diffs. Submitted by: Roger Hardiman <roger@cs.strath.ac.uk> Allow to specify CVS tags or branch names (including `.' and `HEAD') on cvs checkout. e.g. http://foo/cvsweb.cgi/bar/dood.c?rev=. http://foo/cvsweb.cgi/bar/dood.c?rev=RELENG_4 http://foo/cvsweb.cgi/bar/dood.c?rev=RELENG_4_1_0_RELEASE Not for diff currently, as rcsdiff does not grok CVS tags. Inspired by: Folks at the FreeBSD cvs-all list. Specify `-R' (turn on read-only repository mode) and `-l' (do not log in the command history) on cvs checkout, so that one does not need a write permission with the repository. 2000-08-25 00:53 knu * cvsweb.cgi: MFZ 1.94. (Fix a typo in JavaScript code) Revision Changes Path 1.48 +20 -11 www/en/cgi/cvsweb.cgi 1.4 +2 -2 www/en/cgi/cvsweb.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 2:27:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E06C37B423; Fri, 25 Aug 2000 02:27:56 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA33735; Fri, 25 Aug 2000 02:27:56 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008250927.CAA33735@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Fri, 25 Aug 2000 02:27:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/utah-glx Makefile ports/graphics/utah-glx/files md5 ports/graphics/utah-glx/patches patch-ab patch-ac patch-ad ports/graphics/utah-glx/pkg DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/25 02:27:56 PDT Modified files: graphics/utah-glx Makefile graphics/utah-glx/files md5 graphics/utah-glx/patches patch-ab patch-ac patch-ad graphics/utah-glx/pkg DESCR PLIST Log: Update to the latest cvs snapshot. - New chipset supported: S3 Savage3D (I have not tested it personally); - Improved support for already supported chipsets; - Change port versioning scheme to PORTVERSION=YYYYMMDD, because despite the promise, the project had not released its magic 1.0 version (promised to be about 3 months ago); - Catch change of the Mesa3 version. Revision Changes Path 1.13 +3 -3 ports/graphics/utah-glx/Makefile 1.3 +1 -1 ports/graphics/utah-glx/files/md5 1.2 +13 -13 ports/graphics/utah-glx/patches/patch-ab 1.2 +14 -14 ports/graphics/utah-glx/patches/patch-ac 1.2 +9 -9 ports/graphics/utah-glx/patches/patch-ad 1.4 +2 -1 ports/graphics/utah-glx/pkg/DESCR 1.3 +1 -0 ports/graphics/utah-glx/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 2:39:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8841137B422; Fri, 25 Aug 2000 02:39:12 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA34672; Fri, 25 Aug 2000 02:39:12 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008250939.CAA34672@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Fri, 25 Aug 2000 02:39:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cvsweb Makefile ports/devel/cvsweb/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/25 02:39:12 PDT Modified files: devel/cvsweb Makefile devel/cvsweb/files md5 Log: Update to knu-cvsweb 1.94.1.15. 2000-08-25 18:01 knu * cvsweb.cgi: Get side-by-side diff working when $showfunc is true, noting that `-p' option of diff(1) can only be used with context and unified diffs. Submitted by: Roger Hardiman <roger@cs.strath.ac.uk> Allow to specify CVS tags or branch names (including `.' and `HEAD') on cvs checkout. e.g. http://foo/cvsweb.cgi/bar/dood.c?rev=. http://foo/cvsweb.cgi/bar/dood.c?rev=RELENG_4 http://foo/cvsweb.cgi/bar/dood.c?rev=RELENG_4_1_0_RELEASE Not for diff currently, as rcsdiff does not grok CVS tags. Inspired by: Folks at the FreeBSD cvs-all list. Specify `-R' (turn on read-only repository mode) and `-l' (do not log in the command history) on cvs checkout, so that one does not need a write permission with the repository. 2000-08-25 00:53 knu * cvsweb.cgi: MFZ 1.94. (Fix a typo in JavaScript code) Revision Changes Path 1.24 +3 -3 ports/devel/cvsweb/Makefile 1.11 +1 -1 ports/devel/cvsweb/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 2:40:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8834D37B422; Fri, 25 Aug 2000 02:40:27 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id CAA34731; Fri, 25 Aug 2000 02:40:27 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Fri, 25 Aug 2000 02:40:27 -0700 (PDT) From: Kris Kennaway <kris@FreeBSD.org> To: Maxim Sobolev <sobomax@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/graphics/utah-glx Makefile ports/graphics/utah-glx/files md5 ports/graphics/utah-glx/patches patch-ab patch-ac patch-ad ports/graphics/utah-glx/pkg DESCR PLIST In-Reply-To: <200008250927.CAA33735@freefall.freebsd.org> Message-ID: <Pine.BSF.4.21.0008250237380.31593-100000@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 25 Aug 2000, Maxim Sobolev wrote: > - Change port versioning scheme to PORTVERSION=YYYYMMDD, because despite the > promise, the project had not released its magic 1.0 version (promised to be > about 3 months ago); In the coming world order for ports, this version number change is wrong (or at least likely to be wrong in the future): 0.9.1 -> YYYYMMDD -> 0.9.2 will cause a version decrease which will require a bump of PORTEPOCH to compensate. Better to call it 0.9.1.YYYYMMDD or 0.9.1.1 or something else which stays monotonically increasing when the vendor does get around to releasing a new version. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe <forsythe@alum.mit.edu> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 2:49: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 14AB037B422; Fri, 25 Aug 2000 02:49:05 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA35554; Fri, 25 Aug 2000 02:49:05 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200008250949.CAA35554@freefall.freebsd.org> From: Maxim Sobolev <sobomax@FreeBSD.org> Date: Fri, 25 Aug 2000 02:49:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/utah-glx Makefile ports/graphics/utah-glx/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/08/25 02:49:04 PDT Modified files: graphics/utah-glx Makefile graphics/utah-glx/files md5 Log: Change version to be 0.9.YYYYMMDD, to avoid confusion with future vendor's 1.* releases. Submitted by: kris Revision Changes Path 1.14 +2 -2 ports/graphics/utah-glx/Makefile 1.4 +1 -1 ports/graphics/utah-glx/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 2:50:48 2000 Delivered-To: cvs-all@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id CC0B637B43E; Fri, 25 Aug 2000 02:50:40 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.106]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id MAA14796; Fri, 25 Aug 2000 12:50:34 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.9.3/8.9.3) with ESMTP id MAA25069; Fri, 25 Aug 2000 12:50:28 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39A64163.AE920F01@FreeBSD.org> Date: Fri, 25 Aug 2000 12:50:27 +0300 From: Maxim Sobolev <sobomax@FreeBSD.org> Organization: Vega International Capital X-Mailer: Mozilla 4.74 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Kris Kennaway <kris@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/graphics/utah-glx Makefile ports/graphics/utah-glx/filesmd5 ports/graphics/utah-glx/patches patch-ab patch-ac patch-ad ports/graphics/utah-glx/pkg DESCR PLIST References: <Pine.BSF.4.21.0008250237380.31593-100000@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Kris Kennaway wrote: > On Fri, 25 Aug 2000, Maxim Sobolev wrote: > > > - Change port versioning scheme to PORTVERSION=YYYYMMDD, because despite the > > promise, the project had not released its magic 1.0 version (promised to be > > about 3 months ago); > > In the coming world order for ports, this version number change is wrong > (or at least likely to be wrong in the future): > > 0.9.1 -> YYYYMMDD -> 0.9.2 will cause a version decrease which will > require a bump of PORTEPOCH to compensate. > > Better to call it 0.9.1.YYYYMMDD or 0.9.1.1 or something else which stays > monotonically increasing when the vendor does get around to releasing a > new version. Point taken. Thanks for the tip! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 2:59:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C645F37B424; Fri, 25 Aug 2000 02:59:16 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA36408; Fri, 25 Aug 2000 02:59:16 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008250959.CAA36408@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Fri, 25 Aug 2000 02:59:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_ruby Makefile ports/www/mod_ruby/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/25 02:59:15 PDT Modified files: www/mod_ruby Makefile www/mod_ruby/files md5 Log: Update to 0.1.9. Revision Changes Path 1.4 +3 -7 ports/www/mod_ruby/Makefile 1.2 +1 -1 ports/www/mod_ruby/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 3: 6: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 235A737B422; Fri, 25 Aug 2000 03:06:06 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA38567; Fri, 25 Aug 2000 03:06:06 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008251006.DAA38567@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Fri, 25 Aug 2000 03:06:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/eruby Makefile ports/textproc/eruby/files md5 ports/textproc/eruby/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/25 03:06:05 PDT Modified files: textproc/eruby Makefile textproc/eruby/files md5 Removed files: textproc/eruby/patches patch-aa Log: Update to 0.0.9. URGENT UPGRADE REQUIRED: The previous version had a security hole when it is used as a CGI program -- which allows HTTP remote users to view arbitrary files on the web server. Revision Changes Path 1.3 +3 -7 ports/textproc/eruby/Makefile 1.2 +1 -1 ports/textproc/eruby/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 3: 7:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0ACCB37B424; Fri, 25 Aug 2000 03:07:22 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA38683; Fri, 25 Aug 2000 03:07:22 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200008251007.DAA38683@freefall.freebsd.org> From: Satoshi Asami <asami@FreeBSD.org> Date: Fri, 25 Aug 2000 03:07:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.x11-4.dist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/08/25 03:07:21 PDT Modified files: etc/mtree BSD.x11-4.dist Log: Update BSD.x11-4.dist to XFree86-4 after repo copy. I believe this is correct but I won't know for sure until bento's cluster comes back up. Revision Changes Path 1.13 +75 -1 src/etc/mtree/BSD.x11-4.dist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 3: 8:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F124B37B423; Fri, 25 Aug 2000 03:08:20 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA38804; Fri, 25 Aug 2000 03:08:20 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200008251008.DAA38804@freefall.freebsd.org> From: Satoshi Asami <asami@FreeBSD.org> Date: Fri, 25 Aug 2000 03:08:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.x11-4.dist X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/08/25 03:08:20 PDT Added files: (Branch: RELENG_4) etc/mtree BSD.x11-4.dist Log: Add BSD.x11-4.dist to RELENG_4. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 3: 9:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 74A8A37B422; Fri, 25 Aug 2000 03:09:13 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA38884; Fri, 25 Aug 2000 03:09:13 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200008251009.DAA38884@freefall.freebsd.org> From: Satoshi Asami <asami@FreeBSD.org> Date: Fri, 25 Aug 2000 03:09:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.x11-4.dist X-FreeBSD-CVS-Branch: RELENG_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/08/25 03:09:13 PDT Added files: (Branch: RELENG_3) etc/mtree BSD.x11-4.dist Log: Add BSD.x11-4.dist to RELENG_3. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 3:17:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E337737B42C; Fri, 25 Aug 2000 03:17:40 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA40269; Fri, 25 Aug 2000 03:17:40 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200008251017.DAA40269@freefall.freebsd.org> From: Satoshi Asami <asami@FreeBSD.org> Date: Fri, 25 Aug 2000 03:17:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.port.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/08/25 03:17:40 PDT Modified files: Mk bsd.port.mk Log: (1) Move "XFREE86_VERSION?=3" up to the pre-makefile section so it can be used inside Makefiles for testing. Submitted by: sobomax (2) Use newly added /etc/mtree/BSD.x11-4.dist when XFREE86_VERSION=4. Requested by: taguchi@tohoku.iij.ad.jp (3) Re-enable MASTER_SITE_OVERRIDE and MASTER_SITE_BACKUP functionalities by making MASTER_SORT ignore them (i.e., leave *_OVERRIDE at the beginning and *_BACKUP at the end). As a side effect, there are new targets "master-sites" and "patch-sites" that will print out the correctly sorted versions of said lists. Reviewed by: the ports list (3') Sort patch sites too, not only master sites. Reviewed by: the ports list (4) New target "deinstall-depends" which will do a "make deinstall" in all ports this one depends on. (4') Only run pkg_delete from the deinstall target when package exists, to avoid "no such package installed" errors. Revision Changes Path 1.347 +33 -21 ports/Mk/bsd.port.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 3:23:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0827837B43C; Fri, 25 Aug 2000 03:23:16 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA41311; Fri, 25 Aug 2000 03:23:16 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200008251023.DAA41311@freefall.freebsd.org> From: Satoshi Asami <asami@FreeBSD.org> Date: Fri, 25 Aug 2000 03:23:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc Makefile ports/misc/41upgrade Makefile ports/misc/41upgrade/pkg COMMENT DESCR INSTALL PLIST REQ X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/08/25 03:23:15 PDT Modified files: misc Makefile Added files: misc/41upgrade Makefile misc/41upgrade/pkg COMMENT DESCR INSTALL PLIST REQ Log: New port 41upgrade, a 4.1-release to 4-stable upgrade kit. Revision Changes Path 1.287 +2 -1 ports/misc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 3:23:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E4FB37B43F; Fri, 25 Aug 2000 03:23:23 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA41372; Fri, 25 Aug 2000 03:23:23 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200008251023.DAA41372@freefall.freebsd.org> From: Satoshi Asami <asami@FreeBSD.org> Date: Fri, 25 Aug 2000 03:23:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/08/25 03:23:23 PDT Modified files: . modules Log: 41upgrade --> ports/misc/41upgrade Revision Changes Path 1.1605 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 3:27:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9105537B43E; Fri, 25 Aug 2000 03:27:21 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA42145; Fri, 25 Aug 2000 03:27:21 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200008251027.DAA42145@freefall.freebsd.org> From: Satoshi Asami <asami@FreeBSD.org> Date: Fri, 25 Aug 2000 03:27:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/30upgrade Makefile ports/misc/30upgrade/pkg PLIST ports/misc/31upgrade Makefile ports/misc/31upgrade/pkg PLIST ports/misc/32upgrade Makefile ports/misc/32upgrade/pkg PLIST ports/misc/34upgrade Makefile ports/misc/34upgrade/pkg PLIST ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/08/25 03:27:20 PDT Modified files: misc/30upgrade Makefile misc/30upgrade/pkg PLIST misc/31upgrade Makefile misc/31upgrade/pkg PLIST misc/32upgrade Makefile misc/32upgrade/pkg PLIST misc/34upgrade Makefile misc/34upgrade/pkg PLIST misc/40upgrade Makefile misc/40upgrade/pkg PLIST Log: Upgrade the upgrade kits to include /etc/mtree/BSD.x11-4.dist. Bump versions to today's date. Revision Changes Path 1.17 +2 -2 ports/misc/30upgrade/Makefile 1.9 +1 -0 ports/misc/30upgrade/pkg/PLIST 1.15 +2 -2 ports/misc/31upgrade/Makefile 1.7 +1 -0 ports/misc/31upgrade/pkg/PLIST 1.11 +2 -2 ports/misc/32upgrade/Makefile 1.5 +1 -0 ports/misc/32upgrade/pkg/PLIST 1.7 +2 -2 ports/misc/34upgrade/Makefile 1.4 +1 -0 ports/misc/34upgrade/pkg/PLIST 1.2 +2 -2 ports/misc/40upgrade/Makefile 1.2 +1 -0 ports/misc/40upgrade/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 3:35:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D65D37B423; Fri, 25 Aug 2000 03:35:23 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA44466; Fri, 25 Aug 2000 03:35:23 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200008251035.DAA44466@freefall.freebsd.org> From: Satoshi Asami <asami@FreeBSD.org> Date: Fri, 25 Aug 2000 03:35:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/imake-4 Makefile ports/devel/imake-4/files md5 ports/devel/imake-4/patches patch-c patch-d patch-h patch-z01 ports/devel/imake-4/pkg PLIST ports/x11-fonts/XFree86-4-font100dpi Makefile ports/x11-fonts/XFree86-4-font100dpi/files md5 ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/08/25 03:35:23 PDT Modified files: devel/imake-4 Makefile devel/imake-4/files md5 devel/imake-4/patches patch-c patch-d patch-h patch-z01 devel/imake-4/pkg PLIST x11-fonts/XFree86-4-font100dpi Makefile x11-fonts/XFree86-4-font100dpi/files md5 x11-fonts/XFree86-4-font75dpi Makefile x11-fonts/XFree86-4-font75dpi/files md5 x11-fonts/XFree86-4-fontCyrillic Makefile x11-fonts/XFree86-4-fontCyrillic/files md5 x11-fonts/XFree86-4-fontDefaultBitmaps Makefile x11-fonts/XFree86-4-fontDefaultBitmaps/files md5 x11-fonts/XFree86-4-fontDefaultBitmaps/pkg PLIST x11-fonts/XFree86-4-fontEncodings Makefile x11-fonts/XFree86-4-fontEncodings/files md5 x11-fonts/XFree86-4-fontEncodings/pkg PLIST x11-fonts/XFree86-4-fontLatin2 Makefile x11-fonts/XFree86-4-fontLatin2/files md5 x11-fonts/XFree86-4-fontLatin2/pkg PLIST x11-fonts/XFree86-4-fontScalable Makefile x11-fonts/XFree86-4-fontScalable/files md5 x11-fonts/XFree86-4-fontScalable/pkg PLIST x11-servers/XFree86-4-FontServer Makefile x11-servers/XFree86-4-FontServer/files md5 x11-servers/XFree86-4-FontServer/pkg PLIST x11-servers/XFree86-4-FontServer/scripts configure x11-servers/XFree86-4-NestServer Makefile x11-servers/XFree86-4-NestServer/files md5 x11-servers/XFree86-4-PrintServer Makefile x11-servers/XFree86-4-PrintServer/files md5 x11-servers/XFree86-4-Server Makefile x11-servers/XFree86-4-Server/files md5 x11-servers/XFree86-4-Server/pkg PLIST x11-servers/XFree86-4-Server/scripts configure x11-servers/XFree86-4-VirtualFramebufferServer Makefile x11-servers/XFree86-4-VirtualFramebufferServer/files md5 x11/XFree86-4-clients Makefile x11/XFree86-4-clients/files md5 x11/XFree86-4-clients/pkg PLIST x11/XFree86-4-clients/scripts configure x11/XFree86-4-documents Makefile x11/XFree86-4-documents/files md5 x11/XFree86-4-documents/patches patch-06 x11/XFree86-4-documents/pkg PLIST x11/XFree86-4-libraries Makefile x11/XFree86-4-libraries/files md5 x11/XFree86-4-libraries/patches patch-d patch-s01 patch-s02 patch-z02 patch-z03 patch-z04 patch-z06 patch-z07 patch-z13 patch-z21 x11/XFree86-4-libraries/pkg PLIST x11/XFree86-4-libraries/scripts configure x11/XFree86-4-manuals Makefile x11/XFree86-4-manuals/files md5 x11/XFree86-4-manuals/pkg PLIST Added files: x11/XFree86-4-libraries/patches patch-z30 patch-z31 patch-z32 patch-z33 patch-z34 patch-z35 patch-z37 Removed files: x11/XFree86-4-libraries/patches patch-3 patch-9 patch-e patch-j patch-s03 Log: Update to 4.0.1. Remove libraries from -clients. Try to extract only what each port needs. Other miscellaneous bug fixes. Submitted by: maintainer Revision Changes Path 1.7 +25 -12 ports/devel/imake-4/Makefile 1.3 +1 -1 ports/devel/imake-4/files/md5 1.2 +4 -4 ports/devel/imake-4/patches/patch-c 1.2 +3 -14 ports/devel/imake-4/patches/patch-d 1.2 +4 -5 ports/devel/imake-4/patches/patch-h 1.2 +0 -26 ports/devel/imake-4/patches/patch-z01 1.3 +12 -0 ports/devel/imake-4/pkg/PLIST 1.2 +17 -17 ports/x11-fonts/XFree86-4-font100dpi/Makefile 1.2 +1 -1 ports/x11-fonts/XFree86-4-font100dpi/files/md5 1.2 +16 -19 ports/x11-fonts/XFree86-4-font75dpi/Makefile 1.2 +1 -1 ports/x11-fonts/XFree86-4-font75dpi/files/md5 1.2 +16 -16 ports/x11-fonts/XFree86-4-fontCyrillic/Makefile 1.2 +1 -1 ports/x11-fonts/XFree86-4-fontCyrillic/files/md5 1.2 +19 -19 ports/x11-fonts/XFree86-4-fontDefaultBitmaps/Makefile 1.2 +2 -2 ports/x11-fonts/XFree86-4-fontDefaultBitmaps/files/md5 1.3 +62 -0 ports/x11-fonts/XFree86-4-fontDefaultBitmaps/pkg/PLIST 1.2 +15 -15 ports/x11-fonts/XFree86-4-fontEncodings/Makefile 1.2 +1 -1 ports/x11-fonts/XFree86-4-fontEncodings/files/md5 1.2 +0 -2 ports/x11-fonts/XFree86-4-fontEncodings/pkg/PLIST 1.2 +16 -16 ports/x11-fonts/XFree86-4-fontLatin2/Makefile 1.2 +1 -1 ports/x11-fonts/XFree86-4-fontLatin2/files/md5 1.3 +0 -3 ports/x11-fonts/XFree86-4-fontLatin2/pkg/PLIST 1.2 +26 -18 ports/x11-fonts/XFree86-4-fontScalable/Makefile 1.2 +1 -1 ports/x11-fonts/XFree86-4-fontScalable/files/md5 1.3 +0 -1 ports/x11-fonts/XFree86-4-fontScalable/pkg/PLIST 1.3 +24 -28 ports/x11-servers/XFree86-4-FontServer/Makefile 1.2 +1 -1 ports/x11-servers/XFree86-4-FontServer/files/md5 1.2 +1 -3 ports/x11-servers/XFree86-4-FontServer/pkg/PLIST 1.2 +7 -0 ports/x11-servers/XFree86-4-FontServer/scripts/configure 1.2 +24 -28 ports/x11-servers/XFree86-4-NestServer/Makefile 1.2 +1 -1 ports/x11-servers/XFree86-4-NestServer/files/md5 1.2 +22 -22 ports/x11-servers/XFree86-4-PrintServer/Makefile 1.2 +1 -1 ports/x11-servers/XFree86-4-PrintServer/files/md5 1.84 +83 -43 ports/x11-servers/XFree86-4-Server/Makefile 1.26 +1 -2 ports/x11-servers/XFree86-4-Server/files/md5 1.32 +104 -6 ports/x11-servers/XFree86-4-Server/pkg/PLIST 1.62 +13 -2 ports/x11-servers/XFree86-4-Server/scripts/configure 1.2 +24 -28 ports/x11-servers/XFree86-4-VirtualFramebufferServer/Makefile 1.2 +1 -1 ports/x11-servers/XFree86-4-VirtualFramebufferServer/files/md5 1.85 +126 -50 ports/x11/XFree86-4-clients/Makefile 1.26 +1 -1 ports/x11/XFree86-4-clients/files/md5 1.33 +164 -271 ports/x11/XFree86-4-clients/pkg/PLIST 1.62 +12 -2 ports/x11/XFree86-4-clients/scripts/configure 1.2 +18 -20 ports/x11/XFree86-4-documents/Makefile 1.2 +2 -2 ports/x11/XFree86-4-documents/files/md5 1.2 +0 -8 ports/x11/XFree86-4-documents/patches/patch-06 1.2 +0 -1 ports/x11/XFree86-4-documents/pkg/PLIST 1.85 +21 -23 ports/x11/XFree86-4-libraries/Makefile 1.26 +1 -1 ports/x11/XFree86-4-libraries/files/md5 1.5 +22 -14 ports/x11/XFree86-4-libraries/patches/patch-d 1.2 +11 -13 ports/x11/XFree86-4-libraries/patches/patch-s01 1.2 +10 -54 ports/x11/XFree86-4-libraries/patches/patch-s02 1.2 +36 -13 ports/x11/XFree86-4-libraries/patches/patch-z02 1.2 +2 -2 ports/x11/XFree86-4-libraries/patches/patch-z03 1.2 +5 -3 ports/x11/XFree86-4-libraries/patches/patch-z04 1.2 +4 -4 ports/x11/XFree86-4-libraries/patches/patch-z06 1.2 +3 -3 ports/x11/XFree86-4-libraries/patches/patch-z07 1.2 +3 -3 ports/x11/XFree86-4-libraries/patches/patch-z13 1.2 +6 -7 ports/x11/XFree86-4-libraries/patches/patch-z21 1.33 +116 -9 ports/x11/XFree86-4-libraries/pkg/PLIST 1.62 +9 -1 ports/x11/XFree86-4-libraries/scripts/configure 1.2 +1009 -949 ports/x11/XFree86-4-manuals/Makefile 1.2 +1 -1 ports/x11/XFree86-4-manuals/files/md5 1.2 +993 -0 ports/x11/XFree86-4-manuals/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 3:43:53 2000 Delivered-To: cvs-all@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 532C937B422; Fri, 25 Aug 2000 03:43:49 -0700 (PDT) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id WAA33817; Fri, 25 Aug 2000 22:43:38 +1200 (NZST) Message-Id: <200008251043.WAA33817@ducky.nz.freebsd.org> From: "Dan Langille" <dan@langille.org> Organization: langille.org To: Satoshi Asami <asami@FreeBSD.ORG> Date: Fri, 25 Aug 2000 22:43:37 +1200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvs commit: ports/devel/imake-4 Makefile ports/devel/imake-4/files md5 ports/devel/imake-4/patches patch-c patch-d Reply-To: dan@langille.org Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <200008251035.DAA44466@freefall.freebsd.org> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 25 Aug 2000, at 3:35, Satoshi Asami wrote: > asami 2000/08/25 03:35:23 PDT > > Modified files: We got a problem: [dan@set:/usr/ports/x11-servers/XFree86-4-Server] $ make -V PKGNAME "Makefile", line 99: Need an operator make: fatal errors encountered -- cannot continue -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ FreshPorts - http://freshports.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 3:54:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 47EA837B424; Fri, 25 Aug 2000 03:54:52 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA49744; Fri, 25 Aug 2000 03:54:51 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200008251054.DAA49744@freefall.freebsd.org> From: Satoshi Asami <asami@FreeBSD.org> Date: Fri, 25 Aug 2000 03:54:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-servers/XFree86-4-Server Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/08/25 03:54:50 PDT Modified files: x11-servers/XFree86-4-Server Makefile Log: Oops, syntax error when !defined(BATCH) and !defined(PACKAGE_BUILDING). Also change pre-fetch to pre-everything. Reported by: freshports Revision Changes Path 1.85 +3 -3 ports/x11-servers/XFree86-4-Server/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 3:59:28 2000 Delivered-To: cvs-all@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id C572437B424; Fri, 25 Aug 2000 03:59:24 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-02.ix.netcom.com [209.109.232.2]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id GAA03287; Fri, 25 Aug 2000 06:59:21 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id DAA93920; Fri, 25 Aug 2000 03:59:15 -0700 (PDT) To: dan@langille.org Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/devel/imake-4 Makefile ports/devel/imake-4/files md5 ports/devel/imake-4/patches patch-c patch-d References: <200008251043.WAA33817@ducky.nz.freebsd.org> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: 25 Aug 2000 03:59:13 -0700 In-Reply-To: "Dan Langille"'s message of "Fri, 25 Aug 2000 22:43:37 +1200" Message-ID: <vqcr97d61z2.fsf@silvia.hip.berkeley.edu> Lines: 13 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * From: "Dan Langille" <dan@langille.org> * We got a problem: * * [dan@set:/usr/ports/x11-servers/XFree86-4-Server] $ make -V * PKGNAME * "Makefile", line 99: Need an operator * make: fatal errors encountered -- cannot continue Oops sorry, syntax error in !BATCH case that I didn't test. Should be fixed now. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 4:56:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C1E3A37B423; Fri, 25 Aug 2000 04:56:54 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA66251; Fri, 25 Aug 2000 04:56:54 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251156.EAA66251@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 04:56:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/advanced-networking chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 04:56:54 PDT Added files: es_ES.ISO_8859-1/books/handbook/advanced-networking chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:15:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DF5637B423; Fri, 25 Aug 2000 05:15:28 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA72526; Fri, 25 Aug 2000 05:15:28 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251215.FAA72526@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:15:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/advanced-networking chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:15:28 PDT Modified files: es_ES.ISO_8859-1/books/handbook/advanced-networking chapter.sgml Log: Add $FreeBSD$ tag. Revision Changes Path 1.2 +7 -0 doc/es_ES.ISO_8859-1/books/handbook/advanced-networking/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:18:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E409337B422; Fri, 25 Aug 2000 05:18:09 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA73179; Fri, 25 Aug 2000 05:18:09 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251218.FAA73179@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:18:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/backups chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:18:09 PDT Added files: es_ES.ISO_8859-1/books/handbook/backups chapter.sgml Log: First translated version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:19:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4821937B423; Fri, 25 Aug 2000 05:19:50 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA73578; Fri, 25 Aug 2000 05:19:50 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251219.FAA73578@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:19:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/basics chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:19:50 PDT Added files: es_ES.ISO_8859-1/books/handbook/basics chapter.sgml Log: First translated version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:21: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7806237B423; Fri, 25 Aug 2000 05:21:03 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA73822; Fri, 25 Aug 2000 05:21:03 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251221.FAA73822@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:21:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/bibliography chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:21:03 PDT Added files: es_ES.ISO_8859-1/books/handbook/bibliography chapter.sgml Log: First translated version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:23: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54DB537B423; Fri, 25 Aug 2000 05:23:01 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA74175; Fri, 25 Aug 2000 05:23:01 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251223.FAA74175@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:23:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/contrib chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:23:01 PDT Added files: es_ES.ISO_8859-1/books/handbook/contrib chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:42:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 134A837B43C; Fri, 25 Aug 2000 05:42:08 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA77167; Fri, 25 Aug 2000 05:42:08 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251242.FAA77167@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:42:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/disks chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:42:08 PDT Added files: es_ES.ISO_8859-1/books/handbook/disks chapter.sgml Log: First translated version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:42:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F094137B423; Fri, 25 Aug 2000 05:42:30 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA77244; Fri, 25 Aug 2000 05:42:30 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251242.FAA77244@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:42:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/eresources chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:42:30 PDT Added files: es_ES.ISO_8859-1/books/handbook/eresources chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:42:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F8DD37B422; Fri, 25 Aug 2000 05:42:54 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA77330; Fri, 25 Aug 2000 05:42:54 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251242.FAA77330@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:42:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/hw chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:42:54 PDT Added files: es_ES.ISO_8859-1/books/handbook/hw chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:43:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2AE0F37B424; Fri, 25 Aug 2000 05:43:17 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA77415; Fri, 25 Aug 2000 05:43:17 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251243.FAA77415@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:43:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/install chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:43:17 PDT Added files: es_ES.ISO_8859-1/books/handbook/install chapter.sgml Log: First translated version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:44: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 007D237B422; Fri, 25 Aug 2000 05:44:02 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA77546; Fri, 25 Aug 2000 05:44:01 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251244.FAA77546@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:44:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/internals chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:44:01 PDT Added files: es_ES.ISO_8859-1/books/handbook/internals chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:47:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D20337B422; Fri, 25 Aug 2000 05:47:13 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA77973; Fri, 25 Aug 2000 05:47:13 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251247.FAA77973@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:47:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/introduction chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:47:13 PDT Added files: es_ES.ISO_8859-1/books/handbook/introduction chapter.sgml Log: First translated version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:51: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F08F37B42C; Fri, 25 Aug 2000 05:51:06 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA78500; Fri, 25 Aug 2000 05:51:06 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251251.FAA78500@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:51:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/introduction chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:51:04 PDT Modified files: es_ES.ISO_8859-1/books/handbook/introduction chapter.sgml Log: Add $FreeBSD$ tag. Revision Changes Path 1.2 +6 -0 doc/es_ES.ISO_8859-1/books/handbook/introduction/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:52:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 267BB37B43C; Fri, 25 Aug 2000 05:52:44 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA78742; Fri, 25 Aug 2000 05:52:44 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251252.FAA78742@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:52:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/kernelconfig chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:52:44 PDT Added files: es_ES.ISO_8859-1/books/handbook/kernelconfig chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:53:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A38F637B423; Fri, 25 Aug 2000 05:53:53 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA78963; Fri, 25 Aug 2000 05:53:53 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251253.FAA78963@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:53:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/kerneldebug chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:53:49 PDT Added files: es_ES.ISO_8859-1/books/handbook/kerneldebug chapter.sgml Log: First translated version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:54:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F17737B424; Fri, 25 Aug 2000 05:54:47 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA79133; Fri, 25 Aug 2000 05:54:47 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251254.FAA79133@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:54:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/kernelopts chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:54:47 PDT Added files: es_ES.ISO_8859-1/books/handbook/kernelopts chapter.sgml Log: First translated version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:55: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from zibbi.mikom.csir.co.za (zibbi.mikom.csir.co.za [146.64.24.58]) by hub.freebsd.org (Postfix) with ESMTP id 10B7E37B422; Fri, 25 Aug 2000 05:54:45 -0700 (PDT) Received: (from jhay@localhost) by zibbi.mikom.csir.co.za (8.10.1/8.10.1) id e7PCsbW11144; Fri, 25 Aug 2000 14:54:37 +0200 (SAT) From: John Hay <jhay@icomtek.co.za> Message-Id: <200008251254.e7PCsbW11144@zibbi.mikom.csir.co.za> Subject: Re: cvs commit: src/include unistd.h src/lib/libcrypt Makefile crypt.3 crypt.c crypt.h src/lib/libutil Makefile login_ca In-Reply-To: <Pine.BSF.4.21.0008240839460.52828-100000@green.dyndns.org> from Brian Fundakowski Feldman at "Aug 24, 2000 08:42:36 am" To: green@FreeBSD.org (Brian Fundakowski Feldman) Date: Fri, 25 Aug 2000 14:54:37 +0200 (SAT) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > The simple synopsis is: > > > edit login.conf; add a passwd_format field set to "des" or "md5"; go nuts :) > > > > Has anyone been able to change passwords after this? I just get: > > > > ############ > > beast:/home/jhay # passwd root > > Changing local password for root. > > New password: > > Retype new password: > > Bus error (core dumped) > > beast:/home/jhay # > > ############ > > Try debugging it? I have not seen this ever, nor has anyone reported it in > testing, and I can't think of anything that would be going wrong. Seems > like this is maybe an NIS bug? Ok, I did. I think you will also see the problem if you run current and delete /etc/malloc.conf. Here is a patch to fix it. I'm not sure if it is perfect, but passwd works and don't crash anymore. I have tried with both des and md5 passwords. I also found out that the default is md5, which was one question I had. :-) John -- John Hay -- John.Hay@icomtek.csir.co.za Index: local_passwd.c =================================================================== RCS file: /home/ncvs/src/usr.bin/passwd/local_passwd.c,v retrieving revision 1.25 diff -u -r1.25 local_passwd.c --- local_passwd.c 2000/08/22 02:15:53 1.25 +++ local_passwd.c 2000/08/25 12:47:10 @@ -132,7 +132,6 @@ } /* mixpasswordcase capability */ force_mix_case = login_getcapbool(lc, "mixpasswordcase", 1); - login_close(lc); } #endif @@ -179,6 +178,10 @@ to64(&salt[3], tv.tv_usec, 3); to64(&salt[6], tv.tv_sec, 2); salt[8] = '\0'; +#endif +#ifdef LOGIN_CAP + if(lc) + login_close(lc); #endif return (crypt(buf, salt)); } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:55:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 393B537B43F; Fri, 25 Aug 2000 05:55:42 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA79272; Fri, 25 Aug 2000 05:55:42 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251255.FAA79272@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:55:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/l10n chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:55:42 PDT Added files: es_ES.ISO_8859-1/books/handbook/l10n chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:56:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ABF2437B423; Fri, 25 Aug 2000 05:56:20 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA79433; Fri, 25 Aug 2000 05:56:20 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251256.FAA79433@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:56:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/linuxemu chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:56:20 PDT Added files: es_ES.ISO_8859-1/books/handbook/linuxemu chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:57:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A9E5637B43C; Fri, 25 Aug 2000 05:57:18 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA79600; Fri, 25 Aug 2000 05:57:18 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251257.FAA79600@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:57:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/mail chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:57:18 PDT Added files: es_ES.ISO_8859-1/books/handbook/mail chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:58: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CE0837B422; Fri, 25 Aug 2000 05:58:06 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA79716; Fri, 25 Aug 2000 05:58:06 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251258.FAA79716@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:58:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/mirrors chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:58:06 PDT Added files: es_ES.ISO_8859-1/books/handbook/mirrors chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:58:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9048637B42C; Fri, 25 Aug 2000 05:58:54 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA79851; Fri, 25 Aug 2000 05:58:54 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251258.FAA79851@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:58:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/pgpkeys chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:58:54 PDT Added files: es_ES.ISO_8859-1/books/handbook/pgpkeys chapter.sgml Log: First translated version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 5:59:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0569D37B440; Fri, 25 Aug 2000 05:59:45 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA79983; Fri, 25 Aug 2000 05:59:45 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251259.FAA79983@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 05:59:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/policies chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 05:59:44 PDT Added files: es_ES.ISO_8859-1/books/handbook/policies chapter.sgml Log: First translated version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 6: 0:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1912737B424; Fri, 25 Aug 2000 06:00:29 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA80136; Fri, 25 Aug 2000 06:00:29 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251300.GAA80136@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 06:00:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/ports chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 06:00:28 PDT Added files: es_ES.ISO_8859-1/books/handbook/ports chapter.sgml Log: First translated version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 6: 1:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2335F37B424; Fri, 25 Aug 2000 06:01:10 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA80255; Fri, 25 Aug 2000 06:01:10 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251301.GAA80255@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 06:01:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/ppp-and-slip chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 06:01:09 PDT Added files: es_ES.ISO_8859-1/books/handbook/ppp-and-slip chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 6: 1:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB70637B422; Fri, 25 Aug 2000 06:01:57 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA80392; Fri, 25 Aug 2000 06:01:57 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251301.GAA80392@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 06:01:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/printing chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 06:01:57 PDT Added files: es_ES.ISO_8859-1/books/handbook/printing chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 6: 2:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D5AC37B424; Fri, 25 Aug 2000 06:02:38 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA80533; Fri, 25 Aug 2000 06:02:38 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251302.GAA80533@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 06:02:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/quotas chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 06:02:38 PDT Added files: es_ES.ISO_8859-1/books/handbook/quotas chapter.sgml Log: First translated version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 6: 3:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 75BDF37B43C; Fri, 25 Aug 2000 06:03:24 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA80724; Fri, 25 Aug 2000 06:03:24 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251303.GAA80724@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 06:03:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/security chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 06:03:24 PDT Added files: es_ES.ISO_8859-1/books/handbook/security chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 6: 3:28 2000 Delivered-To: cvs-all@freebsd.org Received: from mout1.silyn-tek.de (mout1.silyn-tek.de [194.25.165.69]) by hub.freebsd.org (Postfix) with ESMTP id 8690F37B43E; Fri, 25 Aug 2000 06:03:21 -0700 (PDT) Received: from [192.168.32.34] (helo=mx2.silyn-tek.de) by mout1.silyn-tek.de with esmtp (Exim 3.13 #1) id 13SJ8i-0004bs-00; Fri, 25 Aug 2000 15:03:20 +0200 Received: from p3e9e2791.dip0.t-ipconnect.de ([62.158.39.145] helo=neutron.cichlids.com) by mx2.silyn-tek.de with esmtp (Exim 3.13 #1) id 13SJ8g-0003LH-00; Fri, 25 Aug 2000 15:03:18 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id 77449AB91; Fri, 25 Aug 2000 15:04:43 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 87E6F14B8A; Fri, 25 Aug 2000 15:03:19 +0200 (CEST) Date: Fri, 25 Aug 2000 15:03:19 +0200 To: Seigo Tanimura <tanimura@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ed if_ed.c if_ed_pccard.c if_edvar.h Message-ID: <20000825150319.A37555@cichlids.cichlids.com> References: <200008140431.VAA92561@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200008140431.VAA92561@freefall.freebsd.org>; from tanimura@FreeBSD.org on Sun, Aug 13, 2000 at 09:31:11PM -0700 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. From: alex@big.endian.de (Alexander Langer) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Seigo Tanimura (tanimura@FreeBSD.org): > Modified files: > sys/dev/ed if_ed.c if_ed_pccard.c if_edvar.h > Log: > Newbusify ed driver. --> The entries in conf/files.i386 can be moved to conf/files, I think. Alex What about the following patch? cvs diff: Diffing . Index: files =================================================================== RCS file: /usr/home/ncvs/src/sys/conf/files,v retrieving revision 1.398 diff -u -r1.398 files --- files 2000/08/23 03:22:32 1.398 +++ files 2000/08/25 13:03:53 @@ -123,6 +123,9 @@ dev/dpt/dpt_eisa.c optional dpt eisa dev/dpt/dpt_pci.c optional dpt pci dev/dpt/dpt_scsi.c optional dpt +dev/ed/if_ed.c optional ed +dev/ed/if_ed_isa.c optional ed isa +dev/ed/if_ed_pccard.c optional ed card dev/ed/if_ed_pci.c optional ed pci dev/en/midway.c count en dev/ep/if_ep.c optional ep Index: files.i386 =================================================================== RCS file: /usr/home/ncvs/src/sys/conf/files.i386,v retrieving revision 1.324 diff -u -r1.324 files.i386 --- files.i386 2000/08/22 06:02:00 1.324 +++ files.i386 2000/08/25 13:04:05 @@ -81,9 +81,6 @@ dev/ata/atapi-cd.c optional atapicd dev/ata/atapi-fd.c optional atapifd dev/ata/atapi-tape.c optional atapist -dev/ed/if_ed.c optional ed -dev/ed/if_ed_isa.c optional ed isa -dev/ed/if_ed_pccard.c optional ed card dev/eisa/eisaconf.c count eisa dev/fb/fb.c optional fb dev/fb/fb.c optional vga -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 6: 4:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CEEE737B43C; Fri, 25 Aug 2000 06:04:22 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA80980; Fri, 25 Aug 2000 06:04:22 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251304.GAA80980@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 06:04:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/serialcomms chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 06:04:22 PDT Added files: es_ES.ISO_8859-1/books/handbook/serialcomms chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 6: 5: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E2FF37B422; Fri, 25 Aug 2000 06:05:05 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA81164; Fri, 25 Aug 2000 06:05:02 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251305.GAA81164@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 06:05:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/staff chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 06:05:02 PDT Added files: es_ES.ISO_8859-1/books/handbook/staff chapter.sgml Log: First translated version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 6: 5:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 22B8137B43E; Fri, 25 Aug 2000 06:05:49 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA82651; Fri, 25 Aug 2000 06:05:49 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251305.GAA82651@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 06:05:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/x11 chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 06:05:49 PDT Added files: es_ES.ISO_8859-1/books/handbook/x11 chapter.sgml Log: File committed for be able to build the spanish handbook. This section is not translated yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 6:14:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F134637B422; Fri, 25 Aug 2000 06:14:19 -0700 (PDT) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA83989; Fri, 25 Aug 2000 06:14:19 -0700 (PDT) (envelope-from jesusr@FreeBSD.org) Message-Id: <200008251314.GAA83989@freefall.freebsd.org> From: Jesus Rodriguez Cuesta <jesusr@FreeBSD.org> Date: Fri, 25 Aug 2000 06:14:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/handbook/security chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jesusr 2000/08/25 06:14:19 PDT Modified files: es_ES.ISO_8859-1/books/handbook/security chapter.sgml Log: Make the right commit! Revision Changes Path 1.2 +5 -2 doc/es_ES.ISO_8859-1/books/handbook/security/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 6:14:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4FF9237B423; Fri, 25 Aug 2000 06:14:46 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA84111; Fri, 25 Aug 2000 06:14:46 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008251314.GAA84111@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Fri, 25 Aug 2000 06:14:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/xgs Makefile ports/emulators/xgs/files md5 ports/emulators/xgs/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/25 06:14:46 PDT Modified files: emulators/xgs Makefile emulators/xgs/files md5 emulators/xgs/pkg PLIST Log: - Fix MASTER_SITES - Change location of data files from libdata/ to share/ PR: 20839 Submitted by: Ports Fury Revision Changes Path 1.10 +17 -12 ports/emulators/xgs/Makefile 1.4 +1 -1 ports/emulators/xgs/files/md5 1.4 +5 -5 ports/emulators/xgs/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 6:48:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 595C237B42C; Fri, 25 Aug 2000 06:48:09 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA89323; Fri, 25 Aug 2000 06:48:09 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200008251348.GAA89323@freefall.freebsd.org> From: "Chris D. Faulhaber" <jedgar@FreeBSD.org> Date: Fri, 25 Aug 2000 06:48:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/staroffice52 Makefile ports/editors/staroffice52/files setup.patch soffice.patch ports/german/staroffice52 Makefile ports/german/staroffice52/files setup.patch soffice.patch X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/08/25 06:48:09 PDT Modified files: editors/staroffice52 Makefile editors/staroffice52/files setup.patch soffice.patch german/staroffice52 Makefile german/staroffice52/files setup.patch soffice.patch Log: - Add DISPLAY functionality to keep StarOffice from crashing during installation and startup - Make a few cosmetic fixes to the Makefile(s) Submitted by: Martin Blapp <mb@imp.ch> (Maintainer) Revision Changes Path 1.15 +32 -14 ports/editors/staroffice52/Makefile 1.3 +9 -3 ports/editors/staroffice52/files/setup.patch 1.3 +9 -3 ports/editors/staroffice52/files/soffice.patch 1.9 +36 -13 ports/german/staroffice52/Makefile 1.3 +12 -2 ports/german/staroffice52/files/setup.patch 1.3 +12 -2 ports/german/staroffice52/files/soffice.patch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 7: 7:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0777637B422; Fri, 25 Aug 2000 07:07:37 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA31919; Fri, 25 Aug 2000 07:07:36 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008251407.HAA31919@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Fri, 25 Aug 2000 07:07:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/pmf Makefile ports/net/pmf/files pmfrc.default.in ports/net/pmf/patches patch-ab patch-ac ports/net/pmf/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/25 07:07:36 PDT Modified files: net/pmf Makefile net/pmf/files pmfrc.default.in net/pmf/patches patch-ab patch-ac net/pmf/pkg PLIST Log: - Support NOPORTDOCS - Change location of data files from libdata/ to share/ PR: 20840 Submitted by: Ports Fury Revision Changes Path 1.18 +13 -10 ports/net/pmf/Makefile 1.2 +1 -1 ports/net/pmf/files/pmfrc.default.in 1.2 +1 -1 ports/net/pmf/patches/patch-ab 1.2 +2 -3 ports/net/pmf/patches/patch-ac 1.4 +92 -92 ports/net/pmf/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 7:36:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE8F137B42C; Fri, 25 Aug 2000 07:36:39 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA59982; Fri, 25 Aug 2000 07:36:39 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200008251436.HAA59982@freefall.freebsd.org> From: Steve Price <steve@FreeBSD.org> Date: Fri, 25 Aug 2000 07:36:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/autoconf/patches patch-ag X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/08/25 07:36:39 PDT Modified files: devel/autoconf/patches patch-ag Log: m4(1) was stripping the [] to leave *.Cc in my previous fix and this was causing problems with a few ports determining that .c was the suffix for executables. The fix is to expand it to '*.c | *.C' so that m4(1) doesn't try to outsmart us. Noticed by: George W. Dinolt <gdinolt@pacbell.net> Revision Changes Path 1.2 +1 -1 ports/devel/autoconf/patches/patch-ag To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 8:23:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF6D837B43F; Fri, 25 Aug 2000 08:23:51 -0700 (PDT) Received: (from cjh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA66279; Fri, 25 Aug 2000 08:23:51 -0700 (PDT) (envelope-from cjh@FreeBSD.org) Message-Id: <200008251523.IAA66279@freefall.freebsd.org> From: CHOI Junho <cjh@FreeBSD.org> Date: Fri, 25 Aug 2000 08:23:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/korean/netscape47-communicator Makefile ports/korean/netscape47-communicator/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cjh 2000/08/25 08:23:51 PDT Modified files: korean/netscape47-communicator Makefile korean/netscape47-communicator/files md5 Log: Update to 4.75 20000826 version. Revision Changes Path 1.22 +2 -2 ports/korean/netscape47-communicator/Makefile 1.13 +1 -1 ports/korean/netscape47-communicator/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 9: 7: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B8CF37B42C; Fri, 25 Aug 2000 09:07:04 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA72246; Fri, 25 Aug 2000 09:07:04 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200008251607.JAA72246@freefall.freebsd.org> From: Ade Lovett <ade@FreeBSD.org> Date: Fri, 25 Aug 2000 09:07:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/ggv/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/08/25 09:07:04 PDT Modified files: print/ggv/patches patch-aa Log: Unconditionally disable bonobo support here too -- it needs reworking for the new bonobo code. Submitted by: Archie Cobbs <archie@whistle.com> Revision Changes Path 1.5 +19 -3 ports/print/ggv/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 9:13:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A28D37B424; Fri, 25 Aug 2000 09:13:28 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA73206; Fri, 25 Aug 2000 09:13:28 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008251613.JAA73206@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Fri, 25 Aug 2000 09:13:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/converters Makefile ports/converters/xunicode Makefile ports/converters/xunicode/files md5 ports/converters/xunicode/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/25 09:13:28 PDT Modified files: converters Makefile Added files: converters/xunicode Makefile converters/xunicode/files md5 converters/xunicode/pkg COMMENT DESCR PLIST Log: Add xunicode, a library for making toolkits support Unicode. Revision Changes Path 1.36 +2 -1 ports/converters/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 9:14:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C9E737B43F; Fri, 25 Aug 2000 09:14:14 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA73349; Fri, 25 Aug 2000 09:14:14 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008251614.JAA73349@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Fri, 25 Aug 2000 09:14:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/25 09:14:14 PDT Modified files: . modules Log: xunicode --> ports/converters/xunicode Revision Changes Path 1.1606 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 9:16: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 55E2337B423; Fri, 25 Aug 2000 09:15:57 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA73592; Fri, 25 Aug 2000 09:15:57 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008251615.JAA73592@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Fri, 25 Aug 2000 09:15:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/smapi Makefile ports/mail/smapi/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/25 09:15:57 PDT Modified files: mail/smapi Makefile mail/smapi/files md5 Log: Update to 000823 PR: 20820 Submitted by: MAINTAINER Revision Changes Path 1.3 +2 -2 ports/mail/smapi/Makefile 1.3 +1 -1 ports/mail/smapi/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 9:17:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 975A237B424; Fri, 25 Aug 2000 09:17:26 -0700 (PDT) Received: (from cjh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA73929; Fri, 25 Aug 2000 09:17:26 -0700 (PDT) (envelope-from cjh@FreeBSD.org) Message-Id: <200008251617.JAA73929@freefall.freebsd.org> From: CHOI Junho <cjh@FreeBSD.org> Date: Fri, 25 Aug 2000 09:17:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/korean/netscape47-communicator/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cjh 2000/08/25 09:17:26 PDT Modified files: korean/netscape47-communicator/files md5 Log: Author(it's me!) re-released the tarball. Revision Changes Path 1.14 +1 -1 ports/korean/netscape47-communicator/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 9:23: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0357737B43C; Fri, 25 Aug 2000 09:23:01 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA74606; Fri, 25 Aug 2000 09:23:00 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200008251623.JAA74606@freefall.freebsd.org> From: Kevin Lo <kevlo@FreeBSD.org> Date: Fri, 25 Aug 2000 09:23:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/asis Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/08/25 09:23:00 PDT Modified files: devel/asis Makefile Log: Update MASTER_SITES PR: 20823 Submitted by: MAINTAINER Revision Changes Path 1.2 +3 -3 ports/devel/asis/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 9:38:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA77937B422; Fri, 25 Aug 2000 09:38:17 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA76643; Fri, 25 Aug 2000 09:38:17 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008251638.JAA76643@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Fri, 25 Aug 2000 09:38:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/ruby-fltk Makefile ports/x11-toolkits/ruby-fltk/files md5 ports/x11-toolkits/ruby-fltk/patches patch-aa patch-ab patch-ac patch-ad ports/x11-toolkits/ruby-fltk/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/25 09:38:17 PDT Modified files: x11-toolkits Makefile Added files: x11-toolkits/ruby-fltk Makefile x11-toolkits/ruby-fltk/files md5 x11-toolkits/ruby-fltk/patches patch-aa patch-ab patch-ac patch-ad x11-toolkits/ruby-fltk/pkg COMMENT DESCR PLIST Log: Add ruby-fltk, a Ruby extension module to use FLTK. Revision Changes Path 1.91 +2 -1 ports/x11-toolkits/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 9:39:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA84F37B42C; Fri, 25 Aug 2000 09:39:10 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA76780; Fri, 25 Aug 2000 09:39:10 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008251639.JAA76780@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Fri, 25 Aug 2000 09:39:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/25 09:39:10 PDT Modified files: . modules Log: ruby-fltk --> ports/x11-toolkits/ruby-fltk Revision Changes Path 1.1607 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 10: 7:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F05FB37B423; Fri, 25 Aug 2000 10:07:32 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA80953; Fri, 25 Aug 2000 10:07:32 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008251707.KAA80953@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Fri, 25 Aug 2000 10:07:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/apsfilter6/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/25 10:07:32 PDT Modified files: print/apsfilter6/pkg COMMENT DESCR PLIST Log: Some cosmetic updates And nuke GLOBAL.sh entirely (was still left in PLIST) Revision Changes Path 1.4 +1 -1 ports/print/apsfilter6/pkg/COMMENT 1.14 +1 -1 ports/print/apsfilter6/pkg/DESCR 1.13 +0 -1 ports/print/apsfilter6/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 11:24:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED20437B423; Fri, 25 Aug 2000 11:24:49 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA91242; Fri, 25 Aug 2000 11:24:49 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008251824.LAA91242@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Fri, 25 Aug 2000 11:24:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/fltk Makefile ports/x11-toolkits/fltk/files md5 ports/x11-toolkits/fltk/patches xunicode.patch-aa xunicode.patch-ab ports/x11-toolkits/fltk-xunicode Makefile ports/x11-toolkits/fltk-xunicode/pkg ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/25 11:24:49 PDT Modified files: x11-toolkits Makefile x11-toolkits/fltk Makefile x11-toolkits/fltk/files md5 Added files: x11-toolkits/fltk/patches xunicode.patch-aa xunicode.patch-ab x11-toolkits/fltk-xunicode Makefile x11-toolkits/fltk-xunicode/pkg COMMENT Log: Add fltk-xunicode, FLTK with Unicode support, as a slave port to fltk. Approved by: Dmitry S. Sivachenko <dima@chg.ru> (MAINTAINER of fltk) Revision Changes Path 1.92 +2 -1 ports/x11-toolkits/Makefile 1.18 +21 -4 ports/x11-toolkits/fltk/Makefile 1.7 +1 -0 ports/x11-toolkits/fltk/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 11:25:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0C6037B423; Fri, 25 Aug 2000 11:25:18 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA91338; Fri, 25 Aug 2000 11:25:18 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008251825.LAA91338@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Fri, 25 Aug 2000 11:25:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/25 11:25:18 PDT Modified files: . modules Log: fltk-xunicode --> ports/x11-toolkits/fltk-xunicode Revision Changes Path 1.1608 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 11:28:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 86E3937B43E; Fri, 25 Aug 2000 11:28:43 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA91701; Fri, 25 Aug 2000 11:28:43 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200008251828.LAA91701@freefall.freebsd.org> From: Brian Somers <brian@FreeBSD.org> Date: Fri, 25 Aug 2000 11:28:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/finger finger.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/08/25 11:28:43 PDT Modified files: usr.bin/finger finger.c Log: Fix the -m option - broken by the last commit. Submitted by: Mark Knight <markk@knigma.org> Revision Changes Path 1.18 +2 -2 src/usr.bin/finger/finger.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 11:33:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 07F9637B424; Fri, 25 Aug 2000 11:33:41 -0700 (PDT) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA92237; Fri, 25 Aug 2000 11:33:40 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200008251833.LAA92237@freefall.freebsd.org> From: Alexander Langer <alex@FreeBSD.org> Date: Fri, 25 Aug 2000 11:33:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO_8859-1/books Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/08/25 11:33:40 PDT Added files: de_DE.ISO_8859-1/books Makefile.inc Log: Add this file in order to make ``make release'' happy. Submitted by: jedgar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 11:34:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AFA7737B424; Fri, 25 Aug 2000 11:34:31 -0700 (PDT) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA92325; Fri, 25 Aug 2000 11:34:31 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200008251834.LAA92325@freefall.freebsd.org> From: Ben Smithurst <ben@FreeBSD.org> Date: Fri, 25 Aug 2000 11:34:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/sgml man-refs.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/08/25 11:34:31 PDT Modified files: share/sgml man-refs.ent Log: Add emacs(1). Revision Changes Path 1.49 +2 -1 doc/share/sgml/man-refs.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 11:37:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 48E3337B43C; Fri, 25 Aug 2000 11:37:41 -0700 (PDT) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA92754; Fri, 25 Aug 2000 11:37:41 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200008251837.LAA92754@freefall.freebsd.org> From: Ben Smithurst <ben@FreeBSD.org> Date: Fri, 25 Aug 2000 11:37:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/faq book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/08/25 11:37:40 PDT Modified files: en_US.ISO_8859-1/books/faq book.sgml Log: Add a question which has come up a few times on -questions recently. ("How can I fix a syntax error in rc.conf which causes the root filesystem to be read only?", or something to that effect.) Revision Changes Path 1.89 +34 -1 doc/en_US.ISO_8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 11:38:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DC4D37B43C; Fri, 25 Aug 2000 11:38:53 -0700 (PDT) Received: (from sos@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA92897; Fri, 25 Aug 2000 11:38:53 -0700 (PDT) (envelope-from sos@FreeBSD.org) Message-Id: <200008251838.LAA92897@freefall.freebsd.org> From: Søren Schmidt <sos@FreeBSD.org> Date: Fri, 25 Aug 2000 11:38:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata atapi-cd.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sos 2000/08/25 11:38:52 PDT Modified files: (Branch: RELENG_4) sys/dev/ata atapi-cd.c Log: Fix the lba calculation, too much -current'ness crept in, sorry... Revision Changes Path 1.48.2.5 +6 -2 src/sys/dev/ata/atapi-cd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 11:50:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CAED637B424; Fri, 25 Aug 2000 11:50:54 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA94258; Fri, 25 Aug 2000 11:50:54 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200008251850.LAA94258@freefall.freebsd.org> From: Brian Somers <brian@FreeBSD.org> Date: Fri, 25 Aug 2000 11:50:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/periodic/daily 100.clean-disks X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/08/25 11:50:54 PDT Modified files: etc/periodic/daily 100.clean-disks Log: Correct variable spelling PR: 20841 Revision Changes Path 1.5 +2 -2 src/etc/periodic/daily/100.clean-disks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 11:52:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B67E137B43C; Fri, 25 Aug 2000 11:52:36 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA94572; Fri, 25 Aug 2000 11:52:36 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200008251852.LAA94572@freefall.freebsd.org> From: Brian Somers <brian@FreeBSD.org> Date: Fri, 25 Aug 2000 11:52:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/periodic/daily 100.clean-disks X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/08/25 11:52:36 PDT Modified files: (Branch: RELENG_4) etc/periodic/daily 100.clean-disks Log: MFC: Correct variable spelling Revision Changes Path 1.3.2.2 +2 -2 src/etc/periodic/daily/100.clean-disks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 12: 0:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F362137B507; Fri, 25 Aug 2000 12:00:50 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA95642; Fri, 25 Aug 2000 12:00:50 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Message-Id: <200008251900.MAA95642@freefall.freebsd.org> From: Bruce Mah <bmah@FreeBSD.org> Date: Fri, 25 Aug 2000 12:00:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pkg_install/version Makefile pkg_version.1 pkg_version.pl X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bmah 2000/08/25 12:00:50 PDT Modified files: (Branch: RELENG_4) usr.sbin/pkg_install/version Makefile pkg_version.1 pkg_version.pl Log: MFC: Makefile 1.5 -> 1.6 pkg_version.1 1.5 -> 1.6 pkg_version.pl 1.5 -> 1.6 Reflect change in pkg_version MAINTAINER. Revision Changes Path 1.5.2.1 +2 -3 src/usr.sbin/pkg_install/version/Makefile 1.5.2.1 +2 -2 src/usr.sbin/pkg_install/version/pkg_version.1 1.4.2.2 +2 -2 src/usr.sbin/pkg_install/version/pkg_version.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 12: 4:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ABB2C37B43C; Fri, 25 Aug 2000 12:04:16 -0700 (PDT) Received: (from iwasaki@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA96183; Fri, 25 Aug 2000 12:04:16 -0700 (PDT) (envelope-from iwasaki@FreeBSD.org) Message-Id: <200008251904.MAA96183@freefall.freebsd.org> From: Mitsuru IWASAKI <iwasaki@FreeBSD.org> Date: Fri, 25 Aug 2000 12:04:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/acpi acpi.h acpi_powerres.c acpi.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG iwasaki 2000/08/25 12:04:16 PDT Modified files: sys/dev/acpi acpi.c Added files: sys/dev/acpi acpi.h acpi_powerres.c Log: Move acpi_softc into acpi.h to be shared from additional files. Add PowerResource manipulation code; acpi_powerres.c. (more files to be created something like acpi_battery, acpi_thermal.c...) Revision Changes Path 1.2 +6 -13 src/sys/dev/acpi/acpi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 12: 9:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E2AB137B424; Fri, 25 Aug 2000 12:09:43 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA98243; Fri, 25 Aug 2000 12:09:43 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Message-Id: <200008251909.MAA98243@freefall.freebsd.org> From: Bill Paul <wpaul@FreeBSD.org> Date: Fri, 25 Aug 2000 12:09:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 sis.4 src/sys/pci if_sis.c if_sisreg.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wpaul 2000/08/25 12:09:43 PDT Modified files: (Branch: RELENG_4) share/man/man4 sis.4 sys/pci if_sis.c if_sisreg.h Log: MFC: Merge support for the NatSemi DP83815 into stable. Revision Changes Path 1.6.2.2 +35 -22 src/share/man/man4/sis.4 1.13.4.4 +266 -40 src/sys/pci/if_sis.c 1.1.4.1 +47 -2 src/sys/pci/if_sisreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 12:16:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E08037B424; Fri, 25 Aug 2000 12:16:43 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA99065; Fri, 25 Aug 2000 12:16:43 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008251916.MAA99065@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Fri, 25 Aug 2000 12:16:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf Makefile.alpha Makefile.i386 Makefile.pc98 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/25 12:16:43 PDT Modified files: sys/conf Makefile.alpha Makefile.i386 Makefile.pc98 Log: Add some anti-foot-shooting protection to the kernel install target. Do not install a kernel unless a device.hints exists. Yes, you can create an empty hints file if you refuse to use them. Revision Changes Path 1.69 +9 -1 src/sys/conf/Makefile.alpha 1.200 +9 -1 src/sys/conf/Makefile.i386 1.99 +9 -1 src/sys/conf/Makefile.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 12:27:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1849E37B42C; Fri, 25 Aug 2000 12:27:57 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA00575; Fri, 25 Aug 2000 12:27:57 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008251927.MAA00575@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Fri, 25 Aug 2000 12:27:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/rsync Makefile ports/net/rsync/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/25 12:27:56 PDT Modified files: net/rsync Makefile net/rsync/files md5 Log: Uprade to version 2.4.5. Revision Changes Path 1.45 +2 -2 ports/net/rsync/Makefile 1.23 +1 -2 ports/net/rsync/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 12:28:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FED837B423; Fri, 25 Aug 2000 12:28:19 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA00663; Fri, 25 Aug 2000 12:28:19 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008251928.MAA00663@freefall.freebsd.org> From: Archie Cobbs <archie@FreeBSD.org> Date: Fri, 25 Aug 2000 12:28:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libftpio ftpio.3 ftpio.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/25 12:28:19 PDT Modified files: (Branch: RELENG_4) lib/libftpio ftpio.3 ftpio.c Log: MFC: - Check FTP_PASSIVE_MODE for the value "NO" (implying active mode) instead of just checking whether it is defined - Remove bogus "PASV toggle" behavior from ftpPassive() - Clarify the relationship between FTP_PASSIVE_MODE and ftpPassive() in the man page Revision Changes Path 1.21.2.2 +5 -3 src/lib/libftpio/ftpio.3 1.33.2.3 +10 -29 src/lib/libftpio/ftpio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 12:30:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B24D37B422; Fri, 25 Aug 2000 12:30:09 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA00904; Fri, 25 Aug 2000 12:30:09 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008251930.MAA00904@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Fri, 25 Aug 2000 12:30:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/config config.h config.y configvers.h mkmakefile.c src/sys/conf Makefile.alpha Makefile.i386 Makefile.pc98 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/25 12:30:04 PDT Modified files: usr.sbin/config config.h config.y configvers.h mkmakefile.c sys/conf Makefile.alpha Makefile.i386 Makefile.pc98 Log: If a ${KERNEL}.hints file exists, and no hints are specified explicitly, then include the hints with a marker indicating that it is a fallback. The kernel side of this is to come shortly. Revision Changes Path 1.38 +2 -1 src/usr.sbin/config/config.h 1.44 +6 -2 src/usr.sbin/config/config.y 1.22 +2 -2 src/usr.sbin/config/configvers.h 1.55 +8 -1 src/usr.sbin/config/mkmakefile.c 1.70 +2 -2 src/sys/conf/Makefile.alpha 1.201 +2 -2 src/sys/conf/Makefile.i386 1.100 +2 -2 src/sys/conf/Makefile.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 12:48:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B29D937B424; Fri, 25 Aug 2000 12:48:11 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA02954; Fri, 25 Aug 2000 12:48:11 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008251948.MAA02954@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Fri, 25 Aug 2000 12:48:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_bus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/25 12:48:11 PDT Modified files: sys/kern subr_bus.c Log: If the config program found a hints file and included it as a fallback, then treat it as such. This isn't perfect, but should do for things like GENERIC. When in fallback mode, they will be used if there are NO other hints. Revision Changes Path 1.77 +29 -11 src/sys/kern/subr_bus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 12:50:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B5C4B37B43E; Fri, 25 Aug 2000 12:50:50 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA03345; Fri, 25 Aug 2000 12:50:50 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200008251950.MAA03345@freefall.freebsd.org> From: Satoshi Asami <asami@FreeBSD.org> Date: Fri, 25 Aug 2000 12:50:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.emacs.mk bsd.port.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/08/25 12:50:50 PDT Modified files: Mk bsd.emacs.mk bsd.port.mk Log: Bump xemacs version to 21.1.12. Requested by: shige Revision Changes Path 1.10 +3 -3 ports/Mk/bsd.emacs.mk 1.348 +3 -2 ports/Mk/bsd.port.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 13: 8:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DD1437B423; Fri, 25 Aug 2000 13:08:32 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA06613; Fri, 25 Aug 2000 13:08:32 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200008252008.NAA06613@freefall.freebsd.org> From: Satoshi Asami <asami@FreeBSD.org> Date: Fri, 25 Aug 2000 13:08:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-fonts/XFree86-4-font100dpi Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/08/25 13:08:32 PDT Modified files: x11-fonts/XFree86-4-font100dpi Makefile Log: Typo (X11_BASE -> X11BASE). Submitted by: bento (well, sort of) Revision Changes Path 1.3 +2 -2 ports/x11-fonts/XFree86-4-font100dpi/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 14: 7:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 10BBC37B422; Fri, 25 Aug 2000 14:07:43 -0700 (PDT) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA14346; Fri, 25 Aug 2000 14:07:43 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Message-Id: <200008252107.OAA14346@freefall.freebsd.org> From: Jean-Marc Zucconi <jmz@FreeBSD.org> Date: Fri, 25 Aug 2000 14:07:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/viewfax/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jmz 2000/08/25 14:07:42 PDT Added files: comms/viewfax/patches patch-aa Log: Fix a buffer overrun for some incorrect input files. Submitted by: Paul Eggert <eggert@twinsun.com> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 15:22:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA47537B42C; Fri, 25 Aug 2000 15:22:08 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA22931; Fri, 25 Aug 2000 15:22:08 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200008252222.PAA22931@freefall.freebsd.org> From: Brian Somers <brian@FreeBSD.org> Date: Fri, 25 Aug 2000 15:22:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/finger finger.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/08/25 15:22:05 PDT Modified files: usr.bin/finger finger.conf.5 Log: Finger.conf first appeared in 4.2 (now that it's been MFCd) Revision Changes Path 1.4 +2 -2 src/usr.bin/finger/finger.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 15:22:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B764437B424; Fri, 25 Aug 2000 15:22:37 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA23013; Fri, 25 Aug 2000 15:22:37 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200008252222.PAA23013@freefall.freebsd.org> From: Brian Somers <brian@FreeBSD.org> Date: Fri, 25 Aug 2000 15:22:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/finger finger.conf.5 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/08/25 15:22:37 PDT Modified files: (Branch: RELENG_4) usr.bin/finger finger.conf.5 Log: MFC: First appeared in 4.2 Revision Changes Path 1.2.2.2 +2 -2 src/usr.bin/finger/finger.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 15:28:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D45037B42C; Fri, 25 Aug 2000 15:28:08 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA23664; Fri, 25 Aug 2000 15:28:08 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008252228.PAA23664@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Fri, 25 Aug 2000 15:28:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern uipc_mbuf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/25 15:28:08 PDT Modified files: sys/kern uipc_mbuf.c Log: m_mballoc_wait() had a spl/tsleep race. mbufs can be freed in interrupt context, which can cause a wakeup.. which can race with this. Revision Changes Path 1.56 +3 -1 src/sys/kern/uipc_mbuf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 15:29:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9548C37B42C; Fri, 25 Aug 2000 15:29:40 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA23991; Fri, 25 Aug 2000 15:29:40 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200008252229.PAA23991@freefall.freebsd.org> From: Satoshi Asami <asami@FreeBSD.org> Date: Fri, 25 Aug 2000 15:29:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-servers/XFree86-4-FontServer Makefile ports/x11-servers/XFree86-4-FontServer/pkg PLIST ports/x11-servers/XFree86-4-NestServer Makefile ports/x11-servers/XFree86-4-NestServer/pkg PLIST ports/x11-servers/XFree86-4-PrintServer Makefile ports/x11-servers/XFree86-4-PrintServer/pkg PLIST ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/08/25 15:29:40 PDT Modified files: x11-servers/XFree86-4-FontServer Makefile x11-servers/XFree86-4-FontServer/pkg PLIST x11-servers/XFree86-4-NestServer Makefile x11-servers/XFree86-4-NestServer/pkg PLIST x11-servers/XFree86-4-PrintServer Makefile x11-servers/XFree86-4-PrintServer/pkg PLIST x11-servers/XFree86-4-VirtualFramebufferServer Makefile x11-servers/XFree86-4-VirtualFramebufferServer/pkg PLIST Log: Add missing manpages and html documents. (Hmm, duplicates....) Revision Changes Path 1.4 +2 -2 ports/x11-servers/XFree86-4-FontServer/Makefile 1.3 +4 -0 ports/x11-servers/XFree86-4-FontServer/pkg/PLIST 1.3 +2 -2 ports/x11-servers/XFree86-4-NestServer/Makefile 1.2 +4 -0 ports/x11-servers/XFree86-4-NestServer/pkg/PLIST 1.3 +2 -1 ports/x11-servers/XFree86-4-PrintServer/Makefile 1.2 +3 -0 ports/x11-servers/XFree86-4-PrintServer/pkg/PLIST 1.3 +2 -2 ports/x11-servers/XFree86-4-VirtualFramebufferServer/Makefile 1.2 +4 -0 ports/x11-servers/XFree86-4-VirtualFramebufferServer/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 16:18:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 83A6B37B422; Fri, 25 Aug 2000 16:18:53 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA29475; Fri, 25 Aug 2000 16:18:53 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008252318.QAA29475@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Fri, 25 Aug 2000 16:18:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern uipc_mbuf.c src/sys/sys mbuf.h src/usr.bin/netstat mbuf.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/25 16:18:53 PDT Modified files: (Branch: RELENG_4) sys/kern uipc_mbuf.c sys/sys mbuf.h usr.bin/netstat mbuf.c Log: MFC: kern/uipc_mbuf.c v1.53, sys/mbuf.h v1.52, netstat/mbuf.c v1.18 Make mbstat.m_mtypes seperate and viewable via sysctl. Expand the type from u_short to u_long to stop 64K wraparounds, especially on mbtypes[MT_FREE]. Also, the MT_FREE counter was never incremented on creation of new mbufs, so the freelist count was wrong. PR: kern/19809 Submitted by: Ian Dowse <iedowse@maths.tcd.ie> MFC forgotten by: albert Revision Changes Path 1.51.2.2 +4 -0 src/sys/kern/uipc_mbuf.c 1.44.2.6 +11 -9 src/sys/sys/mbuf.h 1.17.2.1 +50 -26 src/usr.bin/netstat/mbuf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 16:23:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E22BF37B424; Fri, 25 Aug 2000 16:23:32 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA30239; Fri, 25 Aug 2000 16:23:32 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008252323.QAA30239@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Fri, 25 Aug 2000 16:23:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern uipc_mbuf.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/25 16:23:32 PDT Modified files: (Branch: RELENG_4) sys/kern uipc_mbuf.c Log: MFC: rev 1.56: splimp() protect a tsleep/wakeup race for mbuf frees from interrupt context (eg: network card drivers) Revision Changes Path 1.51.2.3 +2 -0 src/sys/kern/uipc_mbuf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 17: 7:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1940037B42C; Fri, 25 Aug 2000 17:07:41 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA35654; Fri, 25 Aug 2000 17:07:41 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200008260007.RAA35654@freefall.freebsd.org> From: Warner Losh <imp@FreeBSD.org> Date: Fri, 25 Aug 2000 17:07:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard pccard.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/08/25 17:07:40 PDT Modified files: sys/dev/pccard pccard.c Log: Minor tweaks to have the card be properly enabled via the CCR. Minor debug changes Minor power management pessimizations Revision Changes Path 1.15 +10 -7 src/sys/dev/pccard/pccard.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 18:47:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F48337B424; Fri, 25 Aug 2000 18:47:55 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA45100; Fri, 25 Aug 2000 18:47:55 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200008260147.SAA45100@freefall.freebsd.org> From: Will Andrews <will@FreeBSD.org> Date: Fri, 25 Aug 2000 18:47:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/08/25 18:47:54 PDT Modified files: . modules Log: Remove ssystem and add openuniverse. Revision Changes Path 1.1609 +2 -2 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 18:48:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88D8637B424; Fri, 25 Aug 2000 18:48:53 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA45483; Fri, 25 Aug 2000 18:48:53 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200008260148.SAA45483@freefall.freebsd.org> From: Will Andrews <will@FreeBSD.org> Date: Fri, 25 Aug 2000 18:48:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro Makefile ports/astro/ssystem Makefile ports/astro/ssystem/files md5 ports/astro/ssystem/patches patch-aa patch-ab patch-ac ports/astro/ssystem/pkg COMMENT DESCR PLIST ports/astro/openuniverse Makefile ports/astro/openuniverse/files ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/08/25 18:48:53 PDT Modified files: astro Makefile astro/openuniverse Makefile astro/openuniverse/files md5 astro/openuniverse/pkg DESCR PLIST Added files: astro/openuniverse/patches patch-a patch-b Removed files: astro/ssystem Makefile astro/ssystem/files md5 astro/ssystem/patches patch-aa patch-ab patch-ac astro/ssystem/pkg COMMENT DESCR PLIST astro/openuniverse/patches patch-aa patch-ab patch-ac Log: Rename ssystem to openuniverse after repository copy. Update to openuniverse 1.0beta3. PR: 19176 Submitted by: Trevor Johnson <trevor@jpj.net> Revision Changes Path 1.22 +2 -2 ports/astro/Makefile 1.17 +17 -27 ports/astro/openuniverse/Makefile 1.6 +1 -1 ports/astro/openuniverse/files/md5 1.6 +18 -7 ports/astro/openuniverse/pkg/DESCR 1.4 +117 -36 ports/astro/openuniverse/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 19:18:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E82A37B423; Fri, 25 Aug 2000 19:18:42 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA48646; Fri, 25 Aug 2000 19:18:42 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008260218.TAA48646@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Fri, 25 Aug 2000 19:18:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_misc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/25 19:18:41 PDT Modified files: sys/compat/linux linux_misc.c Log: Re-implement linux_{g|s}etrlimit in terms of {g|s}etrlimit instead of the o{g|s}etrlimit so that the dependency on COMPAT_43 is removed. Revision Changes Path 1.84 +46 -25 src/sys/compat/linux/linux_misc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 19:27: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CCA8D37B42C; Fri, 25 Aug 2000 19:27:01 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA49087; Fri, 25 Aug 2000 19:27:01 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008260227.TAA49087@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Fri, 25 Aug 2000 19:27:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_sig.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/25 19:27:01 PDT Modified files: sys/kern kern_sig.c Log: Make this file compile again when COMPAT_43 has not been defined. This boils down to conditionally compile the old signal syscalls. We might want to extend the types in syscalls.master to make these syscalls conditionally on something more appropriate than COMPAT_43. Revision Changes Path 1.83 +9 -2 src/sys/kern/kern_sig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 20:42:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8524537B43C; Fri, 25 Aug 2000 20:42:52 -0700 (PDT) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA55595; Fri, 25 Aug 2000 20:42:52 -0700 (PDT) (envelope-from green@FreeBSD.org) Message-Id: <200008260342.UAA55595@freefall.freebsd.org> From: Brian Feldman <green@FreeBSD.org> Date: Fri, 25 Aug 2000 20:42:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/passwd local_passwd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG green 2000/08/25 20:42:52 PDT Modified files: usr.bin/passwd local_passwd.c Log: Fix a premature freeing bug found with malloc debugging courtesy John Hay. Submitted by: jhay Revision Changes Path 1.26 +6 -2 src/usr.bin/passwd/local_passwd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 21:19:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D178C37B43C; Fri, 25 Aug 2000 21:19:26 -0700 (PDT) Received: (from yokota@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA59556; Fri, 25 Aug 2000 21:19:26 -0700 (PDT) (envelope-from yokota@FreeBSD.org) Message-Id: <200008260419.VAA59556@freefall.freebsd.org> From: Kazutaka YOKOTA <yokota@FreeBSD.org> Date: Fri, 25 Aug 2000 21:19:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options.i386 options.pc98 src/sys/i386/i386 vm_machdep.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG yokota 2000/08/25 21:19:26 PDT Modified files: (Branch: RELENG_4) sys/conf options.i386 options.pc98 sys/i386/i386 vm_machdep.c Log: MFC: add option BROKEN_KEYBOARD_RESET to opt_reset.h. PR: conf/20806 Revision Changes Path 1.132.2.3 +2 -1 src/sys/conf/options.i386 1.103.2.4 +2 -1 src/sys/conf/options.pc98 1.132.2.2 +2 -1 src/sys/i386/i386/vm_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 21:51: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5193F37B423; Fri, 25 Aug 2000 21:51:03 -0700 (PDT) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA62317; Fri, 25 Aug 2000 21:51:03 -0700 (PDT) (envelope-from nakai@FreeBSD.org) Message-Id: <200008260451.VAA62317@freefall.freebsd.org> From: Yukihiro Nakai <nakai@FreeBSD.org> Date: Fri, 25 Aug 2000 21:51:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/xshisen/patches patch-af X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nakai 2000/08/25 21:51:03 PDT Modified files: games/xshisen/patches patch-af Log: xshisen Y2K fix Submitted by: Tsurutani Naoki <turutani@scphys.kyoto-u.ac.jp> Revision Changes Path 1.2 +98 -2 ports/games/xshisen/patches/patch-af To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 21:51:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EEC3C37B422; Fri, 25 Aug 2000 21:51:39 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA62379; Fri, 25 Aug 2000 21:51:39 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008260451.VAA62379@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Fri, 25 Aug 2000 21:51:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_object.h vm_page.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/25 21:51:39 PDT Modified files: sys/vm vm_object.h vm_page.h Log: Make the arguments match the functionality of the functions. Revision Changes Path 1.69 +6 -6 src/sys/vm/vm_object.h 1.82 +3 -3 src/sys/vm/vm_page.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 21:53:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BDDE537B423; Fri, 25 Aug 2000 21:53:39 -0700 (PDT) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA62522; Fri, 25 Aug 2000 21:53:39 -0700 (PDT) (envelope-from nakai@FreeBSD.org) Message-Id: <200008260453.VAA62522@freefall.freebsd.org> From: Yukihiro Nakai <nakai@FreeBSD.org> Date: Fri, 25 Aug 2000 21:53:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/recjis Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nakai 2000/08/25 21:53:39 PDT Modified files: japanese/recjis Makefile Log: Fix for world-wide writable. Submitted by: Kris Kennaway <kris@FreeBSD.org> Revision Changes Path 1.7 +2 -2 ports/japanese/recjis/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 21:55:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F011637B42C; Fri, 25 Aug 2000 21:55:28 -0700 (PDT) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA62689; Fri, 25 Aug 2000 21:55:28 -0700 (PDT) (envelope-from nakai@FreeBSD.org) Message-Id: <200008260455.VAA62689@freefall.freebsd.org> From: Yukihiro Nakai <nakai@FreeBSD.org> Date: Fri, 25 Aug 2000 21:55:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/xbat Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nakai 2000/08/25 21:55:28 PDT Modified files: games/xbat Makefile Log: Fix for world-writable. Submitted by: Kris Kennaway <kris@FreeBSD.org> Revision Changes Path 1.8 +8 -1 ports/games/xbat/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 22: 1:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 330CF37B423; Fri, 25 Aug 2000 22:01:54 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA63093; Fri, 25 Aug 2000 22:01:54 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008260501.WAA63093@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Fri, 25 Aug 2000 22:01:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/cvsmail Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/25 22:01:53 PDT Modified files: mail/cvsmail Makefile Log: * Minor style nit. * Don't use post-install: rule if we already define a do-install: one. Doing so, means one cannot tweak things in the post-install: rule in a slave port. Revision Changes Path 1.2 +2 -3 ports/mail/cvsmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 22: 5:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD1B737B43E; Fri, 25 Aug 2000 22:05:18 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA63830; Fri, 25 Aug 2000 22:05:18 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200008260505.WAA63830@freefall.freebsd.org> From: Warner Losh <imp@FreeBSD.org> Date: Fri, 25 Aug 2000 22:05:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/08/25 22:05:18 PDT Modified files: (Branch: RELENG_4) . UPDATING Log: In updating a machine from 3.5.1 CDROM to -stable, I found that ldconfig is always needed, so go ahead and just include it in the upgrade instructions. People will always hit this and there's no need to have an IF statement that always evaluates to true. Revision Changes Path 1.73.2.15 +2 -4 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 22: 6:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 535A237B440; Fri, 25 Aug 2000 22:06:42 -0700 (PDT) Received: (from gehenna@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA64802; Fri, 25 Aug 2000 22:06:42 -0700 (PDT) (envelope-from gehenna@FreeBSD.org) Message-Id: <200008260506.WAA64802@freefall.freebsd.org> From: MAEKAWA Masahide <gehenna@FreeBSD.org> Date: Fri, 25 Aug 2000 22:06:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG gehenna 2000/08/25 22:06:41 PDT Modified files: sys/dev/usb usbdevs Log: Add vendor IBM product USB CD-ROM Drive Revision Changes Path 1.31 +5 -1 src/sys/dev/usb/usbdevs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 22: 8:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A434337B42C; Fri, 25 Aug 2000 22:08:12 -0700 (PDT) Received: (from gehenna@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA65329; Fri, 25 Aug 2000 22:08:12 -0700 (PDT) (envelope-from gehenna@FreeBSD.org) Message-Id: <200008260508.WAA65329@freefall.freebsd.org> From: MAEKAWA Masahide <gehenna@FreeBSD.org> Date: Fri, 25 Aug 2000 22:08:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs.h usbdevs_data.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG gehenna 2000/08/25 22:08:12 PDT Modified files: sys/dev/usb usbdevs.h usbdevs_data.h Log: Regen. Revision Changes Path 1.50 +5 -1 src/sys/dev/usb/usbdevs.h 1.50 +13 -1 src/sys/dev/usb/usbdevs_data.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 22: 8:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A405E37B424; Fri, 25 Aug 2000 22:08:12 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA65325; Fri, 25 Aug 2000 22:08:12 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008260508.WAA65325@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Fri, 25 Aug 2000 22:08:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_misc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/25 22:08:12 PDT Modified files: sys/compat/linux linux_misc.c Log: Fix bug in previous commit. We need to trim the limits to fit the datatype (= long). Use ULONG_MAX and LONG_MAX to avoid creating MD code. Revision Changes Path 1.85 +6 -1 src/sys/compat/linux/linux_misc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 22:12:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A5BE837B43F; Fri, 25 Aug 2000 22:12:19 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA65739; Fri, 25 Aug 2000 22:12:19 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Message-Id: <200008260512.WAA65739@freefall.freebsd.org> From: Marcel Moolenaar <marcel@FreeBSD.org> Date: Fri, 25 Aug 2000 22:12:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_socket.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcel 2000/08/25 22:12:18 PDT Modified files: sys/compat/linux linux_socket.c Log: Whitespace change: (near) KNF Revision Changes Path 1.19 +681 -651 src/sys/compat/linux/linux_socket.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 22:13:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 954FC37B43C; Fri, 25 Aug 2000 22:13:30 -0700 (PDT) Received: (from jwd@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA65917; Fri, 25 Aug 2000 22:13:30 -0700 (PDT) (envelope-from jwd@FreeBSD.org) Message-Id: <200008260513.WAA65917@freefall.freebsd.org> From: "John W. De Boskey" <jwd@FreeBSD.org> Date: Fri, 25 Aug 2000 22:13:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rtld-elf rtld.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jwd 2000/08/25 22:13:30 PDT Modified files: libexec/rtld-elf rtld.c Log: Pass two pointer parameters to the r_debug_state() hook function, thus allowing a debugger or other trace tool to easily grab the addresses of the needed structures off the stack. This change is transparent to gdb, which locates the link_map list and transfers it to debugger memory for comparison purposes. A sample program will be committed showing how this can be used. Reviewed by: John Polstra <jdp@FreeBSD.org> Revision Changes Path 1.48 +19 -9 src/libexec/rtld-elf/rtld.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 22:14:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B9F437B43F; Fri, 25 Aug 2000 22:14:20 -0700 (PDT) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA66555; Fri, 25 Aug 2000 22:14:20 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200008260514.WAA66555@freefall.freebsd.org> From: Paul Saab <ps@FreeBSD.org> Date: Fri, 25 Aug 2000 22:14:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_proc.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/08/25 22:14:20 PDT Modified files: (Branch: RELENG_4) sys/kern kern_proc.c Log: MFC: rev 1.70 sysctl which hides all process except those that belong to the user asking for the process list. Revision Changes Path 1.63.2.2 +9 -0 src/sys/kern/kern_proc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 22:15:36 2000 Delivered-To: cvs-all@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id CBF9437B423; Fri, 25 Aug 2000 22:15:31 -0700 (PDT) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id OAA25628; Sat, 26 Aug 2000 14:15:30 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id OAA67423; Sat, 26 Aug 2000 14:14:58 +0900 (JST) Date: Sat, 26 Aug 2000 14:14:56 +0900 Message-ID: <861yzcli27.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" <knu@idaemons.org> To: Andreas Klemm <andreas@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/postgresql Makefile ports/databases/postgresql/files md5 pgsql.sh.tmpl post-install-notes ports/databases/postgresql/patches patch-aj patch-ar patch-as patch-at patch-ba ports/databases/postgresql/pkg COMMENT DESCR ... In-Reply-To: In your message of "Thu, 24 Aug 2000 14:01:01 -0700 (PDT)" <200008242101.OAA41195@freefall.freebsd.org> References: <200008242101.OAA41195@freefall.freebsd.org> User-Agent: Wanderlust/2.3.0 (Roam) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 11) (Carlsbad Caverns) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE X-PGP-Comment: I changed my key on 2000-08-10 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At Thu, 24 Aug 2000 14:01:01 -0700 (PDT), Andreas Klemm <andreas@FreeBSD.org> wrote: > andreas 2000/08/24 14:01:01 PDT > > Removed files: > databases/postgresql Makefile > databases/postgresql/files md5 pgsql.sh.tmpl > post-install-notes > databases/postgresql/patches patch-aj patch-ar patch-as > patch-at patch-ba > databases/postgresql/pkg COMMENT DESCR INSTALL PLIST > PLIST.jdbc PLIST.tcl > databases/postgresql/scripts configure createuser > Log: > remove old postgresql port after 7.x has proven stability. You also need to fix depends lists of the following ports.. databases/p5-DBD-Pg databases/p5-Pg databases/pgaccess databases/py-PyGreSQL -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 23:50: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9036B37B422; Fri, 25 Aug 2000 23:49:59 -0700 (PDT) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA74859; Fri, 25 Aug 2000 23:49:59 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200008260649.XAA74859@freefall.freebsd.org> From: Jim Mock <jim@FreeBSD.org> Date: Fri, 25 Aug 2000 23:49:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/irssi Makefile ports/irc/irssi/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/08/25 23:49:59 PDT Modified files: irc/irssi Makefile irc/irssi/files md5 Log: Update to version 0.7.95-3. Revision Changes Path 1.39 +2 -2 ports/irc/irssi/Makefile 1.30 +1 -1 ports/irc/irssi/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 23:52:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 701FD37B43F; Fri, 25 Aug 2000 23:52:28 -0700 (PDT) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA75379; Fri, 25 Aug 2000 23:52:28 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200008260652.XAA75379@freefall.freebsd.org> From: Jim Mock <jim@FreeBSD.org> Date: Fri, 25 Aug 2000 23:52:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/08/25 23:52:28 PDT Modified files: . modules Log: Add xchat-devel. Revision Changes Path 1.1610 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 23:54:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17A3A37B42C; Fri, 25 Aug 2000 23:54:14 -0700 (PDT) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA75552; Fri, 25 Aug 2000 23:54:14 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200008260654.XAA75552@freefall.freebsd.org> From: Jim Mock <jim@FreeBSD.org> Date: Fri, 25 Aug 2000 23:54:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/xchat Makefile ports/irc/xchat/files md5 ports/irc/xchat/patches patch-ab ports/irc/xchat/pkg PLIST PLIST.gnome X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/08/25 23:54:13 PDT Modified files: irc/xchat Makefile irc/xchat/files md5 irc/xchat/patches patch-ab irc/xchat/pkg PLIST PLIST.gnome Log: Knock the version back to 1.4.2 due to popular demand. There is now an xchat-devel port for those who want the latest version. Revision Changes Path 1.62 +4 -15 ports/irc/xchat/Makefile 1.40 +1 -1 ports/irc/xchat/files/md5 1.3 +5 -5 ports/irc/xchat/patches/patch-ab 1.10 +0 -4 ports/irc/xchat/pkg/PLIST 1.7 +0 -5 ports/irc/xchat/pkg/PLIST.gnome To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Aug 25 23:55: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E088E37B422; Fri, 25 Aug 2000 23:54:56 -0700 (PDT) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA75628; Fri, 25 Aug 2000 23:54:56 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200008260654.XAA75628@freefall.freebsd.org> From: Jim Mock <jim@FreeBSD.org> Date: Fri, 25 Aug 2000 23:54:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/bluefish Makefile ports/www/bluefish/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/08/25 23:54:56 PDT Modified files: www/bluefish Makefile www/bluefish/files md5 Log: Update to version 0.5. Revision Changes Path 1.14 +2 -2 ports/www/bluefish/Makefile 1.6 +1 -1 ports/www/bluefish/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 0:38:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D178437B423; Sat, 26 Aug 2000 00:38:44 -0700 (PDT) Received: (from nyan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA79539; Sat, 26 Aug 2000 00:38:44 -0700 (PDT) (envelope-from nyan@FreeBSD.org) Message-Id: <200008260738.AAA79539@freefall.freebsd.org> From: Takahashi Yoshihiro <nyan@FreeBSD.org> Date: Sat, 26 Aug 2000 00:38:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nyan 2000/08/26 00:38:44 PDT Modified files: sys/pc98/conf GENERIC Log: Enabled pcic, card and xe devices. Revision Changes Path 1.155 +4 -4 src/sys/pc98/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 0:54:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 240A937B43C; Sat, 26 Aug 2000 00:54:20 -0700 (PDT) Received: (from sumikawa@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA80294; Sat, 26 Aug 2000 00:54:20 -0700 (PDT) (envelope-from sumikawa@FreeBSD.org) Message-Id: <200008260754.AAA80294@freefall.freebsd.org> From: Munechika SUMIKAWA <sumikawa@FreeBSD.org> Date: Sat, 26 Aug 2000 00:54:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/rsync Makefile ports/net/rsync/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sumikawa 2000/08/26 00:54:20 PDT Modified files: net/rsync Makefile net/rsync/files md5 Log: Enable IPv6 patch. Revision Changes Path 1.46 +2 -2 ports/net/rsync/Makefile 1.24 +1 -0 ports/net/rsync/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 1:23:51 2000 Delivered-To: cvs-all@freebsd.org Received: from lists01.iafrica.com (lists01.iafrica.com [196.7.0.141]) by hub.freebsd.org (Postfix) with ESMTP id 1179337B424; Sat, 26 Aug 2000 01:23:45 -0700 (PDT) Received: from nwl.fw.uunet.co.za ([196.31.2.162]) by lists01.iafrica.com with esmtp (Exim 3.12 #2) id 13SbFe-0002wb-00; Sat, 26 Aug 2000 10:23:42 +0200 Received: (from nobody@localhost) by nwl.fw.uunet.co.za (8.8.8/8.6.9) id KAA00149; Sat, 26 Aug 2000 10:23:41 +0200 (SAST) Received: by nwl.fw.uunet.co.za via recvmail id 29961; Sat Aug 26 10:22:44 2000 Received: from sheldonh (helo=axl.fw.uunet.co.za) by axl.fw.uunet.co.za with local-esmtp (Exim 3.16 #1) id 13SbEi-000IFC-00; Sat, 26 Aug 2000 10:22:44 +0200 To: Marcel Moolenaar <marcel@freebsd.org> Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/compat/linux linux_misc.c In-reply-to: Your message of "Fri, 25 Aug 2000 19:18:42 MST." <200008260218.TAA48646@freefall.freebsd.org> Date: Sat, 26 Aug 2000 10:22:44 +0200 Message-ID: <70133.967278164@axl.fw.uunet.co.za> From: Sheldon Hearn <sheldonh@uunet.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 25 Aug 2000 19:18:42 MST, Marcel Moolenaar wrote: > marcel 2000/08/25 19:18:41 PDT > > Modified files: > sys/compat/linux linux_misc.c > Log: > Re-implement linux_{g|s}etrlimit in terms of {g|s}etrlimit > instead of the o{g|s}etrlimit so that the dependency on > COMPAT_43 is removed. This has to do with PR 20572, yes? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 1:53: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F21537B422; Sat, 26 Aug 2000 01:52:58 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA84839; Sat, 26 Aug 2000 01:52:58 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200008260852.BAA84839@freefall.freebsd.org> From: Warner Losh <imp@FreeBSD.org> Date: Sat, 26 Aug 2000 01:52:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/08/26 01:52:58 PDT Modified files: sys/conf files Log: Make if_xe eepend on both xe and card. Revision Changes Path 1.399 +2 -2 src/sys/conf/files To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 1:59:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 97BBF37B422; Sat, 26 Aug 2000 01:59:38 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA85364; Sat, 26 Aug 2000 01:59:38 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) Message-Id: <200008260859.BAA85364@freefall.freebsd.org> From: "Vanilla I. Shu" <vanilla@FreeBSD.org> Date: Sat, 26 Aug 2000 01:59:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG vanilla 2000/08/26 01:59:38 PDT Modified files: . modules Log: zh-mutt --> ports/chinese/mutt Revision Changes Path 1.1611 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 2: 2:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1256B37B422; Sat, 26 Aug 2000 02:02:48 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA85505; Sat, 26 Aug 2000 02:02:48 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) Message-Id: <200008260902.CAA85505@freefall.freebsd.org> From: "Vanilla I. Shu" <vanilla@FreeBSD.org> Date: Sat, 26 Aug 2000 02:02:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/mutt - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG vanilla 2000/08/26 02:02:47 PDT ports/chinese/mutt - Imported sources Update of /home/ncvs/ports/chinese/mutt In directory freefall.freebsd.org:/d/home/vanilla/work/mutt Log Message: import chinese-localed mutt. PR: ports/20805 Submitted by: Clive Lin <clive@CirX.ORG> Status: Vendor Tag: CLIVE Release Tags: mutt_1_2_5 N ports/chinese/mutt/Makefile N ports/chinese/mutt/files/md5 N ports/chinese/mutt/files/patch-doc-ref N ports/chinese/mutt/patches/patch-Makefile.in N ports/chinese/mutt/patches/patch-02 N ports/chinese/mutt/patches/patch-03 N ports/chinese/mutt/patches/patch-04 N ports/chinese/mutt/patches/patch-05 N ports/chinese/mutt/patches/patch-08 N ports/chinese/mutt/patches/patch-0a N ports/chinese/mutt/patches/patch-0b N ports/chinese/mutt/patches/patch-01 N ports/chinese/mutt/pkg/MESSAGE N ports/chinese/mutt/pkg/COMMENT N ports/chinese/mutt/pkg/DESCR N ports/chinese/mutt/pkg/PLIST N ports/chinese/mutt/pkg/PLIST.htmlfiles No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 2: 3:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 79C9E37B43C; Sat, 26 Aug 2000 02:03:33 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA85563; Sat, 26 Aug 2000 02:03:33 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) Message-Id: <200008260903.CAA85563@freefall.freebsd.org> From: "Vanilla I. Shu" <vanilla@FreeBSD.org> Date: Sat, 26 Aug 2000 02:03:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG vanilla 2000/08/26 02:03:33 PDT Modified files: chinese Makefile Log: Activate zh-mutt Revision Changes Path 1.50 +2 -1 ports/chinese/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 2:15: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9981037B422; Sat, 26 Aug 2000 02:15:06 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA87620; Sat, 26 Aug 2000 02:15:06 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008260915.CAA87620@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Sat, 26 Aug 2000 02:15:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-DBD-Pg Makefile ports/databases/p5-Pg Makefile ports/databases/pgaccess Makefile ports/databases/py-PyGreSQL Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/26 02:15:06 PDT Modified files: databases/p5-DBD-Pg Makefile databases/p5-Pg Makefile databases/pgaccess Makefile databases/py-PyGreSQL Makefile Log: after removal of old postgresql port fix dependencies for postgresql7 port thanks to Hwang eunkwang <hek@inter21c.co.kr> for stating this out. Revision Changes Path 1.21 +2 -2 ports/databases/p5-DBD-Pg/Makefile 1.24 +2 -2 ports/databases/p5-Pg/Makefile 1.28 +2 -2 ports/databases/pgaccess/Makefile 1.22 +2 -2 ports/databases/py-PyGreSQL/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 2:35:16 2000 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 1594D37B424; Sat, 26 Aug 2000 02:35:13 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id CAA01884; Sat, 26 Aug 2000 02:35:12 -0700 (PDT) (envelope-from obrien) Date: Sat, 26 Aug 2000 02:35:12 -0700 From: "David O'Brien" <obrien@FreeBSD.org> To: "Vanilla I. Shu" <vanilla@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/chinese/mutt - Imported sources Message-ID: <20000826023512.B1073@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200008260902.CAA85505@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008260902.CAA85505@freefall.freebsd.org>; from vanilla@FreeBSD.org on Sat, Aug 26, 2000 at 02:02:47AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 26, 2000 at 02:02:47AM -0700, Vanilla I. Shu wrote: > vanilla 2000/08/26 02:02:47 PDT > ports/chinese/mutt - Imported sources > Update of /home/ncvs/ports/chinese/mutt > In directory freefall.freebsd.org:/d/home/vanilla/work/mutt Uh... repo copy????? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 2:36:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8B7637B424; Sat, 26 Aug 2000 02:36:55 -0700 (PDT) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA88935; Sat, 26 Aug 2000 02:36:55 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200008260936.CAA88935@freefall.freebsd.org> From: Paul Saab <ps@FreeBSD.org> Date: Sat, 26 Aug 2000 02:36:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/systat mbufs.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/08/26 02:36:55 PDT Modified files: (Branch: RELENG_4) usr.bin/systat mbufs.c Log: MFC: rev 1.11 Fix systat to use the kern.ipc.mbtypes sysctl instead of referencing a structure member that doesn't exist anymore. Use getsysctlbyname for kern.ipc.mbstat instead of sysctl. Use netstat's method of displaying values from mtnames. Revision Changes Path 1.10.2.1 +44 -34 src/usr.bin/systat/mbufs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 2:40:26 2000 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id C9EA237B42C; Sat, 26 Aug 2000 02:40:22 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id CAA01973; Sat, 26 Aug 2000 02:40:22 -0700 (PDT) (envelope-from obrien) Date: Sat, 26 Aug 2000 02:40:22 -0700 From: "David O'Brien" <obrien@FreeBSD.org> To: "Vanilla I. Shu" <vanilla@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/chinese/mutt - Imported sources Message-ID: <20000826024022.D1073@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200008260902.CAA85505@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008260902.CAA85505@freefall.freebsd.org>; from vanilla@FreeBSD.org on Sat, Aug 26, 2000 at 02:02:47AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 26, 2000 at 02:02:47AM -0700, Vanilla I. Shu wrote: > vanilla 2000/08/26 02:02:47 PDT > > ports/chinese/mutt - Imported sources > Update of /home/ncvs/ports/chinese/mutt > In directory freefall.freebsd.org:/d/home/vanilla/work/mutt Is there some reason this could not be a satelite port of ports/mail/mutt? Except for two patches, the two ports are identical. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 2:43:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F8C137B43E; Sat, 26 Aug 2000 02:43:52 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA89470; Sat, 26 Aug 2000 02:43:52 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008260943.CAA89470@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 02:43:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/mutt/patches patch-init.h patch-pgp.c patch-sendlib.c patch-0b X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 02:43:51 PDT Added files: chinese/mutt/patches patch-init.h patch-pgp.c patch-sendlib.c Removed files: chinese/mutt/patches patch-0b Log: Break patch-0b into the one file for each source file patched. Having a patch apply to >1 file is against the Porter's Handbook's guidlines. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 2:46:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 33F7537B423; Sat, 26 Aug 2000 02:46:48 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA89681; Sat, 26 Aug 2000 02:46:48 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008260946.CAA89681@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 02:46:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mutt Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 02:46:48 PDT Modified files: mail/mutt Makefile Log: Use the `pre-configure:' target rather than `post-patch:' target. This frees up `post-patch:' for satelite ports use. Revision Changes Path 1.95 +2 -2 ports/mail/mutt/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 3:20:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B102C37B43E; Sat, 26 Aug 2000 03:20:24 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA93557; Sat, 26 Aug 2000 03:20:24 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200008261020.DAA93557@freefall.freebsd.org> From: Will Andrews <will@FreeBSD.org> Date: Sat, 26 Aug 2000 03:20:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/portsentry Makefile ports/security/portsentry/pkg MESSAGE PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/08/26 03:20:24 PDT Modified files: security/portsentry Makefile security/portsentry/pkg MESSAGE PLIST Log: Mention that the stealth code in portsentry only works on Linux, and install a file stating this. PR: 20859 Submitted by: MAINTAINER Suggested by: Brent Kearney <brent@kearneys.ca> (by way of MAINTAINER) Revision Changes Path 1.9 +2 -2 ports/security/portsentry/Makefile 1.2 +6 -0 ports/security/portsentry/pkg/MESSAGE 1.4 +1 -0 ports/security/portsentry/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 3:24: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id C1C9437B424; Sat, 26 Aug 2000 03:24:01 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e7QAO1O25216; Sat, 26 Aug 2000 03:24:01 -0700 (PDT) Date: Sat, 26 Aug 2000 03:24:01 -0700 From: Alfred Perlstein <bright@wintelcom.net> To: Paul Saab <ps@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/systat mbufs.c Message-ID: <20000826032401.N1209@fw.wintelcom.net> References: <200008260936.CAA88935@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200008260936.CAA88935@freefall.freebsd.org>; from ps@FreeBSD.org on Sat, Aug 26, 2000 at 02:36:55AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Paul Saab <ps@FreeBSD.org> [000826 02:36] wrote: > ps 2000/08/26 02:36:55 PDT > > Modified files: (Branch: RELENG_4) > usr.bin/systat mbufs.c > Log: > MFC: rev 1.11 > Fix systat to use the kern.ipc.mbtypes sysctl instead of referencing a > structure member that doesn't exist anymore. > Use getsysctlbyname for kern.ipc.mbstat instead of sysctl. > Use netstat's method of displaying values from mtnames. If Peter had asked me for review RELENG_4 breakage could have been avoided. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 4:53:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7403137B42C; Sat, 26 Aug 2000 04:53:54 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA02062; Sat, 26 Aug 2000 04:53:54 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200008261153.EAA02062@freefall.freebsd.org> From: Poul-Henning Kamp <phk@FreeBSD.org> Date: Sat, 26 Aug 2000 04:53:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/init init.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/08/26 04:53:54 PDT Modified files: sbin/init init.c Log: Mount DEVFS with no options. Revision Changes Path 1.41 +2 -2 src/sbin/init/init.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 5:15:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A3F8237B422; Sat, 26 Aug 2000 05:15:25 -0700 (PDT) Received: (from ben@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA04585; Sat, 26 Aug 2000 05:15:25 -0700 (PDT) (envelope-from ben@FreeBSD.org) Message-Id: <200008261215.FAA04585@freefall.freebsd.org> From: Ben Smithurst <ben@FreeBSD.org> Date: Sat, 26 Aug 2000 05:15:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/mergemaster mergemaster.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ben 2000/08/26 05:15:25 PDT Modified files: usr.sbin/mergemaster mergemaster.sh Log: Make mergemaster ignore files in /dev if /dev is a devfs. Approved by: Doug Barton <Doug@gorean.org> Revision Changes Path 1.11 +7 -2 src/usr.sbin/mergemaster/mergemaster.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 5:43:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 36EB437B422; Sat, 26 Aug 2000 05:43:52 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA08425; Sat, 26 Aug 2000 05:43:52 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200008261243.FAA08425@freefall.freebsd.org> From: Will Andrews <will@FreeBSD.org> Date: Sat, 26 Aug 2000 05:43:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/db3 Makefile ports/databases/db3/files md5 ports/databases/db3/patches patch-aa ports/databases/db3/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/08/26 05:43:52 PDT Modified files: databases/db3 Makefile databases/db3/files md5 databases/db3/patches patch-aa databases/db3/pkg COMMENT DESCR PLIST Log: Update to Berkeley DB3, after repocopy from databases/db to databases/db3. PR: 20763 Submitted by: Sergey A. Osokin <ozz@FreeBSD.org.ru> Revision Changes Path 1.22 +13 -23 ports/databases/db3/Makefile 1.9 +1 -1 ports/databases/db3/files/md5 1.4 +38 -503 ports/databases/db3/patches/patch-aa 1.4 +1 -1 ports/databases/db3/pkg/COMMENT 1.6 +2 -2 ports/databases/db3/pkg/DESCR 1.11 +712 -555 ports/databases/db3/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 5:54:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 513F537B423; Sat, 26 Aug 2000 05:54:28 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA09484; Sat, 26 Aug 2000 05:54:28 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200008261254.FAA09484@freefall.freebsd.org> From: Will Andrews <will@FreeBSD.org> Date: Sat, 26 Aug 2000 05:54:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio Makefile ports/audio/holyshout Makefile ports/audio/holyshout/files md5 ports/audio/holyshout/pkg COMMENT DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/08/26 05:54:28 PDT Modified files: audio Makefile Added files: audio/holyshout Makefile audio/holyshout/files md5 audio/holyshout/pkg COMMENT DESCR PLIST Log: Add holyshout 0.1, a mp3 stream-feeder that works with icecast/shoutcast servers and supports multiple bitrate stream. PR: 20857 Submitted by: Junseon Oh <hollywar@mail.holywar.net> Revision Changes Path 1.154 +2 -1 ports/audio/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 5:54:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 67AFB37B423; Sat, 26 Aug 2000 05:54:39 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA09526; Sat, 26 Aug 2000 05:54:39 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200008261254.FAA09526@freefall.freebsd.org> From: Will Andrews <will@FreeBSD.org> Date: Sat, 26 Aug 2000 05:54:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/08/26 05:54:35 PDT Modified files: . modules Log: holyshout --> ports/audio/holyshout Revision Changes Path 1.1612 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 6:53:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17D2137B43C; Sat, 26 Aug 2000 06:53:28 -0700 (PDT) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA14527; Sat, 26 Aug 2000 06:53:28 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Message-Id: <200008261353.GAA14527@freefall.freebsd.org> From: Nick Hibma <n_hibma@FreeBSD.org> Date: Sat, 26 Aug 2000 06:53:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libusb usage.c libusb.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG n_hibma 2000/08/26 06:53:27 PDT Modified files: lib/libusb usage.c libusb.h Log: Sync with NetBSD: Print unknown usages with 4 digits. Mask in page extraction. Revision Changes Path 1.2 +4 -4 src/lib/libusb/usage.c 1.2 +3 -3 src/lib/libusb/libusb.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 7:30:53 2000 Delivered-To: cvs-all@freebsd.org Received: from picalon.gun.de (picalon.gun.de [192.109.159.1]) by hub.freebsd.org (Postfix) with ESMTP id 8A6EE37B42C; Sat, 26 Aug 2000 07:30:47 -0700 (PDT) Received: (from uucp@localhost) by picalon.gun.de (8.9.3/8.9.3) id QAA26382; Sat, 26 Aug 2000 16:30:28 +0200 (MET DST) >Received: (from andreas@localhost) by klemm.gtn.com (8.9.3/8.9.3) id LAA48988; Sat, 26 Aug 2000 11:11:32 +0200 (CEST) (envelope-from andreas) Date: Sat, 26 Aug 2000 11:11:32 +0200 From: Andreas Klemm <andreas@klemm.gtn.com> To: Akinori -Aki- MUSHA <knu@idaemons.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/postgresql Makefile ports/databases/postgresql/files md5 pgsql.sh.tmpl post-install-notes ports/databases/postgresql/patches patch-aj patch-ar patch-as patch-at patch-ba ports/databases/postgresql/pkg COMMENT DESCR ... Message-ID: <20000826111131.A48845@titan.klemm.gtn.com> References: <200008242101.OAA41195@freefall.freebsd.org> <861yzcli27.wl@archon.local.idaemons.org> Mime-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <861yzcli27.wl@archon.local.idaemons.org>; from knu@idaemons.org on Sat, Aug 26, 2000 at 02:14:56PM +0900 X-Operating-System: FreeBSD 4.1-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 26, 2000 at 02:14:56PM +0900, Akinori -Aki- MUSHA wrote: > You also need to fix depends lists of the following ports.. > databases/p5-DBD-Pg > databases/p5-Pg > databases/pgaccess > databases/py-PyGreSQL Good that you mention it. More commits to follow... -- Andreas Klemm Powered by FreeBSD SMP Songs from our band >>64Bits<<............http://www.apsfilter.org/64bits.html My homepage................................ http://people.FreeBSD.ORG/~andreas Please note: Apsfilter got a NEW HOME................http://www.apsfilter.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 8:49:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98A3637B423; Sat, 26 Aug 2000 08:49:49 -0700 (PDT) Received: (from ume@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA25343; Sat, 26 Aug 2000 08:49:49 -0700 (PDT) (envelope-from ume@FreeBSD.org) Message-Id: <200008261549.IAA25343@freefall.freebsd.org> From: Hajimu UMEMOTO <ume@FreeBSD.org> Date: Sat, 26 Aug 2000 08:49:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard cardinfo.h pccard.c src/usr.sbin/pccard/pccardd server.c Makefile cardd.c cardd.h pccardd.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume 2000/08/26 08:49:49 PDT Modified files: (Branch: RELENG_4) sys/pccard cardinfo.h pccard.c usr.sbin/pccard/pccardd Makefile cardd.c cardd.h pccardd.c Added files: (Branch: RELENG_4) usr.sbin/pccard/pccardd server.c Log: MFC: Add UNIX domain socket feature to pccardd. This makes pccard related PAO3/ports such as gxcardmon work. Revision Changes Path 1.16.2.1 +2 -2 src/sys/pccard/cardinfo.h 1.106.2.2 +6 -4 src/sys/pccard/pccard.c 1.4.6.1 +2 -1 src/usr.sbin/pccard/pccardd/Makefile 1.46.2.5 +7 -2 src/usr.sbin/pccard/pccardd/cardd.c 1.18.2.4 +10 -2 src/usr.sbin/pccard/pccardd/cardd.h 1.6.2.3 +62 -9 src/usr.sbin/pccard/pccardd/pccardd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 9:13:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B0BF537B42C; Sat, 26 Aug 2000 09:13:35 -0700 (PDT) Received: (from cjh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA28733; Sat, 26 Aug 2000 09:13:35 -0700 (PDT) (envelope-from cjh@FreeBSD.org) Message-Id: <200008261613.JAA28733@freefall.freebsd.org> From: CHOI Junho <cjh@FreeBSD.org> Date: Sat, 26 Aug 2000 09:13:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/korean/hanterm-xf86/patches patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cjh 2000/08/26 09:13:34 PDT Added files: korean/hanterm-xf86/patches patch-ab Log: Not to display unnecessary 'pty_search' message. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 9:19:23 2000 Delivered-To: cvs-all@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id 8C1DB37B42C; Sat, 26 Aug 2000 09:19:20 -0700 (PDT) Received: from bonsai.hiwaay.net (tnt6-216-180-5-133.dialup.HiWAAY.net [216.180.5.133]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id e7QGJ6706018; Sat, 26 Aug 2000 11:19:07 -0500 (CDT) Received: (from steve@localhost) by bonsai.hiwaay.net (8.11.0/8.9.3) id e7QGIp806754; Sat, 26 Aug 2000 11:18:51 -0500 (CDT) (envelope-from steve) Date: Sat, 26 Aug 2000 11:18:40 -0500 From: Steve Price <sprice@hiwaay.net> To: Andreas Klemm <andreas@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/p5-DBD-Pg Makefile ports/databases/p5-Pg Makefile ports/databases/pgaccess Makefile ports/databases/py-PyGreSQL Makefile Message-ID: <20000826111839.A268@bonsai.hiwaay.net> References: <200008260915.CAA87620@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008260915.CAA87620@freefall.freebsd.org>; from andreas@FreeBSD.org on Sat, Aug 26, 2000 at 02:15:06AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The following ports will need similar tweaks. databases/gtksql lang/pike mail/exim mail/teapop www/mod_php3 www/mod_php4 You'll also want to remove the postgresql entry from ports/YEAR2000. Or at least change it to postgresql7. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 9:21: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BAC5737B42C; Sat, 26 Aug 2000 09:20:58 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA29256; Sat, 26 Aug 2000 09:20:58 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200008261620.JAA29256@freefall.freebsd.org> From: Poul-Henning Kamp <phk@FreeBSD.org> Date: Sat, 26 Aug 2000 09:20:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/devfs devfs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/08/26 09:20:58 PDT Modified files: sys/fs/devfs devfs_vnops.c Log: Minor cleanups tp devfs_readdir(); Add devfs_read() for directories. (inspired by bp@) Revision Changes Path 1.4 +34 -12 src/sys/fs/devfs/devfs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 9:34:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8A2A37B42C; Sat, 26 Aug 2000 09:34:17 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA30298; Sat, 26 Aug 2000 09:34:17 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008261634.JAA30298@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Sat, 26 Aug 2000 09:34:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/exim Makefile ports/databases/gtksql Makefile ports/www/mod_php3/scripts configure.php ports/www/mod_php4/scripts configure.php ports/lang/pike/scripts configure.pike ports/mail/teapop Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/26 09:34:17 PDT Modified files: mail/exim Makefile databases/gtksql Makefile www/mod_php3/scripts configure.php www/mod_php4/scripts configure.php lang/pike/scripts configure.pike mail/teapop Makefile Log: old postgresql port has been removed. use postgresql7, which has proven stability now. Revision Changes Path 1.54 +2 -2 ports/mail/exim/Makefile 1.8 +2 -2 ports/databases/gtksql/Makefile 1.95 +2 -2 ports/www/mod_php3/scripts/configure.php 1.98 +2 -2 ports/www/mod_php4/scripts/configure.php 1.3 +1 -1 ports/lang/pike/scripts/configure.pike 1.3 +2 -2 ports/mail/teapop/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 9:37:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2900037B423; Sat, 26 Aug 2000 09:37:23 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA30497; Sat, 26 Aug 2000 09:37:23 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008261637.JAA30497@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Sat, 26 Aug 2000 09:37:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports YEAR2000 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/26 09:37:23 PDT Modified files: . YEAR2000 Log: postgresql port has been nuked. change y2k statement to postgresql7 Revision Changes Path 1.6 +1 -1 ports/YEAR2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 9:52:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C4C9E37B43C; Sat, 26 Aug 2000 09:52:19 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA31475; Sat, 26 Aug 2000 09:52:19 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008261652.JAA31475@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Sat, 26 Aug 2000 09:52:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/apsfilter6 Makefile ports/print/apsfilter6/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/26 09:52:19 PDT Modified files: print/apsfilter6 Makefile print/apsfilter6/files md5 Log: The last changes were too Linux centric (Michael doesn't have access to BSD machine). So here now some bugfixes to make SETUP work again ! * SETUP: fix permissions of $SPOOLDIR 700 was to restrictive for BSD. TODO: "clone" permissions of $SPOOL * SETUP: bugfix: BSD needs /usr/sbin in PATH to find chown. added /sbin as well, since this is unexpensive and possibly needed for other systems. * SETUP: cosmetic, reformat menues to still fit within 25 lines * SETUP: fix: grep -c needs an argument (".") in echo "\c" | grep -c . to work on FreeBSD and possibly other BSDs with GNU grep 2.4 Revision Changes Path 1.70 +2 -2 ports/print/apsfilter6/Makefile 1.36 +1 -1 ports/print/apsfilter6/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 9:54:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2552037B424; Sat, 26 Aug 2000 09:54:45 -0700 (PDT) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA31736; Sat, 26 Aug 2000 09:54:45 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200008261654.JAA31736@freefall.freebsd.org> From: Andreas Klemm <andreas@FreeBSD.org> Date: Sat, 26 Aug 2000 09:54:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/apsfilter Makefile ports/print/apsfilter/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG andreas 2000/08/26 09:54:45 PDT Modified files: print/apsfilter Makefile print/apsfilter/files md5 Log: Update: new patch Revision Changes Path 1.67 +2 -2 ports/print/apsfilter/Makefile 1.32 +1 -1 ports/print/apsfilter/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 10:30:38 2000 Delivered-To: cvs-all@freebsd.org Received: from picalon.gun.de (picalon.gun.de [192.109.159.1]) by hub.freebsd.org (Postfix) with ESMTP id 6E1E137B424; Sat, 26 Aug 2000 10:30:32 -0700 (PDT) Received: (from uucp@localhost) by picalon.gun.de (8.9.3/8.9.3) id TAA06852; Sat, 26 Aug 2000 19:30:13 +0200 (MET DST) >Received: (from andreas@localhost) by klemm.gtn.com (8.9.3/8.9.3) id SAA99400; Sat, 26 Aug 2000 18:31:07 +0200 (CEST) (envelope-from andreas) Date: Sat, 26 Aug 2000 18:31:07 +0200 From: Andreas Klemm <andreas@klemm.gtn.com> To: Steve Price <sprice@hiwaay.net> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/p5-DBD-Pg Makefile ports/databases/p5-Pg Makefile ports/databases/pgaccess Makefile ports/databases/py-PyGreSQL Makefile Message-ID: <20000826183107.A99314@titan.klemm.gtn.com> References: <200008260915.CAA87620@freefall.freebsd.org> <20000826111839.A268@bonsai.hiwaay.net> Mime-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20000826111839.A268@bonsai.hiwaay.net>; from sprice@hiwaay.net on Sat, Aug 26, 2000 at 11:18:40AM -0500 X-Operating-System: FreeBSD 4.1-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 26, 2000 at 11:18:40AM -0500, Steve Price wrote: > The following ports will need similar tweaks. > > databases/gtksql > lang/pike > mail/exim > mail/teapop > www/mod_php3 > www/mod_php4 on its way, thanks ! > You'll also want to remove the postgresql entry from ports/YEAR2000. > Or at least change it to postgresql7. Will do so. -- Andreas Klemm Powered by FreeBSD SMP Songs from our band >>64Bits<<............http://www.apsfilter.org/64bits.html My homepage................................ http://people.FreeBSD.ORG/~andreas Please note: Apsfilter got a NEW HOME................http://www.apsfilter.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 10:38: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from palrel1.hp.com (palrel1.hp.com [156.153.255.242]) by hub.freebsd.org (Postfix) with ESMTP id 3CD2837B422; Sat, 26 Aug 2000 10:37:58 -0700 (PDT) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel1.hp.com (Postfix) with ESMTP id A1D6C36A6; Sat, 26 Aug 2000 10:37:57 -0700 (PDT) Received: from cup.hp.com (p1000180.nsr.hp.com [15.109.0.180]) by adlmail.cup.hp.com (8.9.3 (PHNE_18546)/8.9.3 SMKit7.02) with ESMTP id KAA25700; Sat, 26 Aug 2000 10:37:56 -0700 (PDT) Message-ID: <39A80074.DB0115A9@cup.hp.com> Date: Sat, 26 Aug 2000 10:37:56 -0700 From: Marcel Moolenaar <marcel@cup.hp.com> Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Sheldon Hearn <sheldonh@uunet.co.za> Cc: Marcel Moolenaar <marcel@freebsd.org>, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/compat/linux linux_misc.c References: <70133.967278164@axl.fw.uunet.co.za> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sheldon Hearn wrote: > > On Fri, 25 Aug 2000 19:18:42 MST, Marcel Moolenaar wrote: > > > marcel 2000/08/25 19:18:41 PDT > > > > Modified files: > > sys/compat/linux linux_misc.c > > Log: > > Re-implement linux_{g|s}etrlimit in terms of {g|s}etrlimit > > instead of the o{g|s}etrlimit so that the dependency on > > COMPAT_43 is removed. > > This has to do with PR 20572, yes? The PR doesn't apply to this case in particular, because you never could compile a kernel without COMPAT_43 but with COMPAT_LINUX. It takes some effort to have that ability, because some Linux syscalls map directly to old FreeBSD syscalls (osethostname and ostat for example). The commit to kern_sig.c was exactly what the PR described, but I want to have the PR open because there are probably other places where we need to fix things. Now that you mention it, I forgot to add the PR to that commit. -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 10:44:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E2BFC37B424; Sat, 26 Aug 2000 10:44:29 -0700 (PDT) Received: (from marko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA36839; Sat, 26 Aug 2000 10:44:29 -0700 (PDT) (envelope-from marko@FreeBSD.org) Message-Id: <200008261744.KAA36839@freefall.freebsd.org> From: Mark Ovens <marko@FreeBSD.org> Date: Sat, 26 Aug 2000 10:44:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/introduction chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marko 2000/08/26 10:44:29 PDT Modified files: en_US.ISO_8859-1/books/handbook/introduction chapter.sgml Log: Update the list of 3.x releases in the History of FreeBSD section. Revision Changes Path 1.31 +7 -4 doc/en_US.ISO_8859-1/books/handbook/introduction/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 12:12: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from resnet.uoregon.edu (resnet.uoregon.edu [128.223.122.47]) by hub.freebsd.org (Postfix) with ESMTP id B56B637B423; Sat, 26 Aug 2000 12:11:59 -0700 (PDT) Received: from localhost (dwhite@localhost) by resnet.uoregon.edu (8.10.1/8.10.1) with ESMTP id e7QJBxB19916; Sat, 26 Aug 2000 12:11:59 -0700 (PDT) Date: Sat, 26 Aug 2000 12:11:59 -0700 (PDT) From: Doug White <dwhite@resnet.uoregon.edu> To: Marcel Moolenaar <marcel@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/linux linux_socket.c In-Reply-To: <200008260512.WAA65739@freefall.freebsd.org> Message-ID: <Pine.BSF.4.21.0008261211250.40564-100000@resnet.uoregon.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 25 Aug 2000, Marcel Moolenaar wrote: > marcel 2000/08/25 22:12:18 PDT > > Modified files: > sys/compat/linux linux_socket.c Um, isn't this a no-no? You're not supposed to re-style existing files; you generated a 700-line diff for no functional change. Doug White | FreeBSD: The Power to Serve dwhite@resnet.uoregon.edu | www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 12:29: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id C80C837B42C; Sat, 26 Aug 2000 12:29:05 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id NAA82030; Sat, 26 Aug 2000 13:29:04 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id NAA80920; Sat, 26 Aug 2000 13:28:55 -0600 (MDT) Message-Id: <200008261928.NAA80920@harmony.village.org> To: Doug White <dwhite@resnet.uoregon.edu> Subject: Re: cvs commit: src/sys/compat/linux linux_socket.c Cc: Marcel Moolenaar <marcel@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Sat, 26 Aug 2000 12:11:59 PDT." <Pine.BSF.4.21.0008261211250.40564-100000@resnet.uoregon.edu> References: <Pine.BSF.4.21.0008261211250.40564-100000@resnet.uoregon.edu> Date: Sat, 26 Aug 2000 13:28:55 -0600 From: Warner Losh <imp@village.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <Pine.BSF.4.21.0008261211250.40564-100000@resnet.uoregon.edu> Doug White writes: : Um, isn't this a no-no? You're not supposed to re-style existing files; : you generated a 700-line diff for no functional change. Generally it is a nono, but if there's a good reason for it, then it could be OK. since Marcel has done a lot with the linuxulator in FreeBSD I think it may come close to "good reason" threshold. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 12:57:17 2000 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id BB65537B422; Sat, 26 Aug 2000 12:57:13 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id MAA00794; Sat, 26 Aug 2000 12:56:55 -0700 (PDT) (envelope-from obrien) Date: Sat, 26 Aug 2000 12:56:55 -0700 From: "David O'Brien" <obrien@FreeBSD.org> To: Doug White <dwhite@resnet.uoregon.edu> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/linux linux_socket.c Message-ID: <20000826125655.A767@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200008260512.WAA65739@freefall.freebsd.org> <Pine.BSF.4.21.0008261211250.40564-100000@resnet.uoregon.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <Pine.BSF.4.21.0008261211250.40564-100000@resnet.uoregon.edu>; from dwhite@resnet.uoregon.edu on Sat, Aug 26, 2000 at 12:11:59PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 26, 2000 at 12:11:59PM -0700, Doug White wrote: > Um, isn't this a no-no? You're not supposed to re-style existing files; > you generated a 700-line diff for no functional change. Up to the maintainer. The style in the linux compat source is inconsistent. And if it makes the maintainers job easier or him happier, then that is suffient. Such a commit should be done separate from functionality changes though (as it was). -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 13:14:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2EE7437B423; Sat, 26 Aug 2000 13:14:14 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA52231; Sat, 26 Aug 2000 13:14:14 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200008262014.NAA52231@freefall.freebsd.org> From: Steve Price <steve@FreeBSD.org> Date: Sat, 26 Aug 2000 13:14:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/udmsearch Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/08/26 13:14:13 PDT Modified files: www/udmsearch Makefile Log: Use WITH_PGSQL to be consistent with the rest of the ports that have the ability to compile postgresql support in. Revision Changes Path 1.10 +2 -2 ports/www/udmsearch/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 13:16:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 687A937B422; Sat, 26 Aug 2000 13:16:19 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA52557; Sat, 26 Aug 2000 13:16:19 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200008262016.NAA52557@freefall.freebsd.org> From: Steve Price <steve@FreeBSD.org> Date: Sat, 26 Aug 2000 13:16:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/ircII/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/08/26 13:16:19 PDT Modified files: irc/ircII/pkg PLIST Log: Finish upgrading to version 4.4x. Revision Changes Path 1.14 +1 -1 ports/irc/ircII/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 13:18:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A75D37B423; Sat, 26 Aug 2000 13:18:43 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA52832; Sat, 26 Aug 2000 13:18:43 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200008262018.NAA52832@freefall.freebsd.org> From: Steve Price <steve@FreeBSD.org> Date: Sat, 26 Aug 2000 13:18:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/ircatlite Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/08/26 13:18:43 PDT Modified files: irc/ircatlite Makefile Log: Provide the correct value for WRKSRC. Revision Changes Path 1.2 +2 -2 ports/irc/ircatlite/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 13:19:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C0B4C37B43F; Sat, 26 Aug 2000 13:19:23 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA52921; Sat, 26 Aug 2000 13:19:23 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200008262019.NAA52921@freefall.freebsd.org> From: Steve Price <steve@FreeBSD.org> Date: Sat, 26 Aug 2000 13:19:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gawk/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/08/26 13:19:23 PDT Modified files: lang/gawk/pkg PLIST Log: Finish upgrading to version 3.0.6. Revision Changes Path 1.3 +1 -1 ports/lang/gawk/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 13:22:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7430337B43C; Sat, 26 Aug 2000 13:22:47 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA53235; Sat, 26 Aug 2000 13:22:47 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200008262022.NAA53235@freefall.freebsd.org> From: Steve Price <steve@FreeBSD.org> Date: Sat, 26 Aug 2000 13:22:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/emacs20-dl-canna Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/08/26 13:22:47 PDT Modified files: japanese/emacs20-dl-canna Makefile Log: Generalize the parallel build hack to include PACKAGE_BUILDING since the problem exists there too. Revision Changes Path 1.20 +2 -2 ports/japanese/emacs20-dl-canna/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 15: 1: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD00A37B422; Sat, 26 Aug 2000 15:00:59 -0700 (PDT) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA62253; Sat, 26 Aug 2000 15:00:59 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Message-Id: <200008262200.PAA62253@freefall.freebsd.org> From: Robert Watson <rwatson@FreeBSD.org> Date: Sat, 26 Aug 2000 15:00:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vnode_if.src src/sys/ufs/ufs extattr.h ufs_extattr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG rwatson 2000/08/26 15:00:59 PDT Modified files: sys/kern vnode_if.src sys/ufs/ufs extattr.h ufs_extattr.c Log: o Correct spelling of ufs_exttatr_find_attr -> ufs_extattr_find_attr o Add "const" qualifier to attrname argument of various calls to remove warnings Obtained from: TrustedBSD Project Revision Changes Path 1.32 +3 -3 src/sys/kern/vnode_if.src 1.7 +2 -2 src/sys/ufs/ufs/extattr.h 1.8 +22 -22 src/sys/ufs/ufs/ufs_extattr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 15: 3:43 2000 Delivered-To: cvs-all@freebsd.org Received: from spock.org (cm-24-92-52-10.nycap.rr.com [24.92.52.10]) by hub.freebsd.org (Postfix) with ESMTP id 4DAF137B43C; Sat, 26 Aug 2000 15:03:33 -0700 (PDT) Received: (from jon@localhost) by spock.org serial EF600Q3T-B7F; Sat, 26 Aug 2000 18:03:21 -0400 (EDT) (envelope-from jon) Date: Sat, 26 Aug 2000 18:03:21 -0400 From: Jonathan Chen <jon@spock.org> To: Visigoth <visigoth@telemere.net> Cc: current@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: DPT revision....(broken drivers in -STABLE) Message-ID: <20000826180321.A1703@spock.org> References: <Pine.BSF.4.21.0008231343450.2856-100000@mail.telemere.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <Pine.BSF.4.21.0008231343450.2856-100000@mail.telemere.net>; from visigoth@telemere.net on Wed, Aug 23, 2000 at 01:51:16PM -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 23, 2000 at 01:51:16PM -0500, Visigoth wrote: > Sorry for the cross post but.... > > Would it be possible to revert the DPT commits made by peter on > Mon Aug 7 18:48:14 2000 in the RELENG_4 branch? It seems that the > dpt_attatch is failing in bus_alloc_resource(9) for the IRQ, and I have > production machines that need worlds built for some other updates as > well.. I would be happy to install a -CURRENT machine and help debug > until it works, but for right now, there is NO DPT support in -STABLE for > the DPT PM3334UW. I had a pr started, but haven't been able to get any > response from the current maintainer. > > I am going to install a -CURRENT machine with a DPT in it and > start the process of working on the issue, but it would be nice if we can > keep -STABLE stable... ;) I just updated on my -STABLE machine and ran into the same exact problem. I also have on the machine SMP with APIC. The fix for this problem is simple: Index: dpt_pci.c =================================================================== RCS file: /export/ncvs/src/sys/dev/dpt/dpt_pci.c,v retrieving revision 1.17.2.1 diff -u -r1.17.2.1 dpt_pci.c --- dpt_pci.c 2000/08/07 18:48:14 1.17.2.1 +++ dpt_pci.c 2000/08/26 21:40:26 @@ -106,7 +106,7 @@ } rid = 0; - irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1, RF_ACTIVE); + irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1, RF_ACTIVE | RF_SHAREABLE); if (!irq) { device_printf(dev, "No irq?!\n"); error = ENOMEM; (Everybody in unison, say "Doh!") Since this didn't change in the past two months, I'm guessing this was caused by somebody else futzing with APIC. In any case, I don't see why the DPT card shouldn't be allowed to share IRQs, and I'm now running the latest -STABLE on my DPT card. PS. Sorrry Matt for foiling your evil plot to get a free RAID card. ;) -- (o_ 1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2 _o) \\\_\ Jonathan Chen jon@spock.org /_/// <____) No electrons were harmed during production of this message (____> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 15:19:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EDD9037B43E; Sat, 26 Aug 2000 15:19:54 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA65220; Sat, 26 Aug 2000 15:19:54 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008262219.PAA65220@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Sat, 26 Aug 2000 15:19:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/dpt dpt_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/26 15:19:54 PDT Modified files: sys/dev/dpt dpt_pci.c Log: Allow the DPT pci attachment to share IRQ's Submitted by: Jonathan Chen <jon@spock.org> Revision Changes Path 1.21 +3 -2 src/sys/dev/dpt/dpt_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 15:21:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 298A037B42C; Sat, 26 Aug 2000 15:21:22 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA65374; Sat, 26 Aug 2000 15:21:22 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008262221.PAA65374@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Sat, 26 Aug 2000 15:21:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/dpt dpt_pci.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/26 15:21:22 PDT Modified files: (Branch: RELENG_4) sys/dev/dpt dpt_pci.c Log: MFC: rev 1.21: allow PCI irqs to be shared like before. Submitted by: Jonathan Chen <jon@spock.org> Revision Changes Path 1.17.2.2 +3 -2 src/sys/dev/dpt/dpt_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 15:22:29 2000 Delivered-To: cvs-all@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id B8A0237B42C; Sat, 26 Aug 2000 15:22:21 -0700 (PDT) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.11.0/8.9.3) with ESMTP id e7QMMEG25902; Sat, 26 Aug 2000 15:22:14 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200008262222.e7QMMEG25902@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Jonathan Chen <jon@spock.org> Cc: Visigoth <visigoth@telemere.net>, current@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: DPT revision....(broken drivers in -STABLE) In-Reply-To: <20000826180321.A1703@spock.org> Date: Sat, 26 Aug 2000 15:22:14 -0700 From: Peter Wemm <peter@netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jonathan Chen wrote: > On Wed, Aug 23, 2000 at 01:51:16PM -0500, Visigoth wrote: > > > Sorry for the cross post but.... > > > > Would it be possible to revert the DPT commits made by peter on > > Mon Aug 7 18:48:14 2000 in the RELENG_4 branch? It seems that the > > dpt_attatch is failing in bus_alloc_resource(9) for the IRQ, and I have > > production machines that need worlds built for some other updates as > > well.. I would be happy to install a -CURRENT machine and help debug > > until it works, but for right now, there is NO DPT support in -STABLE for > > the DPT PM3334UW. I had a pr started, but haven't been able to get any > > response from the current maintainer. > > > > I am going to install a -CURRENT machine with a DPT in it and > > start the process of working on the issue, but it would be nice if we can > > keep -STABLE stable... ;) > > I just updated on my -STABLE machine and ran into the same exact problem. > I also have on the machine SMP with APIC. The fix for this problem is > simple: Argh! I have committed this now, both in -current and RELENG_4. Thanks! > Index: dpt_pci.c > =================================================================== > RCS file: /export/ncvs/src/sys/dev/dpt/dpt_pci.c,v > retrieving revision 1.17.2.1 > diff -u -r1.17.2.1 dpt_pci.c > --- dpt_pci.c 2000/08/07 18:48:14 1.17.2.1 > +++ dpt_pci.c 2000/08/26 21:40:26 > @@ -106,7 +106,7 @@ > } > > rid = 0; > - irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1, RF_ACTIVE); > + irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1, RF_ACTIVE | RF_SHAREABLE); > if (!irq) { > device_printf(dev, "No irq?!\n"); > error = ENOMEM; > > (Everybody in unison, say "Doh!") > Since this didn't change in the past two months, I'm guessing this was > caused by somebody else futzing with APIC. In any case, I don't see why > the DPT card shouldn't be allowed to share IRQs, and I'm now running the > latest -STABLE on my DPT card. > > PS. Sorrry Matt for foiling your evil plot to get a free RAID card. ;) > > -- > (o_ 1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2 _o) > \\\_\ Jonathan Chen jon@spock.org /_/// > <____) No electrons were harmed during production of this message (____> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 15:58:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2892437B42C; Sat, 26 Aug 2000 15:58:14 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA68219; Sat, 26 Aug 2000 15:58:14 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008262258.PAA68219@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 15:58:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/sfio Makefile ports/devel/sfio/pkg DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 15:58:13 PDT Modified files: devel/sfio Makefile devel/sfio/pkg DESCR Log: * This port is no longer restricted. * Make description formatting nicer and add WWW link. PR: 20826 Submitted by: Trevor Johnson <trevor@jpj.net> Revision Changes Path 1.17 +34 -17 ports/devel/sfio/Makefile 1.2 +6 -6 ports/devel/sfio/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 16:23:38 2000 Delivered-To: cvs-all@freebsd.org Received: from palrel3.hp.com (palrel3.hp.com [156.153.255.226]) by hub.freebsd.org (Postfix) with ESMTP id ED6F137B43E; Sat, 26 Aug 2000 16:23:35 -0700 (PDT) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel3.hp.com (Postfix) with ESMTP id 6F3761247; Sat, 26 Aug 2000 16:23:35 -0700 (PDT) Received: from cup.hp.com (p1000180.nsr.hp.com [15.109.0.180]) by adlmail.cup.hp.com (8.9.3 (PHNE_18546)/8.9.3 SMKit7.02) with ESMTP id QAA01812; Sat, 26 Aug 2000 16:23:34 -0700 (PDT) Message-ID: <39A85175.148F900D@cup.hp.com> Date: Sat, 26 Aug 2000 16:23:33 -0700 From: Marcel Moolenaar <marcel@cup.hp.com> Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Doug White <dwhite@resnet.uoregon.edu> Cc: Marcel Moolenaar <marcel@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/linux linux_socket.c References: <Pine.BSF.4.21.0008261211250.40564-100000@resnet.uoregon.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Doug White wrote: > > On Fri, 25 Aug 2000, Marcel Moolenaar wrote: > > > marcel 2000/08/25 22:12:18 PDT > > > > Modified files: > > sys/compat/linux linux_socket.c > > Um, isn't this a no-no? You're not supposed to re-style existing files; > you generated a 700-line diff for no functional change. I have functional changes to commit as well. It's definitely a no-no to mix that with white-space fixes. If I can't resist myself to change style as well while I'm coding, I'd better get the style issue out of my way. -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 16:27:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 791D437B422; Sat, 26 Aug 2000 16:27:53 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA71734; Sat, 26 Aug 2000 16:27:53 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008262327.QAA71734@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 16:27:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ddd Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 16:27:53 PDT Modified files: devel/ddd Makefile Log: Fix breakage caused by sobomax in rev 1.30. Note you _CANNOT_ use ${SED} and ${AWK} in "!=" lines. I wish people would STOP running `portlint' on this Makefile and blindly accpeting its output w/o understanding it. To quote Henry Spencer: I Thou shalt run lint frequently and study its pronouncements with care, for verily its perception and judgement oft exceed thine. ..snip.. ``Study'' doth not mean mindless zeal to eradicate every byte of lint output--if for no other reason, because thou just canst not shut it up about some things--but that thou should know the cause of its unhappiness and understand what worrisome sign it tries to speak of. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Revision Changes Path 1.32 +3 -3 ports/devel/ddd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 16:36:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 414D737B440; Sat, 26 Aug 2000 16:36:13 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA73115; Sat, 26 Aug 2000 16:36:13 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008262336.QAA73115@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 16:36:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/tcpshow/patches patch-02 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 16:36:12 PDT Modified files: net/tcpshow/patches patch-02 Log: `ether_addr' and `ether_ntohost' are now declared in net/ethernet.h. Submitted by: Remy Nonnenmacher <remy@boostworks.com> Revision Changes Path 1.4 +25 -17 ports/net/tcpshow/patches/patch-02 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 16:49:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A1D5E37B423; Sat, 26 Aug 2000 16:49:45 -0700 (PDT) Received: (from alfred@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA73757; Sat, 26 Aug 2000 16:49:45 -0700 (PDT) (envelope-from alfred@FreeBSD.org) Message-Id: <200008262349.QAA73757@freefall.freebsd.org> From: Alfred Perlstein <alfred@FreeBSD.org> Date: Sat, 26 Aug 2000 16:49:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_descrip.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alfred 2000/08/26 16:49:45 PDT Modified files: sys/kern kern_descrip.c Log: new sysctl 'kern.openfiles' (exports nfiles to userland) Revision Changes Path 1.91 +4 -1 src/sys/kern/kern_descrip.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 17:12: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from mta5.rcsntx.swbell.net (mta5.rcsntx.swbell.net [151.164.30.29]) by hub.freebsd.org (Postfix) with ESMTP id 719D637B424; Sat, 26 Aug 2000 17:11:59 -0700 (PDT) Received: from holly.dyndns.org ([208.191.149.190]) by mta5.rcsntx.swbell.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0FZX0038NCEKXA@mta5.rcsntx.swbell.net>; Sat, 26 Aug 2000 19:08:45 -0500 (CDT) Received: (from chris@localhost) by holly.dyndns.org (8.9.3/8.9.3) id TAA78473; Sat, 26 Aug 2000 19:08:22 -0500 (CDT envelope-from chris) Date: Sat, 26 Aug 2000 19:08:21 -0500 From: Chris Costello <chris@calldei.com> Subject: Re: cvs commit: src/sys/kern kern_descrip.c In-reply-to: <200008262349.QAA73757@freefall.freebsd.org> To: Alfred Perlstein <alfred@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Reply-To: chris@calldei.com Message-id: <20000826190820.L60058@holly.calldei.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.4i References: <200008262349.QAA73757@freefall.freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Saturday, August 26, 2000, Alfred Perlstein wrote: > Log: > new sysctl 'kern.openfiles' (exports nfiles to userland) What needs this? -- |Chris Costello <chris@calldei.com> |You depend too much on computers for information. `------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 17:15:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C83937B424; Sat, 26 Aug 2000 17:15:52 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA76809; Sat, 26 Aug 2000 17:15:52 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270015.RAA76809@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 17:15:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cdk Makefile ports/devel/cdk/files md5 ports/devel/cdk/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 17:15:52 PDT Modified files: devel/cdk Makefile devel/cdk/files md5 devel/cdk/patches patch-aa Log: Update to version 4.9.10. Revision Changes Path 1.11 +3 -4 ports/devel/cdk/Makefile 1.3 +1 -1 ports/devel/cdk/files/md5 1.3 +10 -9 ports/devel/cdk/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 17:16:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9879237B43E; Sat, 26 Aug 2000 17:16:22 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA76894; Sat, 26 Aug 2000 17:16:22 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270016.RAA76894@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 17:16:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cdk/patches patch-configure X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 17:16:22 PDT Added files: devel/cdk/patches patch-configure Log: Update to version 4.9.10. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 17:19: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 3871B37B43E; Sat, 26 Aug 2000 17:18:58 -0700 (PDT) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id BEC021C41; Sat, 26 Aug 2000 20:18:57 -0400 (EDT) Date: Sat, 26 Aug 2000 20:18:57 -0400 From: Bill Fumerola <billf@chimesnet.com> To: Chris Costello <chris@calldei.com> Cc: Alfred Perlstein <alfred@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_descrip.c Message-ID: <20000826201857.P57333@jade.chc-chimes.com> References: <200008262349.QAA73757@freefall.freebsd.org> <20000826190820.L60058@holly.calldei.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20000826190820.L60058@holly.calldei.com>; from chris@calldei.com on Sat, Aug 26, 2000 at 07:08:21PM -0500 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 26, 2000 at 07:08:21PM -0500, Chris Costello wrote: > On Saturday, August 26, 2000, Alfred Perlstein wrote: > > Log: > > new sysctl 'kern.openfiles' (exports nfiles to userland) > > What needs this? People trying to tune/predict maxfiles. -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 17:27:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B9EC37B422; Sat, 26 Aug 2000 17:27:20 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA77769; Sat, 26 Aug 2000 17:27:20 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270027.RAA77769@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 17:27:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/netcat/patches patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 17:27:20 PDT Modified files: net/netcat/patches patch-ab Log: Enable `TELNET' and `GAPING_SECURITY_HOLE'. Requested by: ru (GAPING_SECURITY_HOLE) Revision Changes Path 1.2 +11 -2 ports/net/netcat/patches/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 17:36: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6823B37B423; Sat, 26 Aug 2000 17:35:59 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA78587; Sat, 26 Aug 2000 17:35:59 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270035.RAA78587@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 17:35:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ngrep/patches patch-ngrep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 17:35:59 PDT Modified files: net/ngrep/patches patch-ngrep.c Log: "Fix a small nit that corrects an oversight in one of our newer features..." Submitted by: Dan Frasnelli <dfrasnel@corewar.com> (ngrep developer) Revision Changes Path 1.3 +24 -3 ports/net/ngrep/patches/patch-ngrep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 17:46:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2844637B423; Sat, 26 Aug 2000 17:46:26 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA79413; Sat, 26 Aug 2000 17:46:26 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008270046.RAA79413@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Sat, 26 Aug 2000 17:46:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/killall killall.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/26 17:46:25 PDT Added files: usr.bin/killall killall.c Log: killall.c is meant to be a superset replacement of killall.pl, the main difference is that it uses sysctl to get the process lists rather than /proc - thereby reducing the dependency on /proc by one more tool. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 17:58:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E1C837B424; Sat, 26 Aug 2000 17:58:14 -0700 (PDT) Received: (from itojun@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA80167; Sat, 26 Aug 2000 17:58:14 -0700 (PDT) (envelope-from itojun@FreeBSD.org) Message-Id: <200008270058.RAA80167@freefall.freebsd.org> From: Jun-ichiro itojun Hagino <itojun@FreeBSD.org> Date: Sat, 26 Aug 2000 17:58:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet6 in6.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG itojun 2000/08/26 17:58:14 PDT Modified files: sys/netinet6 in6.h Log: warn that setsockopt/sysctl # spaces are shared among *BSD, and should better be consulted with KAME guys if you want a number. Revision Changes Path 1.12 +3 -1 src/sys/netinet6/in6.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 18:11: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E6DC237B423; Sat, 26 Aug 2000 18:10:57 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA82583; Sat, 26 Aug 2000 18:10:57 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008270110.SAA82583@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Sat, 26 Aug 2000 18:10:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/killall killall.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/26 18:10:56 PDT Modified files: usr.bin/killall killall.c Log: *blush*. I was *sure* I compiled this after the last change.. Add the missing ) Shamed by: billf Revision Changes Path 1.2 +2 -2 src/usr.bin/killall/killall.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 18:17:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A78537B43C; Sat, 26 Aug 2000 18:17:13 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA82952; Sat, 26 Aug 2000 18:17:13 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008270117.SAA82952@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Sat, 26 Aug 2000 18:17:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/killall killall.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/26 18:17:13 PDT Modified files: usr.bin/killall killall.c Log: Sigh, today is not my day. Convert a verbose while() .. loop into a for() loop. Submitted by: billf Revision Changes Path 1.3 +2 -5 src/usr.bin/killall/killall.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 18:19: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 5903037B422; Sat, 26 Aug 2000 18:18:58 -0700 (PDT) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id VAA70257; Sat, 26 Aug 2000 21:18:56 -0400 (EDT) (envelope-from wollman) Date: Sat, 26 Aug 2000 21:18:56 -0400 (EDT) From: Garrett Wollman <wollman@khavrinen.lcs.mit.edu> Message-Id: <200008270118.VAA70257@khavrinen.lcs.mit.edu> To: Steve Price <sprice@hiwaay.net> Cc: Andreas Klemm <andreas@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/p5-DBD-Pg Makefile ports/databases/p5-Pg Makefile ports/databases/pgaccess Makefile ports/databases/py-PyGreSQL Makefile In-Reply-To: <20000826111839.A268@bonsai.hiwaay.net> References: <200008260915.CAA87620@freefall.freebsd.org> <20000826111839.A268@bonsai.hiwaay.net> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG <<On Sat, 26 Aug 2000 11:18:40 -0500, Steve Price <sprice@hiwaay.net> said: > You'll also want to remove the postgresql entry from ports/YEAR2000. > Or at least change it to postgresql7. Or even better, unbreak the `postgresql' port and delete `postgresql7' as should have been done in the first place. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 18:20:39 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 2310737B424; Sat, 26 Aug 2000 18:20:38 -0700 (PDT) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id EBFFE1C41; Sat, 26 Aug 2000 21:20:34 -0400 (EDT) Date: Sat, 26 Aug 2000 21:20:34 -0400 From: Bill Fumerola <billf@chimesnet.com> To: Garrett Wollman <wollman@khavrinen.lcs.mit.edu> Cc: Steve Price <sprice@hiwaay.net>, Andreas Klemm <andreas@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/p5-DBD-Pg Makefile ports/databases/p5-Pg Makefile ports/databases/pgaccess Makefile ports/databases/py-PyGreSQL Makefile Message-ID: <20000826212034.R57333@jade.chc-chimes.com> References: <200008260915.CAA87620@freefall.freebsd.org> <20000826111839.A268@bonsai.hiwaay.net> <200008270118.VAA70257@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200008270118.VAA70257@khavrinen.lcs.mit.edu>; from wollman@khavrinen.lcs.mit.edu on Sat, Aug 26, 2000 at 09:18:56PM -0400 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 26, 2000 at 09:18:56PM -0400, Garrett Wollman wrote: > <<On Sat, 26 Aug 2000 11:18:40 -0500, Steve Price <sprice@hiwaay.net> said: > > > You'll also want to remove the postgresql entry from ports/YEAR2000. > > Or at least change it to postgresql7. > > Or even better, unbreak the `postgresql' port and delete `postgresql7' > as should have been done in the first place. .... which is what I said 5 minutes after the start of this whole mess which has resulted in lots of unfun things. -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 18:34:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 397AA37B424; Sat, 26 Aug 2000 18:34:17 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA84190; Sat, 26 Aug 2000 18:34:17 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270134.SAA84190@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 18:34:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ElectricFence Makefile ports/devel/ElectricFence/files md5 ports/devel/ElectricFence/patches patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 18:34:16 PDT Modified files: devel/ElectricFence Makefile devel/ElectricFence/files md5 devel/ElectricFence/patches patch-aa patch-ab Log: Update to version 2.2.2. Revision Changes Path 1.12 +7 -3 ports/devel/ElectricFence/Makefile 1.2 +1 -1 ports/devel/ElectricFence/files/md5 1.4 +37 -10 ports/devel/ElectricFence/patches/patch-aa 1.2 +6 -8 ports/devel/ElectricFence/patches/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 18:38:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5ACF937B422; Sat, 26 Aug 2000 18:38:11 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA84606; Sat, 26 Aug 2000 18:38:11 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270138.SAA84606@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 18:38:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/tcpshow/patches patch-02 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 18:38:11 PDT Modified files: net/tcpshow/patches patch-02 Log: A better version of rev 1.4. Submitted by: sheldonh Revision Changes Path 1.5 +29 -23 ports/net/tcpshow/patches/patch-02 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 19:12:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 99B2B37B422; Sat, 26 Aug 2000 19:12:30 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA88224; Sat, 26 Aug 2000 19:12:30 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008270212.TAA88224@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Sat, 26 Aug 2000 19:12:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/killall killall.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/26 19:12:30 PDT Modified files: usr.bin/killall killall.c Log: Try and fix up some bogus indentation leftovers from emacs several years ago. Revision Changes Path 1.4 +3 -3 src/usr.bin/killall/killall.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 19:17: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2B9D37B422; Sat, 26 Aug 2000 19:17:01 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA88442; Sat, 26 Aug 2000 19:17:01 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270217.TAA88442@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 19:17:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/icb/patches patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 19:17:01 PDT Modified files: net/icb/patches patch-ac Log: * Y2k fixes. * get more declarations from our native headers. Submitted by: will Objtained from: NetBSD (patch-aa) Revision Changes Path 1.2 +33 -3 ports/net/icb/patches/patch-ac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 19:44:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 39E6B37B43E; Sat, 26 Aug 2000 19:44:34 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA90495; Sat, 26 Aug 2000 19:44:34 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270244.TAA90495@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 19:44:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/icb/patches patch-serverlist.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 19:44:33 PDT Added files: net/icb/patches patch-serverlist.c Log: Find the user's homedir in a more complete way. Obtained from: NetBSD (patch-ai) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 19:45:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4078A37B440; Sat, 26 Aug 2000 19:45:16 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA90574; Sat, 26 Aug 2000 19:45:16 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270245.TAA90574@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 19:45:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/icb/patches patch-globals.c patch-helpdata.c patch-icb.h patch-oset.c patch-print.c patch-sample.icbrc patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 19:45:16 PDT Modified files: net/icb/patches patch-ac Added files: net/icb/patches patch-globals.c patch-helpdata.c patch-icb.h patch-oset.c patch-print.c patch-sample.icbrc Log: Add the ability to prefix each line with a timestamp. Obtained from: NetBSD Revision Changes Path 1.3 +5 -4 ports/net/icb/patches/patch-ac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 19:47: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 15D5D37B42C; Sat, 26 Aug 2000 19:46:58 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA90721; Sat, 26 Aug 2000 19:46:58 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270246.TAA90721@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 19:46:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/icb/patches/obsd patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 19:46:57 PDT Removed files: net/icb/patches/obsd patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj Log: Grrr.. these weren't supose to be imported. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 20:23:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5299B37B43E; Sat, 26 Aug 2000 20:23:49 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA94752; Sat, 26 Aug 2000 20:23:49 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270323.UAA94752@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 20:23:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/fping Makefile ports/net/fping/files md5 ports/net/fping/patches patch-02 patch-03 patch-01 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 20:23:48 PDT Modified files: net/fping Makefile net/fping/files md5 net/fping/patches patch-02 patch-03 Removed files: net/fping/patches patch-01 Log: Upgrade to version 2.2b1. Revision Changes Path 1.11 +7 -13 ports/net/fping/Makefile 1.2 +1 -1 ports/net/fping/files/md5 1.4 +76 -181 ports/net/fping/patches/patch-02 1.3 +37 -21 ports/net/fping/patches/patch-03 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 20:38:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C062537B43C; Sat, 26 Aug 2000 20:38:52 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA95720; Sat, 26 Aug 2000 20:38:52 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270338.UAA95720@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 20:38:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ups-debug Makefile ports/devel/ups-debug/files md5 ports/devel/ups-debug/patches patch-08 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 20:38:52 PDT Modified files: devel/ups-debug Makefile devel/ups-debug/files md5 Removed files: devel/ups-debug/patches patch-08 Log: Update to version 3.34. Revision Changes Path 1.19 +12 -5 ports/devel/ups-debug/Makefile 1.11 +1 -1 ports/devel/ups-debug/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 20:57:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AABE937B422; Sat, 26 Aug 2000 20:57:50 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA96987; Sat, 26 Aug 2000 20:57:50 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200008270357.UAA96987@freefall.freebsd.org> From: Peter Wemm <peter@FreeBSD.org> Date: Sat, 26 Aug 2000 20:57:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/dpt dpt_pci.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/08/26 20:57:50 PDT Removed files: (Branch: RELENG_4) sys/dev/dpt dpt_pci.h Log: MFC: this file isn't used. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 21:18:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A7C4537B424; Sat, 26 Aug 2000 21:18:34 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA01308; Sat, 26 Aug 2000 21:18:34 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270418.VAA01308@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 21:18:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/gv Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 21:18:34 PDT Modified files: print/gv Makefile Log: Look for proper version of Xaw3d, as this wasn't done when someone upgraded the Xaw3d port. Submitted by: Bernie Doehner <bad@uhf.wireless.net> Revision Changes Path 1.28 +2 -2 ports/print/gv/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 21:25: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F27C137B422; Sat, 26 Aug 2000 21:24:58 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA02156; Sat, 26 Aug 2000 21:24:58 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Message-Id: <200008270424.VAA02156@freefall.freebsd.org> From: Bruce Mah <bmah@FreeBSD.org> Date: Sat, 26 Aug 2000 21:24:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/internal machines.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bmah 2000/08/26 21:24:58 PDT Modified files: en/internal machines.sgml Log: Fix typo in email address for admin contact for project machines. Reviewed by: jkh Revision Changes Path 1.18 +3 -3 www/en/internal/machines.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 21:26:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 354F537B43C; Sat, 26 Aug 2000 21:26:42 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA02278; Sat, 26 Aug 2000 21:26:42 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008270426.VAA02278@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Sat, 26 Aug 2000 21:26:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/linux-vmware-toolbox Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/26 21:26:42 PDT Modified files: emulators/linux-vmware-toolbox Makefile Log: Include bsd.port.pre.mk before referring to DISTDIR in .if condition. Revision Changes Path 1.2 +3 -3 ports/emulators/linux-vmware-toolbox/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 21:43:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C503337B424; Sat, 26 Aug 2000 21:43:45 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA05101; Sat, 26 Aug 2000 21:43:45 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270443.VAA05101@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 21:43:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ups-debug Makefile ports/devel/ups-debug/files md5 ports/devel/ups-debug/patches patch-07 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 21:43:45 PDT Modified files: devel/ups-debug Makefile devel/ups-debug/files md5 Removed files: devel/ups-debug/patches patch-07 Log: Update to version 3.35 Beta13. Revision Changes Path 1.20 +4 -3 ports/devel/ups-debug/Makefile 1.12 +1 -1 ports/devel/ups-debug/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 21:44:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EAFD37B43C; Sat, 26 Aug 2000 21:44:45 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA05297; Sat, 26 Aug 2000 21:44:45 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270444.VAA05297@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 21:44:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/cxterm Makefile ports/chinese/cxterm/files md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 21:44:45 PDT Modified files: chinese/cxterm Makefile chinese/cxterm/files md5 Log: Use patch to enable full ANSI colour. Revision Changes Path 1.16 +7 -3 ports/chinese/cxterm/Makefile 1.2 +1 -0 ports/chinese/cxterm/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 22: 9:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1284A37B43C; Sat, 26 Aug 2000 22:09:41 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA11043; Sat, 26 Aug 2000 22:09:40 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270509.WAA11043@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 22:09:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/sniffit Makefile ports/net/sniffit/files md5 ports/net/sniffit/patches patch-01 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 22:09:39 PDT Modified files: net/sniffit Makefile net/sniffit/files md5 net/sniffit/patches patch-01 Log: Use Debian patch which contains some security tweaks (as discussed on Bugtraq), and updates the GNU autoconf bits to newer versions. Revision Changes Path 1.14 +5 -1 ports/net/sniffit/Makefile 1.3 +1 -0 ports/net/sniffit/files/md5 1.4 +0 -8 ports/net/sniffit/patches/patch-01 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 22:24:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2DBE37B43E; Sat, 26 Aug 2000 22:24:19 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA14491; Sat, 26 Aug 2000 22:24:19 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270524.WAA14491@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 22:24:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/sfio Makefile ports/devel/sfio/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 22:24:19 PDT Modified files: devel/sfio Makefile devel/sfio/pkg PLIST Log: Install headers into PREFIX/include/sfio. Installing a PREFIX/include/stdio.h is just too dangerous as one can too easily get it when they don't want it. Also Sendmail 8.11 (building with STARTTLS) expects to find the header "sfio/sfio.h". Submitted by: Lyndon Nerenberg <lyndon@orthanc.ab.ca> Revision Changes Path 1.18 +4 -4 ports/devel/sfio/Makefile 1.4 +4 -4 ports/devel/sfio/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 22:26:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6CF6737B424; Sat, 26 Aug 2000 22:26:25 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA14876; Sat, 26 Aug 2000 22:26:25 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270526.WAA14876@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 22:26:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/fwtk Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 22:26:25 PDT Modified files: security/fwtk Makefile Log: Point people at a different webpage as this one has the TIS Firewall Toolkit License on it. Submitted by: Eilko Bos <Eilko.Bos@nl.origin-it.com> Revision Changes Path 1.22 +2 -2 ports/security/fwtk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 23:13:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 372C237B43E; Sat, 26 Aug 2000 23:13:37 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA20399; Sat, 26 Aug 2000 23:13:36 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200008270613.XAA20399@freefall.freebsd.org> From: Akinori MUSHA <knu@FreeBSD.org> Date: Sat, 26 Aug 2000 23:13:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese Makefile.inc ports/devel/ruby-slang Makefile ports/german Makefile.inc ports/hebrew Makefile.inc ports/japanese Makefile.inc ports/japanese/kebook-i18n Makefile ports/japanese/p5-Jcode Makefile ports/japanese/p5-Text-Kakasi ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/08/26 23:13:36 PDT Modified files: chinese Makefile.inc devel/ruby-slang Makefile german Makefile.inc hebrew Makefile.inc japanese Makefile.inc japanese/kebook-i18n Makefile japanese/p5-Jcode Makefile japanese/p5-Text-Kakasi Makefile japanese/p5-jcode.pl Makefile japanese/p5-manual Makefile japanese/p5-mkres Makefile japanese/p5-nkf Makefile japanese/ruby-uconv Makefile korean Makefile.inc russian Makefile.inc vietnamese Makefile.inc Log: PKGNAMEPREFIX cleanup. This should allow chained PKGNAMEPREFIX'es. No response from: ports list, PW Revision Changes Path 1.3 +6 -2 ports/chinese/Makefile.inc 1.3 +2 -7 ports/devel/ruby-slang/Makefile 1.3 +6 -2 ports/german/Makefile.inc 1.2 +6 -2 ports/hebrew/Makefile.inc 1.3 +6 -2 ports/japanese/Makefile.inc 1.3 +20 -22 ports/japanese/kebook-i18n/Makefile 1.8 +3 -6 ports/japanese/p5-Jcode/Makefile 1.6 +3 -6 ports/japanese/p5-Text-Kakasi/Makefile 1.9 +3 -6 ports/japanese/p5-jcode.pl/Makefile 1.6 +3 -6 ports/japanese/p5-manual/Makefile 1.7 +4 -7 ports/japanese/p5-mkres/Makefile 1.5 +4 -7 ports/japanese/p5-nkf/Makefile 1.4 +3 -6 ports/japanese/ruby-uconv/Makefile 1.3 +6 -2 ports/korean/Makefile.inc 1.3 +6 -2 ports/russian/Makefile.inc 1.3 +6 -2 ports/vietnamese/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 23:16: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E662537B43C; Sat, 26 Aug 2000 23:15:59 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA20887; Sat, 26 Aug 2000 23:15:59 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270615.XAA20887@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 23:15:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 23:15:59 PDT Modified files: . modules Log: ratfor --> ports/lang/ratfor Revision Changes Path 1.1613 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 23:16:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1093737B424; Sat, 26 Aug 2000 23:16:38 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA20927; Sat, 26 Aug 2000 23:16:38 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270616.XAA20927@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 23:16:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/ratfor - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 23:16:37 PDT ports/lang/ratfor - Imported sources Update of /home/ncvs/ports/lang/ratfor In directory freefall.freebsd.org:/c/tmp/ratfor Log Message: The Ratfor FORTRAN pre-processor described in the "SOFTWARE TOOLS" book. Status: Vendor Tag: OBRIEN Release Tags: ratfor_1985_06 N ports/lang/ratfor/Makefile N ports/lang/ratfor/files/md5 N ports/lang/ratfor/pkg/DESCR N ports/lang/ratfor/pkg/PLIST N ports/lang/ratfor/pkg/COMMENT N ports/lang/ratfor/patches/patch-rat4.c No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 23:17:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B46C737B424; Sat, 26 Aug 2000 23:17:13 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA21006; Sat, 26 Aug 2000 23:17:13 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200008270617.XAA21006@freefall.freebsd.org> From: "David E. O'Brien" <obrien@FreeBSD.org> Date: Sat, 26 Aug 2000 23:17:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/08/26 23:17:13 PDT Modified files: lang Makefile Log: Turn Ratfor loose on the world. Revision Changes Path 1.184 +2 -1 ports/lang/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Aug 26 23:19:45 2000 Delivered-To: cvs-all@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 87A0637B43E; Sat, 26 Aug 2000 23:19:42 -0700 (PDT) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id XAA46538; Sat, 26 Aug 2000 23:19:36 -0700 (PDT) (envelope-from jkh@winston.osd.bsdi.com) To: "David E. O'Brien" <obrien@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/lang Makefile In-Reply-To: Message from "David E. O'Brien" <obrien@FreeBSD.org> of "Sat, 26 Aug 2000 23:17:13 PDT." <200008270617.XAA21006@freefall.freebsd.org> Date: Sat, 26 Aug 2000 23:19:36 -0700 Message-ID: <46534.967357176@winston.osd.bsdi.com> From: Jordan Hubbard <jkh@winston.osd.bsdi.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Turn Ratfor loose on the world. Great, now I can use all that software tools group code I have been saving. :) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message