From owner-svn-ports-head@freebsd.org Sat Nov 3 17:41:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9D1D310DF45E; Sat, 3 Nov 2018 17:41:54 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4E14B8B513; Sat, 3 Nov 2018 17:41:54 +0000 (UTC) (envelope-from jbeich@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1589F1CFB1; Sat, 3 Nov 2018 17:41:54 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wA3HfrvQ097509; Sat, 3 Nov 2018 17:41:53 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wA3Hfrst097508; Sat, 3 Nov 2018 17:41:53 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201811031741.wA3Hfrst097508@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 3 Nov 2018 17:41:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483903 - head/devel/sdl20 X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/devel/sdl20 X-SVN-Commit-Revision: 483903 X-SVN-Commit-Repository: ports 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.29 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: Sat, 03 Nov 2018 17:41:54 -0000 Author: jbeich Date: Sat Nov 3 17:41:53 2018 New Revision: 483903 URL: https://svnweb.freebsd.org/changeset/ports/483903 Log: devel/sdl20: unbreak DLOPEN=off after r450461 src/video/x11/SDL_x11vulkan.c:82:28: error: use of undeclared identifier 'VK_KHR_XLIB_SURFACE_EXTENSION_NAME' else if(SDL_strcmp(VK_KHR_XLIB_SURFACE_EXTENSION_NAME, extensions[i].extensionName) == 0) ^ src/video/x11/SDL_x11vulkan.c:82:64: error: use of undeclared identifier 'extensions' else if(SDL_strcmp(VK_KHR_XLIB_SURFACE_EXTENSION_NAME, extensions[i].extensionName) == 0) ^ src/video/x11/SDL_x11vulkan.c:85:14: error: use of undeclared identifier 'extensions' SDL_free(extensions); ^ src/video/x11/SDL_x11vulkan.c:89:22: error: expected ')' VK_KHR_SURFACE_EXTENSION_NAME " extension"); ^ src/video/x11/SDL_x11vulkan.c:88:21: note: to match this '(' SDL_SetError("Installed Vulkan doesn't implement the " ^ src/video/x11/SDL_x11vulkan.c:94:20: error: no member named 'vulkan_xlib_xcb_library' in 'struct SDL_VideoData' videoData->vulkan_xlib_xcb_library = NULL; ~~~~~~~~~ ^ src/video/x11/SDL_x11vulkan.c:99:22: error: expected ')' VK_KHR_XCB_SURFACE_EXTENSION_NAME "extension or the " ^ src/video/x11/SDL_x11vulkan.c:98:21: note: to match this '(' SDL_SetError("Installed Vulkan doesn't implement either the " ^ src/video/x11/SDL_x11vulkan.c:108:20: error: no member named 'vulkan_xlib_xcb_library' in 'struct SDL_VideoData' videoData->vulkan_xlib_xcb_library = SDL_LoadObject(libX11XCBLibraryName); ~~~~~~~~~ ^ src/video/x11/SDL_x11vulkan.c:109:24: error: no member named 'vulkan_xlib_xcb_library' in 'struct SDL_VideoData' if(!videoData->vulkan_xlib_xcb_library) ~~~~~~~~~ ^ src/video/x11/SDL_x11vulkan.c:111:20: error: no member named 'vulkan_XGetXCBConnection' in 'struct SDL_VideoData' videoData->vulkan_XGetXCBConnection = ~~~~~~~~~ ^ src/video/x11/SDL_x11vulkan.c:112:41: error: no member named 'vulkan_xlib_xcb_library' in 'struct SDL_VideoData' SDL_LoadFunction(videoData->vulkan_xlib_xcb_library, "XGetXCBConnection"); ~~~~~~~~~ ^ fatal error: too many errors emitted, stopping now [-ferror-limit=] PR: 232931 Modified: head/devel/sdl20/Makefile (contents, props changed) Modified: head/devel/sdl20/Makefile ============================================================================== --- head/devel/sdl20/Makefile Sat Nov 3 16:45:37 2018 (r483902) +++ head/devel/sdl20/Makefile Sat Nov 3 17:41:53 2018 (r483903) @@ -97,6 +97,7 @@ VIDEO_X11_DESC= X11 display support ASM_CONFIGURE_ENABLE= assembly DLOPEN_CONFIGURE_ENABLE= sdl-dlopen +DLOPEN_CONFIGURE_OFF= --disable-video-vulkan HIDAPI_CONFIGURE_ENABLE= hidapi HIDAPI_IMPLIES= SDL_JOYSTICK PTHREADS_CONFIGURE_ENABLE= pthreads pthread-sem