From owner-freebsd-ports@FreeBSD.ORG Tue Jul 5 19:51:18 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 DC56916A432 for ; Tue, 5 Jul 2005 19:51:18 +0000 (GMT) (envelope-from dolhop@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D96243E5E for ; Tue, 5 Jul 2005 19:45:03 +0000 (GMT) (envelope-from dolhop@gmail.com) Received: by zproxy.gmail.com with SMTP id 12so474310nzp for ; Tue, 05 Jul 2005 12:44:59 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; b=KjZgSlj+Vm5QBIbjoB+N1FI3rwC63YqC33yKqktXHBT+N+C8haJzPlme6xiy2J8PE9keBN1ZaiDJnGpvvUI5CpYxZ3Au52O6fC8aavGKMwcfl04fm355lnX8KhxigXqSWXyyqS6tCkiF4gYJFqbKinlEuDAI//8ND4DVZ5aXkb4= Received: by 10.36.222.73 with SMTP id u73mr1628419nzg; Tue, 05 Jul 2005 12:44:59 -0700 (PDT) Received: by 10.36.148.16 with HTTP; Tue, 5 Jul 2005 12:44:59 -0700 (PDT) Message-ID: <75350759050705124432067579@mail.gmail.com> Date: Tue, 5 Jul 2005 15:44:59 -0400 From: L T To: ahze@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Cc: ports@FreeBSD.org Subject: FreeBSD Port: mjpegtools-1.6.2_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: L T List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2005 19:51:19 -0000 To the maintainer of the mjpegtools port/package: yuvfps.c contains a line which resets optind to 0 - in FreeBSD this will cause getopt to quietly return instead of processing the arguments which is what is desired - and thus yuvfps does not work as intended (doesn't really work at all!). This can be fixed by changing the line to read: optind=3D1; I assume this is a FreeBSD only issue as none of the linux users have complained about this tool not working. Will you be making a patch for this? Thanks.