Hi Jani,
Your commit r 1.16 to ext/date/lib/timelib_structs.h broke the build on
Windows platform.
-#include "timelib_config.h"
+#include <timelib_config.h>
Why was this change neccessary and if it's not really, would you please
revert it?
Edin
Edin Kadribasic wrote:
Hi Jani,
Your commit r 1.16 to ext/date/lib/timelib_structs.h broke the build on
Windows platform.-#include "timelib_config.h"
+#include <timelib_config.h>Why was this change neccessary and if it's not really, would you please
revert it?
After strugling to get an anwer for this one it appears that the problem
is that Derick wants to maintain timelib as an independet 3rd party lib
that is also part of PHP core which means that in order for PHP to build
we need to add "timelib" to the global CFLAGS (or at least to the flags
of any extension what wants to use it). A mere include
"ext/date/php_date.h" wouldn't cut it.
Does anyone find this less than optimal?
Edin