nixio: solaris does not recognize LOG_PERROR
authorSteven Barth <steven@midlink.org>
Mon, 16 Mar 2009 13:40:22 +0000 (13:40 +0000)
committerSteven Barth <steven@midlink.org>
Mon, 16 Mar 2009 13:40:22 +0000 (13:40 +0000)
libs/nixio/src/syslog.c

index b3d87e2..9b3581d 100644 (file)
@@ -35,7 +35,9 @@ static int nixio_openlog(lua_State *L) {
                } else if (!strcmp(flag, "pid")) {
                        option |= LOG_PID;
                } else if (!strcmp(flag, "perror")) {
+#ifdef LOG_PERROR
                        option |= LOG_PERROR;
+#endif
                } else if (!strcmp(flag, "ndelay")) {
                        option |= LOG_NDELAY;
                } else if (!strcmp(flag, "odelay")) {