summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--include/Makefile.am4
-rw-r--r--include/libast.h2
3 files changed, 5 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 167ed0d..9f8e166 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,7 +36,7 @@ AC_CONFIG_MACRO_DIR([.])
AC_CONFIG_HEADERS([config.h include/libast/sysdefs.h])
AC_CONFIG_FILES([include/libast/types.h Makefile include/Makefile
- include/libast/Makefile src/Makefile test/Makefile
+ src/Makefile test/Makefile
libast-config])
dnl# Set some basic variables
diff --git a/include/Makefile.am b/include/Makefile.am
index 3fcaa9e..9b7959f 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -5,9 +5,9 @@ nobase_include_HEADERS = libast.h libast/array.h libast/avl_tree.h \
libast/mutex_if.h libast/obj.h libast/objpair.h \
libast/pthreads.h libast/regexp.h libast/socket.h libast/str.h \
libast/thread_if.h libast/tok.h libast/url.h libast/ustr.h \
- libast/vector_if.h
+ libast/vector_if.h libast/sysdefs.h libast/types.h
-nodist_include_HEADERS = libast/sysdefs.h libast/types.h
+# nodist_include_HEADERS = libast/sysdefs.h libast/types.h
noinst_HEADERS = libast_internal.h
libast/types.h: libast/types.h.in
diff --git a/include/libast.h b/include/libast.h
index d966df3..5417746 100644
--- a/include/libast.h
+++ b/include/libast.h
@@ -3016,4 +3016,6 @@ static void (*fatal_error)(const char *, ...) = libast_fatal_error;
#endif /* LIBAST_COMPAT_05_API */
+# define MEMSET(s, c, n) memset(s, c, n)
+
#endif /* _LIBAST_H_ */