Commit 83f54d90 authored by Robin Stacey's avatar Robin Stacey

Problem: ZMQ_HAVE_O_CLOEXEC always disabled

Solution: Escape quotes in cmake test.
parent f1c72dc8
......@@ -41,7 +41,7 @@ macro(zmq_check_o_cloexec)
int main(int argc, char *argv [])
{
int s = open ("/dev/null", O_CLOEXEC | O_RDONLY);
int s = open (\"/dev/null\", O_CLOEXEC | O_RDONLY);
return (s == -1);
}
"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment