Skip to content

Commit b14de5b

Browse files
committed
More docs.rs fixes.
1 parent faab2bb commit b14de5b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cubeb-sys/build.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ fn main() {
9393

9494
// Do not build the rust backends for tests: doing so causes duplicate
9595
// symbol definitions.
96-
#[cfg(feature = "unittest-build")]
96+
#[cfg(any(feature = "unittest-build", docsrs))]
9797
let build_rust_libs = "OFF";
98-
#[cfg(not(feature = "unittest-build"))]
98+
#[cfg(not(any(feature = "unittest-build", docsrs)))]
9999
let build_rust_libs = "ON";
100100
let dst = cfg
101101
.define("BUILD_SHARED_LIBS", "OFF")
@@ -129,7 +129,7 @@ fn main() {
129129

130130
// Do not link the rust backends for tests: doing so causes duplicate
131131
// symbol definitions.
132-
#[cfg(not(feature = "unittest-build"))]
132+
#[cfg(not(any(feature = "unittest-build", docsrs)))]
133133
{
134134
println!("cargo:rustc-link-lib=static=cubeb_coreaudio");
135135
let mut search_path = std::env::current_dir().unwrap();
@@ -159,7 +159,7 @@ fn main() {
159159
if pkg_config::find_library("libpulse").is_ok() {
160160
// Do not link the rust backends for tests: doing so causes duplicate
161161
// symbol definitions.
162-
#[cfg(not(feature = "unittest-build"))]
162+
#[cfg(not(any(feature = "unittest-build", docsrs)))]
163163
{
164164
println!("cargo:rustc-link-lib=static=cubeb_pulse");
165165
let mut search_path = std::env::current_dir().unwrap();

0 commit comments

Comments
 (0)