blob: 31d53534304c0cc84365980206264bb6ecf6e185 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- src/org/jgroups/util/Util.java.orig 2011-03-18 10:35:16.000000000 +0100
+++ src/org/jgroups/util/Util.java 2011-03-18 10:36:44.000000000 +0100
@@ -3323,6 +3323,10 @@
}
+ public static boolean checkForFreeBSD() {
+ return checkForPresence("os.name", "freebsd");
+ }
+
public static boolean checkForLinux() {
return checkForPresence("os.name", "linux");
}
|