]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-104773: Remove OSSAUDIODEV_LIBS variable (#104864)
authorVictor Stinner <vstinner@python.org>
Wed, 24 May 2023 14:02:22 +0000 (16:02 +0200)
committerGitHub <noreply@github.com>
Wed, 24 May 2023 14:02:22 +0000 (14:02 +0000)
Update configure script for ossaudiodev removal: remove the
OSSAUDIODEV_LIBS variable.

configure
configure.ac

index 5b5c70c844a79b8d4b587617c274b0a02bda120a..9ff7f18336bd22f922469ad3f56363f1a5361a9e 100755 (executable)
--- a/configure
+++ b/configure
@@ -13487,14 +13487,6 @@ LIBS=$save_LIBS
 
 fi
 
-case $ac_sys_system in #(
-  NetBSD*) :
-    OSSAUDIODEV_LIBS="-lossaudio" ;; #(
-  *) :
-    OSSAUDIODEV_LIBS=""
- ;;
-esac
-
 
 
 
index 0f91e0b444b0cf6d5cbe61921226e81e32e9f2b2..e3c7662738d77c7028866b5f3ae7ab055f68289a 100644 (file)
@@ -3916,12 +3916,6 @@ AS_VAR_IF([have_nis], [yes], [
   ])
 ])
 
-dnl On NetBSD, when using OSS audio, you need to link against libossaudio
-AS_CASE([$ac_sys_system],
-  [NetBSD*], [OSSAUDIODEV_LIBS="-lossaudio"],
-  [OSSAUDIODEV_LIBS=""]
-)
-
 dnl detect sqlite3 from Emscripten emport
 PY_CHECK_EMSCRIPTEN_PORT([LIBSQLITE3], [-sUSE_SQLITE3])