stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=2f22a634b0677dffe696684d1af1f1025e105189
commit 2f22a634b0677dffe696684d1af1f1025e105189 Author: Stefan Schmidt <[email protected]> Date: Mon Jun 6 11:07:51 2016 +0200 eolian_cxx: add missing libgen.h include for basename() to fix build on OS X On Linux this went through and has gone unnoticed. basename() needs libgen.h though and eolian_cxx was not including it. --- src/bin/eolian_cxx/eolian_cxx.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/eolian_cxx/eolian_cxx.cc b/src/bin/eolian_cxx/eolian_cxx.cc index 12cd5f4..8530df2 100644 --- a/src/bin/eolian_cxx/eolian_cxx.cc +++ b/src/bin/eolian_cxx/eolian_cxx.cc @@ -5,6 +5,7 @@ #include <stdlib.h> #include <unistd.h> #include <getopt.h> +#include <libgen.h> #include <string> #include <algorithm> --
