From owner-svn-ports-head@FreeBSD.ORG Thu Mar 6 16:05:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D593E38; Thu, 6 Mar 2014 16:05:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8AA10845; Thu, 6 Mar 2014 16:05:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s26G5WIe075729; Thu, 6 Mar 2014 16:05:32 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s26G5W7G075728; Thu, 6 Mar 2014 16:05:32 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201403061605.s26G5W7G075728@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 6 Mar 2014 16:05:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r347264 - head/math/stp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Mar 2014 16:05:32 -0000 Author: ehaupt Date: Thu Mar 6 16:05:32 2014 New Revision: 347264 URL: http://svnweb.freebsd.org/changeset/ports/347264 QAT: https://qat.redports.org/buildarchive/r347264/ Log: Fix math/stp build for FreeBSD 9.x PR: 187311 Submitted by: arrowdodger <6yearold@gmail.com> (maintainer) Modified: head/math/stp/Makefile Modified: head/math/stp/Makefile ============================================================================== --- head/math/stp/Makefile Thu Mar 6 15:55:26 2014 (r347263) +++ head/math/stp/Makefile Thu Mar 6 16:05:32 2014 (r347264) @@ -23,6 +23,9 @@ CMAKE_ARGS= -DFL_LIBRARY=/usr/lib/libfl. .if (${OSVERSION} < 1000000) BUILD_DEPENDS+=flex>=2.5.38:${PORTSDIR}/textproc/flex +CMAKE_ARGS= -DFL_LIBRARY=${LOCALBASE}/lib/libfl.a \ + -DFLEX_INCLUDE_DIR=${LOCALBASE}/include/flex \ + -DFLEX_EXECUTABLE=${LOCALBASE}/bin/flex .endif .if (${OSVERSION} < 802502)