aboutsummaryrefslogtreecommitdiffstats
path: root/plugin_uname.c
diff options
context:
space:
mode:
authormichux <michux@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2009-03-26 08:06:12 +0000
committermichux <michux@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2009-03-26 08:06:12 +0000
commitb83507bad699d4c9d3387d52d2aa41e29399ea41 (patch)
treecdda0bb92d6080e25b02e080c5118d54dac1eed2 /plugin_uname.c
parente535da4cd01aa8b4e35958707d9bafe7cdc6b24d (diff)
downloadlcd4linux-b83507bad699d4c9d3387d52d2aa41e29399ea41.tar.gz
more cygwin fixes
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1002 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugin_uname.c')
-rw-r--r--plugin_uname.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin_uname.c b/plugin_uname.c
index 77ac4ca..d2a561d 100644
--- a/plugin_uname.c
+++ b/plugin_uname.c
@@ -68,7 +68,7 @@ static void my_uname(RESULT * result, RESULT * arg1)
value = utsbuf.version;
} else if (strcasecmp(key, "machine") == 0) {
value = utsbuf.machine;
-#if defined(_GNU_SOURCE) && ! defined(__APPLE__)
+#if defined(_GNU_SOURCE) && ! defined(__APPLE__) && ! defined(__CYGWIN__)
} else if (strcasecmp(key, "domainname") == 0) {
value = utsbuf.domainname;
#endif