From owner-freebsd-python@FreeBSD.ORG Thu Jul 23 03:40:04 2009 Return-Path: Delivered-To: python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70FE2106564A for ; Thu, 23 Jul 2009 03:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 607B98FC13 for ; Thu, 23 Jul 2009 03:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n6N3e4PC042005 for ; Thu, 23 Jul 2009 03:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n6N3e4tD042003; Thu, 23 Jul 2009 03:40:04 GMT (envelope-from gnats) Date: Thu, 23 Jul 2009 03:40:04 GMT Message-Id: <200907230340.n6N3e4tD042003@freefall.freebsd.org> To: python@FreeBSD.org From: Anonymous Cc: Subject: Re: ports/136992: [lang/python26] bug in Makefile X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anonymous List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Jul 2009 03:40:04 -0000 The following reply was made to PR ports/136992; it has been noted by GNATS. From: Anonymous To: bug-followup@FreeBSD.org,andrey.zonov@gmail.com Cc: Subject: Re: ports/136992: [lang/python26] bug in Makefile Date: Thu, 23 Jul 2009 07:32:51 +0400 I don't think you'll be able to build with POSIX semaphores. But the error you get is due to an extra dot crept in 1.157. --- python26.diff begins here --- Index: lang/python26/Makefile =================================================================== RCS file: /home/csup/ports/lang/python26/Makefile,v retrieving revision 1.160 diff -u -p -r1.160 Makefile --- lang/python26/Makefile 14 Jul 2009 09:29:02 -0000 1.160 +++ lang/python26/Makefile 23 Jul 2009 03:25:32 -0000 @@ -66,7 +66,6 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-patch- SEM_MSG= "" .else IGNORE= POSIX semaphore support only works in FreeBSD 7-STABLE and later -. .endif # ${OSVERSION} >= 701106 .else # !defined(WITH_SEM) SEM_MSG= "@comment " --- python26.diff begins here ---