From owner-svn-ports-head@freebsd.org Thu Oct 22 02:04:35 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 269EDA1BE8A; Thu, 22 Oct 2015 02:04:35 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E5A0D121B; Thu, 22 Oct 2015 02:04:34 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9M24XH4096668; Thu, 22 Oct 2015 02:04:33 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9M24XnY096667; Thu, 22 Oct 2015 02:04:33 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201510220204.t9M24XnY096667@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Thu, 22 Oct 2015 02:04:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399942 - head/net/kea 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.20 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, 22 Oct 2015 02:04:35 -0000 Author: hrs Date: Thu Oct 22 02:04:33 2015 New Revision: 399942 URL: https://svnweb.freebsd.org/changeset/ports/399942 Log: Fix typos in non-default options which prevented them from working. Reported by: Evgeny Dunaev Pointy hat to: hrs Modified: head/net/kea/Makefile Modified: head/net/kea/Makefile ============================================================================== --- head/net/kea/Makefile Thu Oct 22 01:55:05 2015 (r399941) +++ head/net/kea/Makefile Thu Oct 22 02:04:33 2015 (r399942) @@ -42,11 +42,11 @@ DOCS_INSTALL_TARGET_OFF= \ install-pkgconfigDATA \ install-pkgincludeHEADERS MYSQL_USE= MYSQL=client -MYSQL_CONFIGURE_ARGS= --with-dhcp-mysql=${LOCALBASE}/bin -MYSQL_CONFIGURE_ARGS_OFF= --without-dhcp-mysql +MYSQL_CONFIGURE_ON= --with-dhcp-mysql=${LOCALBASE}/bin/mysql_config +MYSQL_CONFIGURE_OFF= --without-dhcp-mysql PGSQL_USES= pgsql WANT_PGSQL= client -PGSQL_CONFIGURE_ARGS= --with-dhcp-pgsql=${LOCALBASE}/bin -PGSQL_CONFIGURE_ARGS_OFF= --without-dhcp-pgsql +PGSQL_CONFIGURE_ON= --with-dhcp-pgsql=${LOCALBASE}/bin/pg_config +PGSQL_CONFIGURE_OFF= --without-dhcp-pgsql .include