From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 07:59:12 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E61E1065674 for ; Mon, 19 Mar 2012 07:59:12 +0000 (UTC) (envelope-from ardovm@yahoo.it) Received: from nm3.bullet.mail.ukl.yahoo.com (nm3.bullet.mail.ukl.yahoo.com [217.146.182.224]) by mx1.freebsd.org (Postfix) with SMTP id 733738FC1A for ; Mon, 19 Mar 2012 07:59:11 +0000 (UTC) Received: from [217.146.183.215] by nm3.bullet.mail.ukl.yahoo.com with NNFMP; 19 Mar 2012 07:59:04 -0000 Received: from [77.238.184.66] by tm8.bullet.mail.ukl.yahoo.com with NNFMP; 19 Mar 2012 07:59:04 -0000 Received: from [127.0.0.1] by smtp135.mail.ukl.yahoo.com with NNFMP; 19 Mar 2012 07:59:04 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.it; s=s1024; t=1332143944; bh=4UOPmgYj9n9uQDvdsyNmmASqq9wtaXiv65KbMbgGQ7I=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:Received:Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type:Content-Disposition:User-Agent; b=O8/i9BPp530f7kQoqHRA3PVGaI73xYOxFILSJX77B9DGu7NzYVMseoM5LgDVZ9Cio0xLjJEe9WEd3liHf3j9Bd8R4j0CMz8cWIwlN62UTpNnV6t1MUvxci47+4WTvGVfn6lCdugbznHxK5S3oxarPeJ/ySsXsa5Rbppm4J3wJEU= X-Yahoo-Newman-Id: 113013.22758.bm@smtp135.mail.ukl.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: NJywiDEVM1nSzNXlLp80zg0xdbN5T4fqvq1UOXxILZoU71o XxBxbdCsDF61qyXRcxLZst8ObO8oF9woIPBt64JED38ODZ.L6mMm0DqMVhfn VvJg_rY5Pv_w69vWhqlfN0wjRv4re0INN8lKTTRNHCfM0l1bG1P2CkLGe67T nRGsMX6TE7fA7G.ulT5cIZKppu4IqI6iHOabBFLAOwleZdHVM.W1HOE8cyl_ PSg4QCjqrXPFeSV.g7VFV4dSTtGYBu_R496BnmHEhYMkGWo0w.WrJ2dcV5yY ZUmlbXakc6ig7hpdKsniT.faS8xk_stROgt_OB0DVC7yBtGZromK13K.ysgL N9fWRPv4JiaMjUTM3bOCqjsx1DlsRziJu1Osk8ZE5DPPK453XLyxDkq5kelO ZyrZNYkSfz8QuFcc5Boyl1vRESfeuf4pN8m34poDxIYlyo_XCmL7d9kEOkkM C8RA0aE_nYlc- X-Yahoo-SMTP: WU.IBxeswBAAnLcBZV3tEZIK0A-- Received: from snail (ardovm@93.145.121.38 with login) by smtp135.mail.ukl.yahoo.com with SMTP; 19 Mar 2012 07:59:03 +0000 GMT Received: by snail (Postfix, from userid 1000) id 321091D427D; Mon, 19 Mar 2012 08:59:02 +0100 (CET) Date: Mon, 19 Mar 2012 08:59:01 +0100 From: Arrigo Marchiori To: pav@freebsd.org Message-ID: <20120319075901.GA16256@snail.casa> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="C7zPtVaVf+AK4Oqc" Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: ports@freebsd.org Subject: [PATCH] proposal for x11-wm/windowmaker X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Mar 2012 07:59:12 -0000 --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Hello, I am attaching a "quick-and-dirty" patch that should reallow compilation of x11-wm/windowmaker under 7-STABLE. The problem seems to be the missing macro HAVE_SYS_SELECT_H; the patch just forces it in the configure script if a FreeBSD system is detected. Please Cc' me in any answers because I am not subscribed to ports@ Best regards, -- rigo http://rigo.altervista.org --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename=patch-have_sys_select_h --- ../WindowMaker-0.95.2-pre-patch/configure 2012-03-19 08:51:13.000000000 +0100 +++ ./configure 2012-03-19 08:51:28.000000000 +0100 @@ -11555,7 +11555,7 @@ ;; *-*-freebsd*|*-k*bsd-gnu*) WM_OSDEP="bsd" - CFLAGS="$CFLAGS -D_XOPEN_SOURCE=600 -DFREEBSD" + CFLAGS="$CFLAGS -D_XOPEN_SOURCE=600 -DFREEBSD -DHAVE_SYS_SELECT_H" ;; *-*-netbsd*) WM_OSDEP="bsd" --C7zPtVaVf+AK4Oqc--