[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 5880c7c 1/2: Adjust test_module to recent Gnulib changes
From: |
Paul Eggert |
Subject: |
master 5880c7c 1/2: Adjust test_module to recent Gnulib changes |
Date: |
Fri, 25 Dec 2020 05:36:20 -0500 (EST) |
branch: master
commit 5880c7caab394eac55c44d4be42b2f45dbd9bc53
Author: Paul Eggert <eggert@cs.ucla.edu>
Commit: Paul Eggert <eggert@cs.ucla.edu>
Adjust test_module to recent Gnulib changes
* test/Makefile.in ($(test_module)): Also compile lib/free.c
if it is needed to define rpl_free.
---
test/Makefile.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/test/Makefile.in b/test/Makefile.in
index 67d203d..b6cf649 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -268,6 +268,7 @@ $(test_module): $(test_module:${SO}=.c)
../src/emacs-module.h
$(AM_V_CCLD)$(CC) -shared $(CPPFLAGS) $(MODULE_CFLAGS) $(LDFLAGS) \
-o $@ $< $(LIBGMP) \
$(and $(GMP_H),$(srcdir)/../lib/mini-gmp-gnulib.c) \
+ $(if $(OMIT_GNULIB_MODULE_free-posix),,$(srcdir)/../lib/free.c) \
$(srcdir)/../lib/timespec.c $(srcdir)/../lib/gettime.c
endif