diff options
Diffstat (limited to 'm4')
-rw-r--r-- | m4/eina_config.m4 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/m4/eina_config.m4 b/m4/eina_config.m4 new file mode 100644 index 0000000000..3a0e50b526 --- /dev/null +++ b/m4/eina_config.m4 @@ -0,0 +1,8 @@ +dnl use: EINA_CONFIG(configsuffix, testcond) +AC_DEFUN([EINA_CONFIG], +[ +if $2; then + EINA_CONFIGURE_$1="#define EINA_$1" +fi +AC_SUBST(EINA_CONFIGURE_$1) +]) |