Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cystatsd/collector/statsd_proto.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "statsd_proto.hpp"
#include <cstring>
#define __STDC_FORMAT_MACROS
#include <inttypes.h>

using namespace std;
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
from Cython.Build import cythonize
try:
from Cython.Build import cythonize
except ImportError:
cythonize = lambda ext: [ext]

from distutils.core import setup, Extension

OPTIMIZED = '-O2'
Expand Down