From owner-cvs-ports@FreeBSD.ORG Fri Jul 16 21:23:00 2010 Return-Path: Delivered-To: cvs-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D19161065677; Fri, 16 Jul 2010 21:23:00 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 43FEF8FC29; Fri, 16 Jul 2010 21:22:59 +0000 (UTC) Received: by vws19 with SMTP id 19so3725696vws.13 for ; Fri, 16 Jul 2010 14:22:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:references :date:in-reply-to:message-id:user-agent:mime-version:content-type; bh=SCRc485L9gImO42/xVkTAkhkxN1PSIwyqAAXpr4Jtv0=; b=FGaD1G9MLRaDVs03sadAEHyfGXq6Za01ww3hE1M4ACcUDtuNQHh1YnFE/kLueoPN1B EFRnzz6N28VICM5lpmr9M9rj5w304bU0EbJPLNC7tnQi1FAMNjVmQQ/1N2dxVyHg9SW2 P76cdfl6mQiAZHCNkvRt/IjQoliRHgz4inqVc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; b=Ni9UVo5o6tEaqJXbCIzwXvGtV3NCCuXvRpYWvItP9BoMwPplodafkgZBsrklLEUcW+ 7Spv0hVh7N1oMMiPzTzDfYcIdVNyY5lvTdrOVlrZtehGJjCDEhBW9Q/k1PK+gCRhRuy2 wcEfNlN5u9yd487AT7gIyi0bU+TEe0NiJI4WQ= Received: by 10.220.98.193 with SMTP id r1mr864592vcn.229.1279315379117; Fri, 16 Jul 2010 14:22:59 -0700 (PDT) Received: from localhost (anonymizer3.torservers.net [173.244.197.211]) by mx.google.com with ESMTPS id v11sm5748902vbb.14.2010.07.16.14.22.57 (version=SSLv3 cipher=RC4-MD5); Fri, 16 Jul 2010 14:22:58 -0700 (PDT) From: Anonymous To: Josh Paetzel References: <201007161729.o6GHT5Kg078890@repoman.freebsd.org> Date: Sat, 17 Jul 2010 01:22:54 +0400 In-Reply-To: <201007161729.o6GHT5Kg078890@repoman.freebsd.org> (Josh Paetzel's message of "Fri, 16 Jul 2010 17:29:05 +0000 (UTC)") Message-ID: <86lj9bm89d.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/net/freeswitch-core Makefile X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jul 2010 21:23:00 -0000 Josh Paetzel writes: > jpaetzel 2010-07-16 17:29:05 UTC > > FreeBSD ports repository > > Modified files: > net/freeswitch-core Makefile > Log: > Move check for OSVERSION to a better place in the Makefile OSVERSION is defined in bsd.port.mk, not before. $ make "Makefile", line 67: Malformed conditional (${OSVERSION} < 700000) "Makefile", line 69: if-less endif make: fatal errors encountered -- cannot continue %% Index: Makefile =================================================================== RCS file: /a/.cvsup/ports/net/freeswitch-core/Makefile,v retrieving revision 1.5 diff -u -p -r1.5 Makefile --- Makefile 16 Jul 2010 17:29:05 -0000 1.5 +++ Makefile 16 Jul 2010 21:21:29 -0000 @@ -64,10 +64,6 @@ CONFIGURE_ENV+= CPPFLAGS="${CXXFLAGS} -I USE_LDCONFIG= yes CPPFLAGS+= -I${PREFIX}/include -.if ${OSVERSION} < 700000 -IGNORE= freeswitch is only supported on FreeBSD 7 or newer -.endif - FREESWITCH_USER= freeswitch FREESWITCH_GROUP= ${FREESWITCH_USER} @@ -122,6 +118,10 @@ OPTIONS= MODSHOUT "Enable mod_sho .include +.if ${OSVERSION} < 700000 +IGNORE= freeswitch is only supported on FreeBSD 7 or newer +.endif + .if ${ARCH} == "amd64" CFLAGS+= -fPIC .endif %% > > Revision Changes Path > 1.5 +4 -5 ports/net/freeswitch-core/Makefile