Date: Fri, 11 Sep 2009 06:16:59 +0400 From: Anonymous <swell.k@gmail.com> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/138720: [patch] devel/sdl12: enable vgl driver on all platforms that have libvgl.so Message-ID: <86bpligr8k.fsf@gmail.com> Resent-Message-ID: <200909110220.n8B2K2sZ017104@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 138720 >Category: ports >Synopsis: [patch] devel/sdl12: enable vgl driver on all platforms that have libvgl.so >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 11 02:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Anonymous >Release: FreeBSD 9.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD 9.0-CURRENT #0 r197029M: Wed Sep 9 11:22:43 UTC 2009 root@luffy:/usr/obj/usr/src/sys/PHOENIX amd64 >Description: The check against ${ARCH} is redundant. WITHOUT_VGL is defined if /usr/lib/libvgl.so cannot be found. And libvgl.so was built only on i386 prior recent porting vesa on x86emu. Now libvgl.so is available on amd64, too. >How-To-Repeat: >Fix: --- sdl12_vgl.diff begins here --- Index: devel/sdl12/Makefile =================================================================== RCS file: /home/csup/ports/devel/sdl12/Makefile,v retrieving revision 1.120 diff -u -p -r1.120 Makefile --- devel/sdl12/Makefile 8 Aug 2009 08:49:29 -0000 1.120 +++ devel/sdl12/Makefile 15 Aug 2009 03:25:15 -0000 @@ -124,7 +124,7 @@ LIB_DEPENDS+= vga.1:${PORTSDIR}/graphics CONFIGURE_ARGS+=--enable-video-svga .endif -.if (defined(WITHOUT_VGL) || ${ARCH} != "i386") +.if defined(WITHOUT_VGL) CONFIGURE_ARGS+=--disable-video-vgl PKGMESSAGE= none DISPLAY_MSG= ${DO_NADA} --- sdl12_vgl.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?86bpligr8k.fsf>