@@ -93,9 +93,9 @@ fn main() {
93
93
94
94
// Do not build the rust backends for tests: doing so causes duplicate
95
95
// symbol definitions.
96
- #[ cfg( feature = "unittest-build" ) ]
96
+ #[ cfg( any ( feature = "unittest-build" , docsrs ) ) ]
97
97
let build_rust_libs = "OFF" ;
98
- #[ cfg( not( feature = "unittest-build" ) ) ]
98
+ #[ cfg( not( any ( feature = "unittest-build" , docsrs ) ) ) ]
99
99
let build_rust_libs = "ON" ;
100
100
let dst = cfg
101
101
. define ( "BUILD_SHARED_LIBS" , "OFF" )
@@ -129,7 +129,7 @@ fn main() {
129
129
130
130
// Do not link the rust backends for tests: doing so causes duplicate
131
131
// symbol definitions.
132
- #[ cfg( not( feature = "unittest-build" ) ) ]
132
+ #[ cfg( not( any ( feature = "unittest-build" , docsrs ) ) ) ]
133
133
{
134
134
println ! ( "cargo:rustc-link-lib=static=cubeb_coreaudio" ) ;
135
135
let mut search_path = std:: env:: current_dir ( ) . unwrap ( ) ;
@@ -159,7 +159,7 @@ fn main() {
159
159
if pkg_config:: find_library ( "libpulse" ) . is_ok ( ) {
160
160
// Do not link the rust backends for tests: doing so causes duplicate
161
161
// symbol definitions.
162
- #[ cfg( not( feature = "unittest-build" ) ) ]
162
+ #[ cfg( not( any ( feature = "unittest-build" , docsrs ) ) ) ]
163
163
{
164
164
println ! ( "cargo:rustc-link-lib=static=cubeb_pulse" ) ;
165
165
let mut search_path = std:: env:: current_dir ( ) . unwrap ( ) ;
0 commit comments