It looks like the unnecessary internal include dirs in the cephfs
cmake file were the reason language="c++" was added to pybind. The
system utime.h was being aliased by ceph's include/utime.h. Fix this
by using -iquote instead of -I, to only add ceph's include dir as a
search path for quoted #includes, not sytem headers. The automake
build already uses -iquote here.