From 8867b3c951dcdea699e59da9649fb10d34311053 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Fri, 14 Jun 2024 19:08:47 -0700 Subject: [PATCH] meson: Drop GLU dependency --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 38127c9809..a6fd6fa5a3 100644 --- a/meson.build +++ b/meson.build @@ -1164,7 +1164,7 @@ if not get_option('opengl').auto() or have_system or have_vhost_user_gpu elif targetos == 'windows' opengl_libs=['-lopengl32', '-lgdi32'] elif targetos == 'linux' - opengl_libs=['-lGLU', '-lGL'] + opengl_libs=['-lGL'] else error('Unknown GL platform') endif