OpenBSD does not have librt
Patch status: merged
Patch by David Coppa
To apply this patch, use:
curl http://cr.i3wm.org/patch/496/raw.patch | git am
b/common.mk
| 13 |
@@ -171,8 +171,8 @@ endif |
| 14 |
|
| 15 |
ifeq ($(UNAME),Darwin) |
| 16 |
LIBS += -liconv |
| 17 |
-else |
| 18 |
-# Darwin (Mac OS X) doesn’t have librt |
| 19 |
+else ifneq ($(UNAME),OpenBSD) |
| 20 |
+# Darwin (Mac OS X) and OpenBSD do not have librt |
| 21 |
LIBS += -lrt |
| 22 |
endif |
| 23 |
|