Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Mar 2016 13:14:14 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r411659 - in head/sysutils/openipmi: . files
Message-ID:  <201603221314.u2MDEEWF019961@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Tue Mar 22 13:14:14 2016
New Revision: 411659
URL: https://svnweb.freebsd.org/changeset/ports/411659

Log:
  Patch configure to define OPENIPMI_VERSION_*.  These variables are defined
  too early in configure.ac so autoconf doesn't copy them to configure.
  This fixes version information in include/OpenIPMI/ipmiif.h.

Added:
  head/sysutils/openipmi/files/patch-configure   (contents, props changed)
Modified:
  head/sysutils/openipmi/Makefile

Modified: head/sysutils/openipmi/Makefile
==============================================================================
--- head/sysutils/openipmi/Makefile	Tue Mar 22 13:12:06 2016	(r411658)
+++ head/sysutils/openipmi/Makefile	Tue Mar 22 13:14:14 2016	(r411659)
@@ -3,6 +3,7 @@
 
 PORTNAME=	openipmi
 PORTVERSION=	2.0.21
+PORTREVISION=	1
 CATEGORIES=	sysutils
 MASTER_SITES=	SF/${PORTNAME}/OpenIPMI%202.0%20Library
 DISTNAME=	OpenIPMI-${PORTVERSION}
@@ -20,7 +21,7 @@ USES=		execinfo gmake libtool ncurses pa
 USE_LDCONFIG=	yes
 
 CPPFLAGS+=	-I../include -I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib
+LIBS+=		-L${LOCALBASE}/lib
 
 OPTIONS_DEFINE=	SSL SNMP PERL PYTHON TCL TKINTER GDBM
 OPTIONS_RADIO=	GLIB

Added: head/sysutils/openipmi/files/patch-configure
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/openipmi/files/patch-configure	Tue Mar 22 13:14:14 2016	(r411659)
@@ -0,0 +1,13 @@
+--- configure.orig	2014-01-28 19:35:11 UTC
++++ configure
+@@ -4206,6 +4206,10 @@ unknown)
+ esac
+ 
+ 
++OPENIPMI_VERSION_MAJOR=2
++OPENIPMI_VERSION_MINOR=0
++OPENIPMI_VERSION_RELEASE=21
++OPENIPMI_VERSION_EXTRA=
+ 
+ 
+ OPENIPMI_SMI=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603221314.u2MDEEWF019961>