Skip to content

Instantly share code, notes, and snippets.

@pypt
Created October 16, 2013 08:59
Show Gist options
  • Save pypt/7004799 to your computer and use it in GitHub Desktop.
Save pypt/7004799 to your computer and use it in GitHub Desktop.
Homebrew "gearman" build fails on OS X 10.9 Mavericks GM because of the missing <tr1/cinttypes>. The include is now available as <cinttypes> only.
diff -ruN gearmand-1.1.9.orig/libgearman-1.0/gearman.h gearmand-1.1.9/libgearman-1.0/gearman.h
--- gearmand-1.1.9.orig/libgearman-1.0/gearman.h 2013-07-14 11:20:42.000000000 +0300
+++ gearmand-1.1.9/libgearman-1.0/gearman.h 2013-10-16 11:55:31.000000000 +0300
@@ -50,7 +50,7 @@
#endif
#ifdef __cplusplus
-# include <tr1/cinttypes>
+# include <cinttypes>
# include <cstddef>
# include <cstdlib>
# include <ctime>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment