[cause] 'NULL' was not declared in this scope
Common issues with GCC-4.6
GCC-4.6 is again more strict, introduces new warnings,
and lets packages fail to build, which did succeed to build with earlier GCC versions.
Reference : https://wiki.ubuntu.com/GCC4.6
[solution] Add #include <cstdlib> to find NULL definition
Change-Id: I2c2258339e3387cba54692fb7a6f7e0500de46e7
Signed-off-by: Adeel Kazmi <adeel.kazmi@samsung.com>
#if DALI_GLES_VERSION >= 30
#include <GLES3/gl3.h>
#else
+#include <cstdlib>
#include <GLES2/gl2.h>
#endif