Date: Mon, 5 Dec 2011 01:57:05 GMT From: Kan Sasaki <sasaki@fcc.ad.jp> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/163073: [PATCH] devel/lua-sysctl: fix compile on 9.x Message-ID: <201112050157.pB51v5iB078193@red.freebsd.org> Resent-Message-ID: <201112050200.pB520LNw037440@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 163073 >Category: ports >Synopsis: [PATCH] devel/lua-sysctl: fix compile on 9.x >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Dec 05 02:00:21 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kan Sasaki >Release: FreeBSD 9.0-PRERELEASE i386 >Organization: >Environment: >Description: Lua-sysctl does not compile on 9.0 or later. This patch fixes the issue. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN lua-sysctl.orig/Makefile lua-sysctl/Makefile --- lua-sysctl.orig/Makefile 2011-02-21 21:13:00.000000000 +0900 +++ lua-sysctl/Makefile 2011-12-05 10:15:01.000000000 +0900 @@ -21,7 +21,7 @@ .include <bsd.port.pre.mk> .if ${OSVERSION} >= 900030 -BROKEN= Does not build +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src::lua_sysctl.c .endif do-install: diff -ruN lua-sysctl.orig/files/extra-patch-src::lua_sysctl.c lua-sysctl/files/extra-patch-src::lua_sysctl.c --- lua-sysctl.orig/files/extra-patch-src::lua_sysctl.c 1970-01-01 09:00:00.000000000 +0900 +++ lua-sysctl/files/extra-patch-src::lua_sysctl.c 2011-12-05 10:02:33.000000000 +0900 @@ -0,0 +1,45 @@ +--- src/lua_sysctl.c.orig 2011-12-05 09:47:49.000000000 +0900 ++++ src/lua_sysctl.c 2011-12-05 09:57:48.000000000 +0900 +@@ -257,6 +257,7 @@ + long longval; + unsigned long ulongval; + quad_t quadval; ++ u_quad_t uquadval; + size_t s, newsize = 0; + u_int kind; + char fmt[BUFSIZ], key[BUFSIZ], nvalbuf[BUFSIZ]; +@@ -293,7 +294,8 @@ + (kind & CTLTYPE) == CTLTYPE_UINT || + (kind & CTLTYPE) == CTLTYPE_LONG || + (kind & CTLTYPE) == CTLTYPE_ULONG || +- (kind & CTLTYPE) == CTLTYPE_QUAD) { ++ (kind & CTLTYPE) == CTLTYPE_S64 || ++ (kind & CTLTYPE) == CTLTYPE_U64) { + if (strlen(newval) == 0) + return (luaL_error(L, "empty numeric value")); + } +@@ -343,7 +345,7 @@ + break; + case CTLTYPE_STRING: + break; +- case CTLTYPE_QUAD: ++ case CTLTYPE_S64: + quadval = (quad_t)strtonum(newval, LLONG_MIN, LLONG_MAX, &errmsg); + if (errmsg) { + return (luaL_error(L, "bad quad_t integer: %s (%s)", +@@ -352,6 +354,15 @@ + newval = &quadval; + newsize = sizeof(quadval); + break; ++ case CTLTYPE_U64: ++ uquadval = (u_quad_t)strtonum(newval, 0, ULLONG_MAX, &errmsg); ++ if (errmsg) { ++ return (luaL_error(L, "bad unsigned quad_t integer: %s (%s)", ++ (char *)newval, errmsg)); ++ } ++ newval = &uquadval; ++ newsize = sizeof(uquadval); ++ break; + case CTLTYPE_OPAQUE: + if (strcmp(fmt, "T,dev_t") == 0) { + set_T_dev_t(L, newval, &newval, &newsize); >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201112050157.pB51v5iB078193>