We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c79eef commit 3cc82cfCopy full SHA for 3cc82cf
bootstrap
@@ -19,7 +19,11 @@
19
20
aclocal -I m4
21
autoheader
22
-libtoolize --automake
+if [[ "$OSTYPE" == "darwin"* ]]; then
23
+ glibtoolize --automake
24
+else
25
+ libtoolize --automake
26
+fi
27
automake --add-missing
28
autoconf
29
src/httpserver/webserver.hpp
@@ -36,6 +36,7 @@
36
#include <set>
37
#include <string>
38
#include <utility>
39
+#include <stdlib.h>
40
#include <memory>
41
#include <deque>
42
0 commit comments