From owner-freebsd-ports@FreeBSD.ORG Mon Sep 5 06:00:30 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DD6D16A41F; Mon, 5 Sep 2005 06:00:30 +0000 (GMT) (envelope-from sean@mcneil.com) Received: from mail.mcneil.com (mcneil.com [24.199.45.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2BF143D49; Mon, 5 Sep 2005 06:00:29 +0000 (GMT) (envelope-from sean@mcneil.com) Received: from localhost (localhost.mcneil.com [127.0.0.1]) by mail.mcneil.com (Postfix) with ESMTP id 652EEF22B1; Sun, 4 Sep 2005 23:00:29 -0700 (PDT) Received: from mail.mcneil.com ([127.0.0.1]) by localhost (server.mcneil.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00764-04; Sun, 4 Sep 2005 23:00:26 -0700 (PDT) Received: from mcneil.com (mcneil.com [24.199.45.54]) by mail.mcneil.com (Postfix) with ESMTP id 8520FF21F6; Sun, 4 Sep 2005 23:00:26 -0700 (PDT) From: Sean McNeil To: FUJISHIMA Satsuki In-Reply-To: <200509050525.j855PUXo036056@freefall.freebsd.org> References: <1125877164.12398.2.camel@server.mcneil.com> <200509050525.j855PUXo036056@freefall.freebsd.org> Content-Type: text/plain Organization: Sean McNeil Consulting, Inc Date: Sun, 04 Sep 2005 23:00:26 -0700 Message-Id: <1125900026.11476.5.camel@server.mcneil.com> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at mcneil.com Cc: ports@FreeBSD.org, nobutaka@FreeBSD.org Subject: Re: emacs doesn't build with 6-current and completely updated ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sean@mcneil.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Sep 2005 06:00:30 -0000 On Mon, 2005-09-05 at 05:25 +0000, FUJISHIMA Satsuki wrote: > fix obtained from: darwinports Thanks, but sorry it is no help. The problem is that there is no scroll_mode in Xaw3d-1.5E_1. The patch you provided still uses it: + sb->scrollbar.scroll_mode = scroll_mode; from ScrollbarP.h: typedef struct { /* public */ Pixel foreground; /* thumb foreground color */ XtOrientation orientation; /* horizontal or vertical */ XtCallbackList scrollProc; /* proportional scroll */ XtCallbackList thumbProc; /* jump (to position) scroll */ XtCallbackList jumpProc; /* same as thumbProc but pass data by ref */ Pixmap thumb; /* thumb color */ Cursor upCursor; /* scroll up cursor */ Cursor downCursor; /* scroll down cursor */ Cursor leftCursor; /* scroll left cursor */ Cursor rightCursor; /* scroll right cursor */ Cursor verCursor; /* scroll vertical cursor */ Cursor horCursor; /* scroll horizontal cursor */ float top; /* What percent is above the win's top */ float shown; /* What percent is shown in the win */ Dimension length; /* either height or width */ Dimension thickness; /* either width or height */ Dimension min_thumb; /* minium size for the thumb. */ float picked; /* How much of the thumb is picked * * when scrolling starts */ /* private */ Cursor inactiveCursor; /* the normal cursor for scrollbar */ char direction; /* 0:none, C:drag, F:down/forw, B:up/back */ GC gc; /* a (shared) gc */ Position topLoc; /* Pixel that corresponds to top */ Dimension shownLength; /* Num pixels corresponding to shown */ Boolean pick_top; /* pick thumb at top or anywhere*/ Boolean arrows; /* Whether it has arrows at the end. */ /* Only used for arrow-scrollbars. */ XtIntervalId timer_id; /* autorepeat timer; remove on destruction */ } ScrollbarPart;