diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-04-21 22:56:49 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-04-21 22:56:49 +0300 |
commit | 1c7554dba77fd2f376cf569d0d78d9314830d23f (patch) | |
tree | 48aa6ceabf02d6f001867cd26ed011d441f6c458 /support/Makefile.am | |
parent | de59839144d666b3d8369395159c85ebb40e27fe (diff) | |
download | egawk-1c7554dba77fd2f376cf569d0d78d9314830d23f.tar.gz egawk-1c7554dba77fd2f376cf569d0d78d9314830d23f.tar.bz2 egawk-1c7554dba77fd2f376cf569d0d78d9314830d23f.zip |
Remove dependency on GLIBC private symbol.
Diffstat (limited to 'support/Makefile.am')
-rw-r--r-- | support/Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/support/Makefile.am b/support/Makefile.am index 1f42c83c..8aba8073 100644 --- a/support/Makefile.am +++ b/support/Makefile.am @@ -36,7 +36,9 @@ EXTRA_DIST = \ regcomp.c \ regex_internal.c \ regex_internal.h \ - regexec.c + regexec.c \ + malloc/dynarray.h \ + malloc/dynarray-skeleton.c # what to make and install noinst_LIBRARIES = libsupport.a @@ -56,7 +58,8 @@ libsupport_a_SOURCES = \ regex.c \ regex.h \ verify.h \ - xalloc.h + xalloc.h \ + malloc/dynarray_resize.c # For some make's, e.g. OpenBSD, that don't define this RM = rm -f |