Skip to content

Commit d3ab910

Browse files
committed
---
yaml --- r: 155571 b: refs/heads/try2 c: d9eac5d h: refs/heads/master i: 155569: a283481 155567: ae7e1ff v: v3
1 parent fa6c2a8 commit d3ab910

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: d3444779e6776025ee19202c5e69964abde90374
8+
refs/heads/try2: d9eac5d99c105d45d9c503abad9020bb3d8e0bad
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/librustuv/uvll.rs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -723,12 +723,11 @@ extern {
723723

724724
// libuv doesn't use pthread on windows
725725
// android libc (bionic) provides pthread, so no additional link is required
726-
#[cfg(not(windows), not(target_os = "android"))]
726+
#[cfg(not(any(windows, target_os = "android")))]
727727
#[link(name = "pthread")]
728728
extern {}
729729

730-
#[cfg(target_os = "linux")]
731-
#[cfg(target_os = "dragonfly")]
730+
#[cfg(any(target_os = "linux", target_os = "dragonfly"))]
732731
#[link(name = "rt")]
733732
extern {}
734733

@@ -738,7 +737,6 @@ extern {}
738737
#[link(name = "iphlpapi")]
739738
extern {}
740739

741-
#[cfg(target_os = "freebsd")]
742-
#[cfg(target_os = "dragonfly")]
740+
#[cfg(any(target_os = "freebsd", target_os = "dragonfly"))]
743741
#[link(name = "kvm")]
744742
extern {}

0 commit comments

Comments
 (0)