Ethereal-dev: [ethereal-dev] ethereal 0.3.16 on FreeBSD-current shows funny characters...

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Andreas Klemm <andreas@xxxxxxxxxxxxx>
Date: Tue, 22 Sep 1998 00:01:06 +0200
Hi !

I'm unable to scan the traffic on the ISDN device /dev/isppp0.
Ethernet works ...

In the attachement bpf.h just for the case you need it and
the file xxx which is from a scan of the ISDN interface
(UUCP over IP).

I have no idea what's going wrong when scanning the WAN interface.

Thanks

	Andreas ///


-- 
Andreas Klemm                                http://www.FreeBSD.ORG/~andreas
     What gives you 90% more speed, for example, in kernel compilation ?
          http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html
             "NT = Not Today" (Maggie Biggs)      ``powered by FreeBSD SMP''
/*
 * Copyright (c) 1990, 1991, 1993
 *	The Regents of the University of California.  All rights reserved.
 *
 * This code is derived from the Stanford/CMU enet packet filter,
 * (net/enet.c) distributed as part of 4.3BSD, and code contributed
 * to Berkeley by Steven McCanne and Van Jacobson both of Lawrence
 * Berkeley Laboratory.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *	This product includes software developed by the University of
 *	California, Berkeley and its contributors.
 * 4. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 *      @(#)bpf.h	8.1 (Berkeley) 6/10/93
 *	@(#)bpf.h	1.34 (LBL)     6/16/96
 *
 * $Id: bpf.h,v 1.15 1998/09/15 19:35:37 fenner Exp $
 */

#ifndef _NET_BPF_H_
#define _NET_BPF_H_

/* BSD style release date */
#define	BPF_RELEASE 199606

typedef	int32_t	  bpf_int32;
typedef	u_int32_t bpf_u_int32;

/*
 * Alignment macros.  BPF_WORDALIGN rounds up to the next
 * even multiple of BPF_ALIGNMENT.
 */
#define BPF_ALIGNMENT sizeof(bpf_int32)
#define BPF_WORDALIGN(x) (((x)+(BPF_ALIGNMENT-1))&~(BPF_ALIGNMENT-1))

#define BPF_MAXINSNS 512
#define BPF_MAXBUFSIZE 0x8000
#define BPF_MINBUFSIZE 32

/*
 *  Structure for BIOCSETF.
 */
struct bpf_program {
	u_int bf_len;
	struct bpf_insn *bf_insns;
};

/*
 * Struct returned by BIOCGSTATS.
 */
struct bpf_stat {
	u_int bs_recv;		/* number of packets received */
	u_int bs_drop;		/* number of packets dropped */
};

/*
 * Struct return by BIOCVERSION.  This represents the version number of
 * the filter language described by the instruction encodings below.
 * bpf understands a program iff kernel_major == filter_major &&
 * kernel_minor >= filter_minor, that is, if the value returned by the
 * running kernel has the same major number and a minor number equal
 * equal to or less than the filter being downloaded.  Otherwise, the
 * results are undefined, meaning an error may be returned or packets
 * may be accepted haphazardly.
 * It has nothing to do with the source code version.
 */
struct bpf_version {
	u_short bv_major;
	u_short bv_minor;
};
/* Current version number of filter architecture. */
#define BPF_MAJOR_VERSION 1
#define BPF_MINOR_VERSION 1

#define	BIOCGBLEN	_IOR('B',102, u_int)
#define	BIOCSBLEN	_IOWR('B',102, u_int)
#define	BIOCSETF	_IOW('B',103, struct bpf_program)
#define	BIOCFLUSH	_IO('B',104)
#define BIOCPROMISC	_IO('B',105)
#define	BIOCGDLT	_IOR('B',106, u_int)
#define BIOCGETIF	_IOR('B',107, struct ifreq)
#define BIOCSETIF	_IOW('B',108, struct ifreq)
#define BIOCSRTIMEOUT	_IOW('B',109, struct timeval)
#define BIOCGRTIMEOUT	_IOR('B',110, struct timeval)
#define BIOCGSTATS	_IOR('B',111, struct bpf_stat)
#define BIOCIMMEDIATE	_IOW('B',112, u_int)
#define BIOCVERSION	_IOR('B',113, struct bpf_version)
#define BIOCGRSIG	_IOR('B',114, u_int)
#define BIOCSRSIG	_IOW('B',115, u_int)

/*
 * Structure prepended to each packet.
 */
struct bpf_hdr {
	struct timeval	bh_tstamp;	/* time stamp */
	bpf_u_int32	bh_caplen;	/* length of captured portion */
	bpf_u_int32	bh_datalen;	/* original length of packet */
	u_short		bh_hdrlen;	/* length of bpf header (this struct
					   plus alignment padding) */
};
/*
 * Because the structure above is not a multiple of 4 bytes, some compilers
 * will insist on inserting padding; hence, sizeof(struct bpf_hdr) won't work.
 * Only the kernel needs to know about it; applications use bh_hdrlen.
 */
#ifdef KERNEL
#define	SIZEOF_BPF_HDR	(sizeof(struct bpf_hdr) <= 20 ? 18 : \
    sizeof(struct bpf_hdr))
#endif

/*
 * Data-link level type codes.
 */
#define DLT_NULL	0	/* no link-layer encapsulation */
#define DLT_EN10MB	1	/* Ethernet (10Mb) */
#define DLT_EN3MB	2	/* Experimental Ethernet (3Mb) */
#define DLT_AX25	3	/* Amateur Radio AX.25 */
#define DLT_PRONET	4	/* Proteon ProNET Token Ring */
#define DLT_CHAOS	5	/* Chaos */
#define DLT_IEEE802	6	/* IEEE 802 Networks */
#define DLT_ARCNET	7	/* ARCNET */
#define DLT_SLIP	8	/* Serial Line IP */
#define DLT_PPP		9	/* Point-to-point Protocol */
#define DLT_FDDI	10	/* FDDI */
#define DLT_ATM_RFC1483	11	/* LLC/SNAP encapsulated atm */
#define DLT_RAW		12	/* raw IP */
#define DLT_SLIP_BSDOS	13	/* BSD/OS Serial Line IP */
#define DLT_PPP_BSDOS	14	/* BSD/OS Point-to-point Protocol */

/*
 * The instruction encodings.
 */
/* instruction classes */
#define BPF_CLASS(code) ((code) & 0x07)
#define		BPF_LD		0x00
#define		BPF_LDX		0x01
#define		BPF_ST		0x02
#define		BPF_STX		0x03
#define		BPF_ALU		0x04
#define		BPF_JMP		0x05
#define		BPF_RET		0x06
#define		BPF_MISC	0x07

/* ld/ldx fields */
#define BPF_SIZE(code)	((code) & 0x18)
#define		BPF_W		0x00
#define		BPF_H		0x08
#define		BPF_B		0x10
#define BPF_MODE(code)	((code) & 0xe0)
#define		BPF_IMM 	0x00
#define		BPF_ABS		0x20
#define		BPF_IND		0x40
#define		BPF_MEM		0x60
#define		BPF_LEN		0x80
#define		BPF_MSH		0xa0

/* alu/jmp fields */
#define BPF_OP(code)	((code) & 0xf0)
#define		BPF_ADD		0x00
#define		BPF_SUB		0x10
#define		BPF_MUL		0x20
#define		BPF_DIV		0x30
#define		BPF_OR		0x40
#define		BPF_AND		0x50
#define		BPF_LSH		0x60
#define		BPF_RSH		0x70
#define		BPF_NEG		0x80
#define		BPF_JA		0x00
#define		BPF_JEQ		0x10
#define		BPF_JGT		0x20
#define		BPF_JGE		0x30
#define		BPF_JSET	0x40
#define BPF_SRC(code)	((code) & 0x08)
#define		BPF_K		0x00
#define		BPF_X		0x08

/* ret - BPF_K and BPF_X also apply */
#define BPF_RVAL(code)	((code) & 0x18)
#define		BPF_A		0x10

/* misc */
#define BPF_MISCOP(code) ((code) & 0xf8)
#define		BPF_TAX		0x00
#define		BPF_TXA		0x80

/*
 * The instruction data structure.
 */
struct bpf_insn {
	u_short		code;
	u_char		jt;
	u_char		jf;
	bpf_u_int32	k;
};

/*
 * Macros for insn array initializers.
 */
#define BPF_STMT(code, k) { (u_short)(code), 0, 0, k }
#define BPF_JUMP(code, k, jt, jf) { (u_short)(code), jt, jf, k }

#ifdef KERNEL
int	 bpf_validate __P((struct bpf_insn *, int));
void	 bpf_tap __P((struct ifnet *, u_char *, u_int));
void	 bpf_mtap __P((struct ifnet *, struct mbuf *));
void	 bpfattach __P((struct ifnet *, u_int, u_int));
void	 bpfilterattach __P((int));
u_int	 bpf_filter __P((struct bpf_insn *, u_char *, u_int, u_int));
#endif

/*
 * Number of scratch memory words (for BPF_LD|BPF_MEM and BPF_ST).
 */
#define BPF_MEMWORDS 16

#endif
Ôò¡D8Ë6_j
ÿÀ!

P¿è18Ë6n¬
  ÿÀ!êÂ#Øu]ô	gtn-gw8Ë6–¬
ÿÀ!êô	gtn-gw8Ë6"¶
ÿÀ!

P¿è18Ë6á
ÿÀ!ëÂ#Øu]8Ë6=á


ÿÀ!ë	À#8Ë6÷ÿÀ!ìÀ#Øu]8Ë6ÿÀ!ìÀ#Øu]8Ë6}ÿÀ#pppak04	Zweckform8Ë6T"		ÿÀ#8Ë6¾"ÿ€!8Ë6É"@@ÿ!E<(ë@@sÏÂç{©ÀmŸW
Æè¹ @l&´
í8Ë6ˆ_ÿ€!¬
Âç{¡8Ë6´_ÿ€!¬
Âç{¡8Ë6ý„ÿ‚v8Ë6…ÿÀ!
‚v8Ë6לÿ€!8Ë6Ô800ÿ!E,·»@ý(ÀmŸÂç{©Wf
Sø
Æèº`"8#ã´8Ë6´9,,ÿ!E(*þ@@qÐÂç{©ÀmŸW
Æèºf
SùPDph9Ë6uæ33ÿ!E/·¼@ý(
ÀmŸÂç{©Wf
Sù
ÆèºP"8Ù}login: 9Ë6“22ÿ!E.+d@@qdÂç{©ÀmŸW
Æèºf
TPDpÙknobel9Ë6í),,ÿ!E(·½@ý(ÀmŸÂç{©Wf
T
ÆèÀP"8;“9Ë6+--ÿ!E)+š@@q3Âç{©ÀmŸW
ÆèÀf
TPDpR
9Ë6ñ’55ÿ!E1·¾@ý(ÀmŸÂç{©Wf
T
ÆèÁP"8SØPassword:9Ë6–55ÿ!E1+­@@qÂç{©ÀmŸW
ÆèÁf
T	PDpŒZweckform9Ë6±,,ÿ!E(·¿@ý(ÀmŸÂç{©Wf
T	
ÆèÊP"8;€9Ë6<²--ÿ!E)+À@@q
Âç{©ÀmŸW
ÆèÊf
T	PDp?
9Ë6ñÂ,,ÿ!E(·À@ý(
ÀmŸÂç{©Wf
T	
ÆèËP"8;9Ë6„ü	99ÿ!E5·Á@ý'ÿÀmŸÂç{©Wf
T	
ÆèËP"8GûShere=easix9Ë6¯I
==ÿ!E9,@@p¯Âç{©ÀmŸW
ÆèËf
TPDpø½Sknobel -R -N079Ë6üZ,,ÿ!E(·Â@ý(ÀmŸÂç{©Wf
T
ÆèÜP"8;a9Ë6Tß44ÿ!E0·Ã@ý(ÀmŸÂç{©Wf
T
ÆèÜP"8VƒROKN079Ë6_,,ÿ!E(,„@@pJÂç{©ÀmŸW
ÆèÜf
TPDp!9Ë6"¿66ÿ!E2·Ä@ý'ÿÀmŸÂç{©Wf
T
ÆèÜP"8‡àPaGgifet9Ë6äÀ00ÿ!E,,”@@p6Âç{©ÀmŸW
ÆèÜf
T(PDp£µUe:Ë64„,,ÿ!E(·Å@ý(ÀmŸÂç{©Wf
T(
ÆèàP"8;K<Ë6
ŒŒÿ!Eˆ-Â@@n¬Âç{©ÀmŸW
Æèàf
T(PDp‚ÊE D.00KW D.knobelN00KW andreas -CZR D.00KW 0666 andreas@xxxxxxxxxxxxx 0x651 rmail seth@xxxxxxxxx<Ë6ú	,,ÿ!E(·Æ@ý(ÀmŸÂç{©Wf
T(
Æé@P"8:ë<Ë6Ó
..ÿ!E*-Ã@@o	Âç{©ÀmŸW
Æé@f
T(PDp«¨m<Ë6¹ž,,ÿ!E(·Ç@ý(ÀmŸÂç{©Wf
T(
ÆéBP"8:é<Ë6÷$//ÿ!E+·È@ý(ÀmŸÂç{©Wf
T(
ÆéBP"8õ„EY<Ë6P(@@ÿ!E<-Ä@@nöÂç{©ÀmŸW
ÆéBf
T+PDp¶$1617<Ë6ÊYààÿ!EÜ-Å@@iUÂç{©ÀmŸW
ÆéVf
T+PDp|‹From andreas@xxxxxxxxxxxxx  Mon Sep 21 23:48:56 1998
Received: (from andreas@localhost)
	by klemm.gtn.com (8.9.1/8.9.1) id XAA01868
	for seth@xxxxxxxxxx; Mon, 21 Sep 1998 23:48:56 +0200 (CEST)
	(envelope-from andreas)
Message-ID: <19980921234856.A1291@xxxxxxxxxxxxx>
Date: Mon, 21 Sep 1998 23:48:56 +0200
From: Andreas Klemm <andreas@xxxxxxxxxxxxx>
To: Seth Leigh <seth@xxxxxxxxxx>
Subject: Re: Can't compile XFree86 in elf ...
References: <3.0.5.32.19980921101051.007df210@xxxxxxxxxxxxxxxxxx> <199809201453.SAA10663@xxxxxxxxxxxxx> <199809201453.SAA10663@xxxxxxxxxxxxx> <19980920220709.A15827@xxxxxxxxxxxxx> <3.0.5.32.19980921101051.007df210@xxxxxxxxxxxxxxxxxx> <19980921212425.A3537@xxxxxxxxxxxxx> <3.0.5.32.19980921170211.007e8760@xxxxxxxxxxxxxxxxxx>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 0.93.2i
In-Reply-To: <3.0.5.32.19980921170211.007e8760@xxxxxxxxxxxxxxxxxx>; from Seth Leigh on Mon, Sep 21, 1998 at 05:02:11PM -0400
X-Disclaimer: A free society is one where it is safe to be unpopular
X-Operating-System: FreeBSD 3.0-BETA SMP

On Mon, Sep 21, 1998 at 05:02:11PM -0400, Seth Leigh wrote:
> Andreas,
> Thanks for the reply, instead of just leaving me hanging wondering if you
> got it.  I wish you luck with the new job.

No problem ;-) BTW, it's

	http://www.telemation.de/


-- 
Andreas Klemm                                http://www.FreeBSD.ORG/~andreas
     What gives you 90% more speed, for example, in kernel<Ë6®>,,ÿ!E(·É@ý(ÀmŸÂç{©Wf
T+
ÆéVP"8:Ò<Ë6K”,,ÿ!E(·Ê@ý(ÀmŸÂç{©Wf
T+
Æï
P"85<Ë6û”ÉÉÿ!EÅ-Æ@@nkÂç{©ÀmŸW
Æï
f
T+PDpÀ´ compilation ?
          http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html
             "NT = Not Today" (Maggie Biggs)      ``powered by FreeBSD SMP''
<Ë6é,,ÿ!E(·Ë@ý(ÀmŸÂç{©Wf
T+
Æï§P"84<Ë6ð×//ÿ!E+·Ì@ý'þÀmŸÂç{©Wf
T+
Æï§P"8ñCY<Ë6ݓ
..ÿ!E*-Ç@@oÂç{©ÀmŸW
Æï§f
T.PDpÊ;H<Ë6,//ÿ!E+·Í@ý'ýÀmŸÂç{©Wf
T.
Æï©P"8ì"HN<Ë6ˆ_,,ÿ!E(-È@@oÂç{©ÀmŸW
Æï©f
T1PDpA<Ë65윜ÿ!E˜·Î@ý'ÀmŸÂç{©Wf
T1
Æï©P"89E D.9J6Z D.easixN9J6Z daemon -CR D.9J6Z 0666 owner-cvs-committers@xxxxxxxxxxx 0x627 rmail andreas@xxxxxxxxxxxxx<Ë6ûô//ÿ!E+-É@@oÂç{©ÀmŸW
Æï©f
T¡PDpÌlEY=Ë6É@@ÿ!E<·Ï@ý'êÀmŸÂç{©Wf
T¡
Æï¬P"8Ë1575=Ë6î*,,ÿ!E(-Ê@@oÂç{©ÀmŸW
Æï¬f
TµPDpº=Ë6'ààÿ!EÜ·Ð@ý"IÀmŸÂç{©Wf
Tµ
Æï¬P"8–^From owner-cvs-committers@xxxxxxxxxxx  Mon Sep 21 23:41:55 1998
Received: from smyrno.sol.net (mail@xxxxxxxxxxxxxx [206.55.64.117])
	by news1.gtn.com (8.8.6/8.8.6) with ESMTP id XAA27912
	for <andreas@xxxxxxxxxxxxx>; Mon, 21 Sep 1998 23:41:53 +0200 (MET DST)
Received: from hub.freebsd.org (hub.FreeBSD.ORG [204.216.27.18])
	by smyrno.sol.net (8.8.8/8.8.8/SNNS-1.02) with ESMTP id QAA14402;
	Mon, 21 Sep 1998 16:37:38 -0500 (CDT)
Received: (from majordom@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) id OAA11608;
          Mon, 21 Sep 1998 14:29:55 -0700 (PDT)
          (envelope-from owner-cvs-committers@xxxxxxxxxxx)
Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA11399;
          Mon, 21 Sep 1998 14:28:48 -0700 (PDT)
          (envelope-from steve@xxxxxxxxxxx)
From: Steve Price <steve@xxxxxxxxxxx>
Received: (from steve@localhost)
	by freefall.freebsd.org (8.8.8/8.8.5) id OAA01025;
	Mon, 21 Sep 1998 14:28:18 -0700 (PDT)
Date: Mon, 21 Sep 1998 14:28:18 -0700 (PDT)
Message-Id: <199809212128.OAA01025@xxxxxxxxxxxxxxxxxxxx>
To: cvs-committers@xxxxxxxxxxx, cvs-all@xxxxxxxxxxx
Subject: cvs commit: ports/graphics/xpm Makefile
Sender: owner-cvs-committers@xxxxxxxxxxx
Precedence: bulk
X-Loop: FreeBSD.ORG

steve       1998/09/21 14:28:18 PDT

  Modified files:
    graphics/xpm         Makefile 
  Log:
  Be sure to install the libXpm.so link in an a.out world=Ë6™wŸŸÿ!E›·Ñ@ý'‰ÀmŸÂç{©Wf
Zi
Æï¬P"8ìL.
  
  Noticed by:	Satoshi Asami
  
  Revision  Changes    Path
  1.18      +4 -1      ports/graphics/xpm/Makefile
=Ë6ê3//ÿ!E+-Ë@@oÂç{©ÀmŸW
Æï¬f
ZÜPDpÈ.CY=Ë6©5,,ÿ!E(·Ò@ý'ûÀmŸÂç{©Wf
ZÜ
Æï¯P"8-È=Ë6ýùœœÿ!E˜·Ó@ý'ŠÀmŸÂç{©Wf
ZÜ
Æï¯P"8`¯E D.9J72 D.easixN9J72 daemon -CR D.9J72 0666 owner-cvs-committers@xxxxxxxxxxx 0x616 rmail andreas@xxxxxxxxxxxxx=Ë6?	//ÿ!E+-Ì@@nÿÂç{©ÀmŸW
Æï¯f
[LPDpÅ»EY=Ë6t@@ÿ!E<·Ô@ý'åÀmŸÂç{©Wf
[L
Æï²P"8ÆË1558=Ë6
E,,ÿ!E(-Í@@oÂç{©ÀmŸW
Æï²f
[`PDp	=Ë6k¥
ààÿ!EÜ·Õ@ý"DÀmŸÂç{©Wf
[`
Æï²P"8ìhFrom owner-cvs-committers@xxxxxxxxxxx  Mon Sep 21 23:43:19 1998
Received: from smyrno.sol.net (mail@xxxxxxxxxxxxxx [206.55.64.117])
	by news1.gtn.com (8.8.6/8.8.6) with ESMTP id XAA27966
	for <andreas@xxxxxxxxxxxxx>; Mon, 21 Sep 1998 23:43:14 +0200 (MET DST)
Received: from hub.freebsd.org (hub.FreeBSD.ORG [204.216.27.18])
	by smyrno.sol.net (8.8.8/8.8.8/SNNS-1.02) with ESMTP id QAA14496;
	Mon, 21 Sep 1998 16:39:03 -0500 (CDT)
Received: (from majordom@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) id OAA11966;
          Mon, 21 Sep 1998 14:31:21 -0700 (PDT)
          (envelope-from owner-cvs-committers@xxxxxxxxxxx)
Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA11620;
          Mon, 21 Sep 1998 14:29:57 -0700 (PDT)
          (envelope-from steve@xxxxxxxxxxx)
From: Steve Price <steve@xxxxxxxxxxx>
Received: (from steve@localhost)
	by freefall.freebsd.org (8.8.8/8.8.5) id OAA01139;
	Mon, 21 Sep 1998 14:29:24 -0700 (PDT)
Date: Mon, 21 Sep 1998 14:29:24 -0700 (PDT)
Message-Id: <199809212129.OAA01139@xxxxxxxxxxxxxxxxxxxx>
To: cvs-committers@xxxxxxxxxxx, cvs-all@xxxxxxxxxxx
Subject: cvs commit: ports/x11-toolkits/Xaw3d Makefile
Sender: owner-cvs-committers@xxxxxxxxxxx
Precedence: bulk
X-Loop: FreeBSD.ORG

steve       1998/09/21 14:29:24 PDT

  Modified files:
    x11-toolkits/Xaw3d   Makefile 
  Log:
  Be sure to install the libXaw3d.so link in an a.o=Ë6 í
ŽŽÿ!EŠ·Ö@ý'•ÀmŸÂç{©Wf
a
Æï²P"85
ut world.
  
  Revision  Changes    Path
  1.19      +4 -1      ports/x11-toolkits/Xaw3d/Makefile
=Ë6YR,,ÿ!E(-Î@@oÂç{©ÀmŸW
Æï²f
avPDpó=Ë6àî//ÿ!E+-Ï@@nüÂç{©ÀmŸW
Æï²f
avPDpÁŽCY=Ë6¸
,,ÿ!E(·×@ý'öÀmŸÂç{©Wf
av
ÆïµP"8'(=Ë6ßV
ÿ!E™·Ø@ý'„ÀmŸÂç{©Wf
av
ÆïµP"8÷áE D.9J75 D.easixN9J75 daemon -CR D.9J75 0666 owner-freebsd-hackers@xxxxxxxxxxx 0xaa7 rmail andreas@xxxxxxxxxxxxx=Ë6Lf
//ÿ!E+-Ð@@nûÂç{©ÀmŸW
Æïµf
açPDp¿EY=Ë6Ê×
@@ÿ!E<·Ù@ý'àÀmŸÂç{©Wf
aç
Æï¸P"8Â)2727=Ë6_,,ÿ!E(-Ñ@@nýÂç{©ÀmŸW
Æï¸f
aûPDph>Ë6Twààÿ!EÜ·Ú@ý"?ÀmŸÂç{©Wf
aû
Æï¸P"8©©From owner-freebsd-hackers@xxxxxxxxxxx  Mon Sep 21 23:43:59 1998
Received: from smyrno.sol.net (mail@xxxxxxxxxxxxxx [206.55.64.117])
	by news1.gtn.com (8.8.6/8.8.6) with ESMTP id XAA28159
	for <andreas@xxxxxxxxxxxxx>; Mon, 21 Sep 1998 23:43:56 +0200 (MET DST)
Received: from hub.freebsd.org (hub.FreeBSD.ORG [204.216.27.18])
	by smyrno.sol.net (8.8.8/8.8.8/SNNS-1.02) with ESMTP id QAA14729;
	Mon, 21 Sep 1998 16:43:36 -0500 (CDT)
Received: from localhost (daemon@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) with SMTP id MAA21169;
          Mon, 21 Sep 1998 12:53:41 -0700 (PDT)
          (envelope-from owner-freebsd-hackers)
Received: by hub.freebsd.org (bulk_mailer v1.6); Mon, 21 Sep 1998 12:46:48 -0700
Received: (from majordom@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) id MAA19497
          for freebsd-hackers-outgoing; Mon, 21 Sep 1998 12:46:05 -0700 (PDT)
          (envelope-from owner-freebsd-hackers@xxxxxxxxxxx)
Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA19445
          for <hackers@xxxxxxxxxxx>; Mon, 21 Sep 1998 12:45:36 -0700 (PDT)
          (envelope-from mike@xxxxxxxxxxxxxxx)
Received: from dingo.cdrom.com (localhost.cdrom.com [127.0.0.1])
	by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id MAA00914;
	Mon, 21 Sep 1998 12:50:00 -0700 (PDT)
	(envelope-from mike@xxxxxxxxxxxxxxx)
Message-Id: <199809211950.MAA00914@xxxxxxxxxxxxxxx>
X-Maile>Ë6Ö*,,ÿ!E(-Ò@@nüÂç{©ÀmŸW
Æï¸f
g¯PDpþ³>Ë6Pûÿ!E·Û@ý"ÿÀmŸÂç{©Wf
g¯
Æï¸P"8Ž¾r: exmh version 2.0.2 2/24/98
To: Bill Fumerola <billf@xxxxxxxxxxxxxx>
cc: Mike Smith <mike@xxxxxxxxxxxx>, hackers@xxxxxxxxxxx
Subject: Re: Microsoft Windows NT Terminal Server 
In-reply-to: Your message of "Mon, 21 Sep 1998 10:49:12 EDT."
             <Pine.HPP.3.96.980921104749.22998A-100000@xxxxxxxxxxxxxxxxxxxxx> 
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Date: Mon, 21 Sep 1998 12:50:00 -0700
From: Mike Smith <mike@xxxxxxxxxxxx>
Sender: owner-freebsd-hackers@xxxxxxxxxxx
X-Loop: FreeBSD.ORG

> On Mon, 21 Sep 1998, Mike Smith wrote:
> 
> > I'm in the testing phase for a port of the Citrix MetaFrame (nee ICA,
> > nee WinFrame) client (using the Linux binary), and I need someone with a
> > working Winframe/ Picasso/NT Terminal Server network to test it out.
> 
> I have a WinFrame 1.7 machine, I will be upgrading soon.

Anyone wants to poke at it:  

 http://www.freebsd.org/~msmith/citrix_ica.tar.gz
-- 
\\  Sometimes you're ahead,       \\  Mike Smith
\\  sometimes you're behind.      \\  mike@xxxxxxxxxxxx
\\  The race is long, and in the  \\  msmith@xxxxxxxxxxx
\\  end it's only with yourself.  \\  msmith@xxxxxxxxx



To Unsubscribe: send mail to majordomo@xxxxxxxxxxx
with "unsubscribe freebsd-hackers" in the body of the message
>Ë6ãë//ÿ!E+-Ó@@nøÂç{©ÀmŸW
Æï¸f
l¢PDp¶\CY>Ë6š,,ÿ!E(·Ü@ý'ñÀmŸÂç{©Wf
l¢
Æï»P"8ö>Ë6IXÿ!E™·Ý@ý'ÀmŸÂç{©Wf
l¢
Æï»P"8ªE D.9J78 D.easixN9J78 daemon -CR D.9J78 0666 owner-freebsd-hackers@xxxxxxxxxxx 0xb49 rmail andreas@xxxxxxxxxxxxx>Ë6¥g//ÿ!E+-Ô@@n÷Âç{©ÀmŸW
Æï»f
mPDp³èEY>Ë6þÌ@@ÿ!E<·Þ@ý'ÛÀmŸÂç{©Wf
m
Æï¾P"8°ô2889>Ë6$E,,ÿ!E(-Õ@@nùÂç{©ÀmŸW
Æï¾f
m'PDpù5>Ë6Zé	ààÿ!EÜ·ß@ý":ÀmŸÂç{©Wf
m'
Æï¾P"8›ÊFrom owner-freebsd-hackers@xxxxxxxxxxx  Mon Sep 21 23:44:04 1998
Received: from smyrno.sol.net (mail@xxxxxxxxxxxxxx [206.55.64.117])
	by news1.gtn.com (8.8.6/8.8.6) with ESMTP id XAA28166
	for <andreas@xxxxxxxxxxxxx>; Mon, 21 Sep 1998 23:44:00 +0200 (MET DST)
Received: from hub.freebsd.org (hub.FreeBSD.ORG [204.216.27.18])
	by smyrno.sol.net (8.8.8/8.8.8/SNNS-1.02) with ESMTP id QAA14738;
	Mon, 21 Sep 1998 16:43:54 -0500 (CDT)
Received: from localhost (daemon@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) with SMTP id NAA23344;
          Mon, 21 Sep 1998 13:04:12 -0700 (PDT)
          (envelope-from owner-freebsd-hackers)
Received: by hub.freebsd.org (bulk_mailer v1.6); Mon, 21 Sep 1998 13:00:40 -0700
Received: (from majordom@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) id NAA22682
          for freebsd-hackers-outgoing; Mon, 21 Sep 1998 13:00:39 -0700 (PDT)
          (envelope-from owner-freebsd-hackers@xxxxxxxxxxx)
Received: from ceia.nordier.com (m1-24-dbn.dial-up.net [196.34.155.24])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA22659
          for <freebsd-hackers@xxxxxxxxxxx>; Mon, 21 Sep 1998 13:00:29 -0700 (PDT)
          (envelope-from rnordier@xxxxxxxxxxx)
Received: (from rnordier@localhost) by ceia.nordier.com (8.8.7/8.6.12) id VAA01318; Mon, 21 Sep 1998 21:52:27 +0200 (SAT)
From: Robert Nordier <rnordier@xxxxxxxxxxx>
Message-Id: <199809211952.VAA01318@xxxxxxxxxxxxxxxx>
Subject: Re: PC memory usa>Ë6jR,,ÿ!E(-Ö@@nøÂç{©ÀmŸW
Æï¾f
rÛPDpó>Ë6Ù»ÁÁÿ!E½·à@ý"XÀmŸÂç{©Wf
rÛ
Æï¾P"8rge (what is PIC?)
In-Reply-To: <Pine.NEB.3.96.980921091656.29625B-100000@xxxxxxxxxxxxxxxxxx> from Charles Youse at "Sep 21, 98 09:18:06 am"
To: cyouse@xxxxxxxxxxxxxxxxxx (Charles Youse)
Date: Mon, 21 Sep 1998 21:51:18 +0200 (SAT)
Cc: rnordier@xxxxxxxxxxx, bf20761@xxxxxxxxxxxxxx, freebsd-hackers@xxxxxxxxxxx
X-Mailer: ELM [version 2.4ME+ PL31 (25)]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-freebsd-hackers@xxxxxxxxxxx
X-Loop: FreeBSD.ORG

Charles Youse wrote:

> > Writing truly IP-independent i386 assembly code by hand (and the initial
> > portion is pure assembly code), requires completely unnatural practices.
> 
> Actually, I'm not even sure that it's possible.  i86-derived architectures
> have relied on segmentation to provide such position independence.

Well, maybe "not possible" is rather strong, though I'd go along with
"not particularly idiomatic":

	main:   call .+0x5
	        popl %ebp
	        subl $0x5,%ebp
	        pushl $msg.1-msg
	        leal msg-main(%ebp),%eax
	        pushl %eax
	        pushl $0x1
	        movl $0x4,%eax
	        call .+0x5
	        lcall $0x7,$0x0
	        pushl $0x0
	        movl $0x1,%eax
	        call .+0x5
	        lcall $0x7,$0x0
	msg:    .ascii "hello, world!\n"
	msg.1:

-- 
Robert Nordier

To Unsubscribe: send mail to majordomo@xxxxxxxxxxx
with "unsubscribe freebsd-hackers" in the body of the message
>Ë6Ý×
//ÿ!E+-×@@nôÂç{©ÀmŸW
Æï¾f
xpPDpªˆCY>Ë6aÚ,,ÿ!E(·á@ý'ìÀmŸÂç{©Wf
xp
ÆïÁP"8">Ë6•;œœÿ!E˜·â@ý'{ÀmŸÂç{©Wf
xp
ÆïÁP"8òöE D.9J7B D.easixN9J7B daemon -CR D.9J7B 0666 owner-cvs-committers@xxxxxxxxxxx 0x63f rmail andreas@xxxxxxxxxxxxx?Ë6µ//ÿ!E+-Ø@@nóÂç{©ÀmŸW
ÆïÁf
xàPDp¨EY?Ë6Žm@@ÿ!E<·ã@ý'ÖÀmŸÂç{©Wf
xà
ÆïÄP"8¥$1599?Ë6ý*,,ÿ!E(-Ù@@nõÂç{©ÀmŸW
ÆïÄf
xôPDpíb?Ë6qààÿ!EÜ·ä@ý"5ÀmŸÂç{©Wf
xô
ÆïÄP"8ëFrom owner-cvs-committers@xxxxxxxxxxx  Mon Sep 21 23:44:54 1998
Received: from smyrno.sol.net (mail@xxxxxxxxxxxxxx [206.55.64.117])
	by news1.gtn.com (8.8.6/8.8.6) with ESMTP id XAA28211
	for <andreas@xxxxxxxxxxxxx>; Mon, 21 Sep 1998 23:44:51 +0200 (MET DST)
Received: from hub.freebsd.org (hub.FreeBSD.ORG [204.216.27.18])
	by smyrno.sol.net (8.8.8/8.8.8/SNNS-1.02) with ESMTP id QAA14514;
	Mon, 21 Sep 1998 16:39:42 -0500 (CDT)
Received: (from majordom@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) id OAA12329;
          Mon, 21 Sep 1998 14:33:39 -0700 (PDT)
          (envelope-from owner-cvs-committers@xxxxxxxxxxx)
Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA12042;
          Mon, 21 Sep 1998 14:31:43 -0700 (PDT)
          (envelope-from steve@xxxxxxxxxxx)
From: Steve Price <steve@xxxxxxxxxxx>
Received: (from steve@localhost)
	by freefall.freebsd.org (8.8.8/8.8.5) id OAA01256;
	Mon, 21 Sep 1998 14:31:08 -0700 (PDT)
Date: Mon, 21 Sep 1998 14:31:08 -0700 (PDT)
Message-Id: <199809212131.OAA01256@xxxxxxxxxxxxxxxxxxxx>
To: cvs-committers@xxxxxxxxxxx, cvs-all@xxxxxxxxxxx
Subject: cvs commit: ports/x11-toolkits/xview-config/patches patch-ae
Sender: owner-cvs-committers@xxxxxxxxxxx
Precedence: bulk
X-Loop: FreeBSD.ORG

steve       1998/09/21 14:31:08 PDT

  Modified files:
    x11-toolkits/xview-config/patches patch-ae 
  Log:
  Only major numbers ar?Ë6HÍ··ÿ!E³·å@ý']ÀmŸÂç{©Wf
~¨
ÆïÄP"8¹te allowed for ELF shared libraries.
  
  Revision  Changes    Path
  1.2       +19 -2     ports/x11-toolkits/xview-config/patches/patch-ae
?Ë6<û//ÿ!E+-Ú@@nñÂç{©ÀmŸW
ÆïÄf
3PDp£¿CY?Ë6fvœœÿ!E˜·æ@ý'wÀmŸÂç{©Wf
3
ÆïÇP"8ùE D.9J7E D.easixN9J7E daemon -CR D.9J7E 0666 owner-cvs-committers@xxxxxxxxxxx 0x5e1 rmail andreas@xxxxxxxxxxxxx?Ë63á//ÿ!E+-Û@@nðÂç{©ÀmŸW
ÆïÇf
£PDp¡LEY?Ë6vI@@ÿ!E<·ç@ý'ÒÀmŸÂç{©Wf
£
ÆïÊP"8§_1505?Ë6ÐE,,ÿ!E(-Ü@@nòÂç{©ÀmŸW
ÆïÊf
·PDpæ™?Ë60S
ààÿ!EÜ·è@ý"1ÀmŸÂç{©Wf
·
ÆïÊP"8®­From owner-cvs-committers@xxxxxxxxxxx  Mon Sep 21 23:45:20 1998
Received: from smyrno.sol.net (mail@xxxxxxxxxxxxxx [206.55.64.117])
	by news1.gtn.com (8.8.6/8.8.6) with ESMTP id XAA28209
	for <andreas@xxxxxxxxxxxxx>; Mon, 21 Sep 1998 23:44:48 +0200 (MET DST)
Received: from hub.freebsd.org (hub.FreeBSD.ORG [204.216.27.18])
	by smyrno.sol.net (8.8.8/8.8.8/SNNS-1.02) with ESMTP id QAA14427;
	Mon, 21 Sep 1998 16:38:02 -0500 (CDT)
Received: (from majordom@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) id OAA11862;
          Mon, 21 Sep 1998 14:30:50 -0700 (PDT)
          (envelope-from owner-cvs-committers@xxxxxxxxxxx)
Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA11540;
          Mon, 21 Sep 1998 14:29:33 -0700 (PDT)
          (envelope-from msmith@xxxxxxxxxxx)
From: Michael Smith <msmith@xxxxxxxxxxx>
Received: (from msmith@localhost)
	by freefall.freebsd.org (8.8.8/8.8.5) id OAA01119;
	Mon, 21 Sep 1998 14:29:00 -0700 (PDT)
Date: Mon, 21 Sep 1998 14:29:00 -0700 (PDT)
Message-Id: <199809212129.OAA01119@xxxxxxxxxxxxxxxxxxxx>
To: cvs-committers@xxxxxxxxxxx, cvs-all@xxxxxxxxxxx
Subject: cvs commit: CVSROOT modules
Sender: owner-cvs-committers@xxxxxxxxxxx
Precedence: bulk
X-Loop: FreeBSD.ORG

msmith      1998/09/21 14:29:00 PDT

  Modified files:
    .                    modules 
  Log:
    citrix_ica --> ports/net/citrix_ica
  
  Revision  Changes   ?Ë6†
YYÿ!EU·é@ý'·ÀmŸÂç{©Wf
…k
ÆïÊP"8Ät Path
  1.2388    +2 -1      CVSROOT/modules
?Ë6‘R,,ÿ!E(-Ý@@nñÂç{©ÀmŸW
ÆïÊf
…˜PDpà¸?Ë6Áá//ÿ!E+-Þ@@níÂç{©ÀmŸW
ÆïÊf
…˜PDpTCY?Ë6ïÞ,,ÿ!E(·ê@ý'ãÀmŸÂç{©Wf
…˜
ÆïÍP"8î?Ë6v2
œœÿ!E˜·ë@ý'rÀmŸÂç{©Wf
…˜
ÆïÍP"8¹E D.9J7H D.easixN9J7H daemon -CR D.9J7H 0666 owner-cvs-committers@xxxxxxxxxxx 0x878 rmail andreas@xxxxxxxxxxxxx?Ë6•A
//ÿ!E+-ß@@nìÂç{©ÀmŸW
ÆïÍf
†PDpšáEY?Ë6˜¬
@@ÿ!E<·ì@ý'ÍÀmŸÂç{©Wf
†
ÆïÐP"8™õ2168?Ë6·_,,ÿ!E(-à@@nîÂç{©ÀmŸW
ÆïÐf
†PDpà.@Ë6¯sààÿ!EÜ·í@ý",ÀmŸÂç{©Wf
†
ÆïÐP"8ÙIFrom owner-cvs-committers@xxxxxxxxxxx  Mon Sep 21 23:46:13 1998
Received: from sarip.sol.net (mail@xxxxxxxxxxxxx [169.207.30.120])
	by news1.gtn.com (8.8.6/8.8.6) with ESMTP id XAA28359
	for <andreas@xxxxxxxxxxxxx>; Mon, 21 Sep 1998 23:46:11 +0200 (MET DST)
Received: from hub.freebsd.org (hub.FreeBSD.ORG [204.216.27.18])
	by sarip.sol.net (8.8.8/8.8.8/SNNS-1.02) with ESMTP id QAA07677;
	Mon, 21 Sep 1998 16:40:02 -0500 (CDT)
Received: (from majordom@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) id OAA12242;
          Mon, 21 Sep 1998 14:33:07 -0700 (PDT)
          (envelope-from owner-cvs-committers@xxxxxxxxxxx)
Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA11912;
          Mon, 21 Sep 1998 14:30:55 -0700 (PDT)
          (envelope-from msmith@xxxxxxxxxxx)
From: Michael Smith <msmith@xxxxxxxxxxx>
Received: (from msmith@localhost)
	by freefall.freebsd.org (8.8.8/8.8.5) id OAA01213;
	Mon, 21 Sep 1998 14:30:25 -0700 (PDT)
Date: Mon, 21 Sep 1998 14:30:25 -0700 (PDT)
Message-Id: <199809212130.OAA01213@xxxxxxxxxxxxxxxxxxxx>
To: cvs-committers@xxxxxxxxxxx, cvs-all@xxxxxxxxxxx
Subject: cvs commit: ports/net/citrix_ica - Imported sources
Sender: owner-cvs-committers@xxxxxxxxxxx
Precedence: bulk
X-Loop: FreeBSD.ORG

msmith      1998/09/21 14:30:24 PDT

  ports/net/citrix_ica - Imported sources
  Update of /home/ncvs/ports/net/citrix_ica
  In directory f@Ë6÷*,,ÿ!E(-á@@níÂç{©ÀmŸW
ÆïÐf
‹ÐPDpÚz@Ë6°æððÿ!Eì·î@ý%ÀmŸÂç{©Wf
‹Ð
ÆïÐP"8‰Íreefall.freebsd.org:/d/users/msmith/citrix_ica
  
  Log Message:
  This is the Citrix MetaFrame/pICAsso/WinFrame client for Microsoft Windows
  NT Terminal Server, nee Hydra, nee Citrix WinFrame.
  
  Status:
  
  Vendor Tag:	MSMITH
  Release Tags:	v2_80
  		
  N ports/net/citrix_ica/Makefile
  I ports/net/citrix_ica/CVS
  N ports/net/citrix_ica/patches/patch-aa
  N ports/net/citrix_ica/patches/patch-ab
  N ports/net/citrix_ica/files/response
  N ports/net/citrix_ica/files/md5
  N ports/net/citrix_ica/files/wfcmgr
  N ports/net/citrix_ica/files/wfica
  N ports/net/citrix_ica/pkg/COMMENT
  N ports/net/citrix_ica/pkg/DESCR
  N ports/net/citrix_ica/pkg/PLIST
  
  No conflicts created by this import
  
@Ë6Õ//ÿ!E+-â@@néÂç{©ÀmŸW
ÆïÐf
Ž”PDp”RCY@Ë6¥lÿ!EŒ·ï@ý'zÀmŸÂç{©Wf
Ž”
ÆïÓP"85E D.9J7K D.easixN9J7K daemon -CR D.9J7K 0666 majordom@xxxxxxxxxxx 0xa4f rmail andreas@xxxxxxxxxxxxx@Ë6|//ÿ!E+-ã@@nèÂç{©ÀmŸW
ÆïÓf
ŽøPDp‘ëEY@Ë6n]@@ÿ!E<·ð@ý'ÉÀmŸÂç{©Wf
Žø
ÆïÖP"8“ù2639@Ë6IE,,ÿ!E(-ä@@nêÂç{©ÀmŸW
ÆïÖf
PDp×8@Ë67?	ààÿ!EÜ·ñ@ý"(ÀmŸÂç{©Wf

ÆïÖP"8ñkFrom majordom@xxxxxxxxxxx  Mon Sep 21 23:48:03 1998
Received: from hub.freebsd.org (hub.FreeBSD.ORG [204.216.27.18])
	by news1.gtn.com (8.8.6/8.8.6) with ESMTP id XAA28452
	for <andreas@xxxxxxxxxxxxx>; Mon, 21 Sep 1998 23:47:40 +0200 (MET DST)
Delivered-To: vmailer-chat@xxxxxxxxxxx
Received: by hub.freebsd.org (VMailer, from userid 1)
	id 9B893C55A; Mon, 21 Sep 1998 14:45:36 -0700 (PDT)
Received: (from majordom@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) id OAA14070
          for freebsd-chat-outgoing; Mon, 21 Sep 1998 14:42:42 -0700 (PDT)
          (envelope-from owner-freebsd-chat@xxxxxxxxxxx)
Received: from jason02.u.washington.edu (jason02.u.washington.edu [140.142.76.8])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA13786
          for <freebsd-chat@xxxxxxxxxxx>; Mon, 21 Sep 1998 14:41:02 -0700 (PDT)
          (envelope-from jcwells@xxxxxxxxxxxxxxxx)
Received: from saul4.u.washington.edu (root@xxxxxxxxxxxxxxxxxxxxxx [140.142.83.2])
          by jason02.u.washington.edu (8.8.4+UW97.07/8.8.4+UW98.06) with ESMTP
	  id OAA51804 for <freebsd-chat@xxxxxxxxxxx>; Mon, 21 Sep 1998 14:40:18 -0700
Received: from S8-37-26.student.washington.edu (S8-37-26.student.washington.edu [128.208.37.26])
          by saul4.u.washington.edu (8.8.4+UW97.07/8.8.4+UW98.06) with SMTP
	  id OAA17514 for <freebsd-chat@xxxxxxxxxxx>; Mon, 21 Sep 1998 14:40:17 -0700 (PDT)
Date: Mon, 21 Sep 1998 21:40:25 +0000 (GMT)
From: "Jason C. Wells" <j@Ë6™R,,ÿ!E(-å@@néÂç{©ÀmŸW
ÆïÖf
”ÀPDpф@Ë6¯–ÇÇÿ!E÷ò@ý#@ÀmŸÂç{©Wf
”À
ÆïÖP"8°œcwells@xxxxxxxxxxxxxxxx>
X-Sender: jason@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Reply-To: "Jason C. Wells" <jcwells@xxxxxxxxxxxxxxxx>
Cc: FreeBSD-chat <freebsd-chat@xxxxxxxxxxx>
Subject: Re: Network Computers 
In-Reply-To: <199809211646.JAA11265@xxxxxxxxxxxxxxxxx>
Message-ID: <Pine.BSF.4.02A.9809212136230.7981-100000@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Sender: owner-freebsd-chat@xxxxxxxxxxx
Precedence: bulk
X-Loop: FreeBSD.org

>Congratulations, you've guessed the secret handshake and you get to 
>join The NC Club.

I never realized I was delving into such a large subject.

No wonder I couldn't look at NC vendor webistes and figure out what the
heck an NC is. The break down goes like this: (?)

Xterm: No horse power display.
Diskless WS: Horspe power display with no disc.
Workstation: Horsepowered display with disc.

NC: Some variation of the above plus may included secret decoder ring for
acronyms. :)

Catchya Later,		|	UW Mechanical Engineering
Jason Wells		|	http://weber.u.washington.edu/~jcwells/


To Unsubscribe: send mail to majordomo@xxxxxxxxxxx
with "unsubscribe freebsd-chat" in the body of the message
@Ë6³È//ÿ!E+-æ@@nåÂç{©ÀmŸW
ÆïÖf
™[PDp‰…CY@Ë6‡Ð
,,ÿ!E(·ó@ý'ÚÀmŸÂç{©Wf
™[
ÆïÙP"8ï@Ë6‰y››ÿ!E—·ô@ý'jÀmŸÂç{©Wf
™[
ÆïÙP"8áE D.9J7N D.easixN9J7N daemon -CR D.9J7N 0666 owner-freebsd-ports@xxxxxxxxxxx 0xa2f rmail andreas@xxxxxxxxxxxxx@Ë6—ˆ//ÿ!E+-ç@@näÂç{©ÀmŸW
ÆïÙf
™ÊPDp‡EY@Ë6jû@@ÿ!E<·õ@ý'ÄÀmŸÂç{©Wf
™Ê
ÆïÜP"8Œ#2607AË6Æ+,,ÿ!E(-è@@næÂç{©ÀmŸW
ÆïÜf
™ÞPDpÌ`AË6YÈààÿ!EÜ·ö@ý"#ÀmŸÂç{©Wf
™Þ
ÆïÜP"8Í$From owner-freebsd-ports@xxxxxxxxxxx  Mon Sep 21 23:51:46 1998
Received: from sarip.sol.net (mail@xxxxxxxxxxxxx [169.207.30.120])
	by news1.gtn.com (8.8.6/8.8.6) with ESMTP id XAA28688
	for <andreas@xxxxxxxxxxxxx>; Mon, 21 Sep 1998 23:51:43 +0200 (MET DST)
Received: from hub.freebsd.org (hub.FreeBSD.ORG [204.216.27.18])
	by sarip.sol.net (8.8.8/8.8.8/SNNS-1.02) with ESMTP id QAA09080;
	Mon, 21 Sep 1998 16:51:21 -0500 (CDT)
Received: from localhost (daemon@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) with SMTP id MAA20013;
          Mon, 21 Sep 1998 12:48:33 -0700 (PDT)
          (envelope-from owner-freebsd-ports)
Received: by hub.freebsd.org (bulk_mailer v1.6); Mon, 21 Sep 1998 12:46:43 -0700
Received: (from majordom@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) id MAA19570
          for freebsd-ports-outgoing; Mon, 21 Sep 1998 12:46:27 -0700 (PDT)
          (envelope-from owner-freebsd-ports@xxxxxxxxxxx)
Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA19451;
          Mon, 21 Sep 1998 12:45:38 -0700 (PDT)
          (envelope-from sprice@xxxxxxxxxx)
Received: from localhost (sprice@localhost)
	by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id OAA24686;
	Mon, 21 Sep 1998 14:44:31 -0500 (CDT)
Date: Mon, 21 Sep 1998 14:44:30 -0500 (CDT)
From: Steve Price <sprice@xxxxxxxxxx>
To: Mark Murray <mark@xxxxxxxxxx>
cc: ports@xxxxxxxxxxx, current@xxxxxxxxxxx
AË6±§§ÿ!E£·÷@ý#[ÀmŸÂç{©Wf
Ÿ’
ÆïÜP"8Subject: Re: Patch to build XFree86 w/ Krb4 in an ELF world 
In-Reply-To: <199809211917.VAA00798@xxxxxxxxxxxxxxxxx>
Message-ID: <Pine.OSF.4.02.9809211437240.750-100000@xxxxxxxxxxxxxx>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Sender: owner-freebsd-ports@xxxxxxxxxxx
X-Loop: FreeBSD.org

On Mon, 21 Sep 1998, Mark Murray wrote:

[...]
@@ -250,7 +258,11 @@
 answ=NO
 cpkb=NO
 if [ $answ = YES ]; then
-    LIBKRB=/usr/lib/libkrb.a
+    if [ $ELF = yes ]; then
+      LIBKRB=/usr/lib/libkrb.a
+    else
+      LIBKRB=/usr/lib/aout/libkrb.a
+    fi
     K4PATCH=$FILESDIR/kerberos4.diffs
     K4XDM="$FILESDIR/krb4auth.c $FILESDIR/krb4auth.h"
     XDMDIR=$WRKDIR/xc/programs/xdm/
[...]

How about something along these lines:

if [ $ELF = yes ]; then
  LIBKRB=/usr/lib/libkrb.a
elif [ -d /usr/lib/aout ]; then
  LIBKRB=/usr/lib/aout/libkrb.a
else
  LIBKRB=/usr/lib/libkrb.a
fi

I don't know that this one matters, but it does catch the
corner case where world is still a.out and /usr/lib/aout
doesn't exist yet.

Steve


To Unsubscribe: send mail to majordomo@xxxxxxxxxxx
with "unsubscribe freebsd-ports" in the body of the message
AË68,,ÿ!E(-é@@nåÂç{©ÀmŸW
ÆïÜf
¤
PDpÂ1AË6PG//ÿ!E+-ê@@náÂç{©ÀmŸW
ÆïÜf
¤
PDp~ÍCYAË6%Ø,,ÿ!E(·ø@ý'ÕÀmŸÂç{©Wf
¤
ÆïßP"8äfAË6E'œœÿ!E˜·ù@ý'dÀmŸÂç{©Wf
¤
ÆïßP"8À•E D.9J7Q D.easixN9J7Q daemon -CR D.9J7Q 0666 owner-freebsd-ports@xxxxxxxxxxx 0x1734 rmail andreas@xxxxxxxxxxxxxAË6c6//ÿ!E+-ë@@nàÂç{©ÀmŸW
Æïßf
¤}PDp|ZEYAË6º¼@@ÿ!E<·ú@ý'¿ÀmŸÂç{©Wf
¤}
ÆïâP"8zn5940AË6œR,,ÿ!E(-ì@@nâÂç{©ÀmŸW
Æïâf
¤‘PDpÁ§AË6Õøààÿ!EÜ·û@ý"ÀmŸÂç{©Wf
¤‘
ÆïâP"8Œ/From owner-freebsd-ports@xxxxxxxxxxx  Mon Sep 21 23:52:24 1998
Received: from sarip.sol.net (mail@xxxxxxxxxxxxx [169.207.30.120])
	by news1.gtn.com (8.8.6/8.8.6) with ESMTP id XAA28694
	for <andreas@xxxxxxxxxxxxx>; Mon, 21 Sep 1998 23:52:04 +0200 (MET DST)
Received: from hub.freebsd.org (hub.FreeBSD.ORG [204.216.27.18])
	by sarip.sol.net (8.8.8/8.8.8/SNNS-1.02) with ESMTP id QAA09016;
	Mon, 21 Sep 1998 16:50:55 -0500 (CDT)
Received: from localhost (daemon@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) with SMTP id MAA18823;
          Mon, 21 Sep 1998 12:42:09 -0700 (PDT)
          (envelope-from owner-freebsd-ports)
Received: by hub.freebsd.org (bulk_mailer v1.6); Mon, 21 Sep 1998 12:40:44 -0700
Received: (from majordom@localhost)
          by hub.freebsd.org (8.8.8/8.8.8) id MAA18568
          for freebsd-ports-outgoing; Mon, 21 Sep 1998 12:40:39 -0700 (PDT)
          (envelope-from owner-freebsd-ports@xxxxxxxxxxx)
Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA18548
          for <freebsd-ports@xxxxxxxxxxx>; Mon, 21 Sep 1998 12:40:29 -0700 (PDT)
          (envelope-from gnats@xxxxxxxxxxx)
Received: (from gnats@localhost)
	by freefall.freebsd.org (8.8.8/8.8.5) id MAA03108;
	Mon, 21 Sep 1998 12:40:02 -0700 (PDT)
Received: from post.mail.demon.net (post-12.mail.demon.net [194.217.242.41])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP idAË6Õ_,,ÿ!E(-í@@náÂç{©ÀmŸW
Æïâf
ªEPDp»óAË6“Ûààÿ!EÜ·ü@ý"ÀmŸÂç{©Wf
ªE
ÆïâP"8A MAA17937
          for <FreeBSD-gnats-submit@xxxxxxxxxxx>; Mon, 21 Sep 1998 12:37:42 -0700 (PDT)
          (envelope-from dmlb@xxxxxxxxxxxxxxxxxx)
Received: from [158.152.46.40] (helo=ragnet.demon.co.uk)
	by post.mail.demon.net with smtp (Exim 2.03 #1)
	id 0zLBlb-0000q9-00; Mon, 21 Sep 1998 19:37:02 +0000
Received: from dmlb by ragnet.demon.co.uk with local (Exim 1.82 #1)
	id 0zLBku-0004nE-00; Mon, 21 Sep 1998 20:36:16 +0100
Message-Id: <E0zLBku-0004nE-00@xxxxxxxxxxxxxxxxxx>
Date: Mon, 21 Sep 1998 20:36:16 +0100
From: dmlb@xxxxxxxxxxxxxxxxxx
Reply-To: dmlb@xxxxxxxxxxxxxxxxxx
To: FreeBSD-gnats-submit@xxxxxxxxxxx
Cc: sprice@xxxxxxxxxx, dmlb@xxxxxxxxxxxxxxxxxx
X-Send-Pr-Version: 3.2
Subject: ports/8014: Update TkDesk to latest release and close doc/7726.
Sender: owner-freebsd-ports@xxxxxxxxxxx
X-Loop: FreeBSD.org


>Number:         8014
>Category:       ports
>Synopsis:       Update TkDesk to latest release.
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:
>Keywords:
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Sep 21 12:40:01 PDT 1998
>Last-Modified:
>Originator:     Duncan Barclay
>Organization:
>Release:        FreeBSD 2.2.6-RELEASE i386
>Environment:

	Diffs to ports head, cvsup'd 21/9/98 06:30 GMT

>Description:

	Update of tkdesk to latest version and closes Y2K PR-docs/7726

>How-To-Repeat:
BË6+,,ÿ!E(-î@@nàÂç{©ÀmŸW
Æïâf
¯ùPDp¶?BË6}ààÿ!EÜ·ý@ý"ÀmŸÂç{©Wf
¯ù
ÆïâP"8+>Fix:
	Attached output of CVSROOT=/ide0.e/ncvs cvs diff tkdesk >diffs

Index: tkdesk/Makefile
===================================================================
RCS file: /ide0.e/ncvs/ports/x11-fm/tkdesk/Makefile,v
retrieving revision 1.9
diff -r1.9 Makefile
9c9
< DISTNAME=	tkdesk-1.0
---
> DISTNAME=	tkdesk-1.1
Index: tkdesk/files/md5
===================================================================
RCS file: /ide0.e/ncvs/ports/x11-fm/tkdesk/files/md5,v
retrieving revision 1.4
diff -r1.4 md5
1c1
< MD5 (tkdesk-1.0.tar.gz) = 7fe5ed4242c5b2054cbd4438af697835
---
> MD5 (tkdesk-1.1.tar.gz) = 42c599c0a18080bf3919baa192ba7f12
Index: tkdesk/patches/patch-aa
===================================================================
RCS file: /ide0.e/ncvs/ports/x11-fm/tkdesk/patches/patch-aa,v
retrieving revision 1.7
diff -r1.7 patch-aa
1,13c1,21
< --- configure.orig	Fri Feb 27 11:33:27 1998
< +++ configure	Fri Feb 27 11:33:54 1998
< @@ -2109,8 +2109,8 @@
<  s%@TCL_LD_SEARCH_FLAGS@%$TCL_LD_SEARCH_FLAGS%g
<  s%@TCL_EXEC_PREFIX@%$TCL_EXEC_PREFIX%g
<  s%@TK_EXEC_PREFIX@%$TK_EXEC_PREFIX%g
< -s%@TCL_INCLUDE_PATH@%$TCL_INCLUDE_PATH%g
< -s%@TK_INCLUDE_PATH@%$TK_INCLUDE_PATH%g
< +s%@TCL_INCLUDE_PATH@%$TCL_INCLUDE_PATH/tcl7.6%g
< +s%@TK_INCLUDE_PATH@%$TK_INCLUDE_PATH/tk4.2%g
<  s%@TK_XINCLUDES@%$TK_XINCLUDES%g
<  s%@TCL_LIB_SPEC@%$TCL_LIB_SPEC%g
<  s%@TK_LIB_SPEC@%$TK_LIB_SPEC%g
---
> *** configure~  Sun Sep 20 20:41:40 1998
> --- configure   Mon Sep 21 20:00BË6#8,,ÿ!E(-ï@@nßÂç{©ÀmŸW
Æïâf
µ­PDp°‹BË6¸cààÿ!EÜ·þ@ý"ÀmŸÂç{©Wf
µ­
ÆïâP"8ŠX:18 1998
> ***************
> *** 2109,2116 ****
>   s%@TCL_LD_SEARCH_FLAGS@%$TCL_LD_SEARCH_FLAGS%g
>   s%@TCL_EXEC_PREFIX@%$TCL_EXEC_PREFIX%g
>   s%@TK_EXEC_PREFIX@%$TK_EXEC_PREFIX%g
> ! s%@TCL_INCLUDE_PATH@%$TCL_INCLUDE_PATH%g
> ! s%@TK_INCLUDE_PATH@%$TK_INCLUDE_PATH%g
>   s%@TK_XINCLUDES@%$TK_XINCLUDES%g
>   s%@TCL_LIB_SPEC@%$TCL_LIB_SPEC%g
>   s%@TK_LIB_SPEC@%$TK_LIB_SPEC%g
> --- 2109,2116 ----
>   s%@TCL_LD_SEARCH_FLAGS@%$TCL_LD_SEARCH_FLAGS%g
>   s%@TCL_EXEC_PREFIX@%$TCL_EXEC_PREFIX%g
>   s%@TK_EXEC_PREFIX@%$TK_EXEC_PREFIX%g
> ! s%@TCL_INCLUDE_PATH@%$TCL_INCLUDE_PATH/tcl7.6%g
> ! s%@TK_INCLUDE_PATH@%$TK_INCLUDE_PATH/tk4.2%g
>   s%@TK_XINCLUDES@%$TK_XINCLUDES%g
>   s%@TCL_LIB_SPEC@%$TCL_LIB_SPEC%g
>   s%@TK_LIB_SPEC@%$TK_LIB_SPEC%g
Index: tkdesk/pkg/PLIST
===================================================================
RCS file: /ide0.e/ncvs/ports/x11-fm/tkdesk/pkg/PLIST,v
retrieving revision 1.5
diff -r1.5 PLIST
67a68,71
> lib/TkDesk/configs/_bookmarks
> lib/TkDesk/configs/_history
> lib/TkDesk/configs/_layout
> lib/TkDesk/configs/_options
88a93,94
> lib/TkDesk/doc/guide-10.html
> lib/TkDesk/doc/guide-11.html
356a363,365
> lib/TkDesk/images/next/mailbox_empty.xpm
> lib/TkDesk/images/next/mailbox_full.xpm
> lib/TkDesk/images/next/mailbox_old.xpm
415a425
> lib/TkDesk/images/xbm/barhandle.xbm
557a568,571
> man/man1/cd-tkdesk.1
> man/man1/ed-tkdesk.1
> man/man1/od-tkdesk.1
> man/man1/tkdesk.1
>Audit-Trail:
>Unformatted:

To UnsubscrBË6Þ«ÿ!EŒ·ÿ@ý'jÀmŸÂç{©Wf
»a
ÆïâP"8ÓËibe: send mail to majordomo@xxxxxxxxxxx
with "unsubscribe freebsd-ports" in the body of the message
BË6Ë×//ÿ!E+-ð@@nÛÂç{©ÀmŸW
Æïâf
»ÅPDpgCYBË6tÛ,,ÿ!E(¸@ý'ÍÀmŸÂç{©Wf
ȁ
ÆïåP"8̨BË6QG..ÿ!E*¸@ý'ÊÀmŸÂç{©Wf
ȁ
ÆïåP"8„žHBË6©L//ÿ!E+-ñ@@nÚÂç{©ÀmŸW
Æïåf
ȂPDpb
HYBË6¨//ÿ!E+¸@ý'ÈÀmŸÂç{©Wf
Ȃ
ÆïèP"8„?HYBË6Ö¨??ÿ!E;-ò@@nÉÂç{©ÀmŸW
Æïèf
»ÊPDm…ûHYOOOOOOOOOOOOBË6ê	>>ÿ!E:¸@ý'¸ÀmŸÂç{©Wf
»Ê
ÆïûP"8‘8OOOOOOOOOOOOOOBË6o	,,ÿ!E(-ó@@nÛÂç{©ÀmŸW
Æïûf
»ÜPDpªBBË6x	,,ÿ!E(¸@ý'ÉÀmŸÂç{©Wf
Ȇ
ÆïüP"8ÌzBË6ç;
,,ÿ!E(¸@ý'ÈÀmŸÂç{©Wf
Ȇ
ÆïüP"8ÌyBË6,=
,,ÿ!E(-ô@@nÚÂç{©ÀmŸW
Æïüf
»ÝPDpªA