Date: Sat, 20 Mar 2010 20:31:21 +0900 (JST) From: Kenichi Niioka (=?iso-2022-jp?B?GyRCPzcyLDgtMGwbKEI=?=) <niioka@kk.iij4u.or.jp> To: ports@freebsd.org, x11@freebsd.org Subject: Re: [Call for Testing] X.org 7.5 for FreeBSD Message-ID: <20100320.203121.57809163874059935.ken@iij4u.or.jp> In-Reply-To: <20100320.191440.1098872334782950697.ken@iij4u.or.jp> References: <20100311134413.GH19740@bsdcrew.de> <4B9B651B.2080406@gmail.com> <20100320.191440.1098872334782950697.ken@iij4u.or.jp>
next in thread | previous in thread | raw e-mail | index | archive | help
----Next_Part(Sat_Mar_20_20_31_21_2010_173)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit From: niioka@kk.iij4u.or.jp Subject: Re: [Call for Testing] X.org 7.5 for FreeBSD Date: Sat, 20 Mar 2010 19:14:40 +0900 (JST) > FreeBSD 9.0-CURRENT #0 r205310 amd64 > # portupgrade -a && portupgrade -f nvidia-driver (195.22) > > Works very well with GNOME 2.28.2_1. > But when I compile sysutils/gnome-power-manager (2.24.4), I have > following error. > > gpm-dpms.c:42:36: error: X11/extensions/dpmsstr.h: No such file or directory I tried this patch. I'm not sure whether it is the right way or not. But it seems to be fine. Thanks. -- Kenichi Niioka niioka@kk.iij4u.or.jp ----Next_Part(Sat_Mar_20_20_31_21_2010_173)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Description: patch-src_gpm-dpms.c Content-Disposition: inline; filename="patch-src_gpm-dpms.c" diff -urNp src/gpm-dpms.c src/gpm-dpms.c --- src/gpm-dpms.c 2008-09-04 19:05:15.000000000 +0900 +++ src/gpm-dpms.c 2010-03-20 19:24:11.020079517 +0900 @@ -39,7 +39,8 @@ #ifdef HAVE_DPMS_EXTENSION #include <X11/Xproto.h> #include <X11/extensions/dpms.h> -#include <X11/extensions/dpmsstr.h> +#include <X11/extensions/dpmsconst.h> +#include <X11/extensions/dpmsproto.h> #endif #include "gpm-conf.h" ----Next_Part(Sat_Mar_20_20_31_21_2010_173)----
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20100320.203121.57809163874059935.ken>