diff options
| author | Paul Eggert | 2020-12-25 02:15:45 -0800 |
|---|---|---|
| committer | Paul Eggert | 2020-12-25 02:36:02 -0800 |
| commit | 5880c7caab394eac55c44d4be42b2f45dbd9bc53 (patch) | |
| tree | f7823861f2c6dec24c3f4e8b90f9ca82b26c0cfa | |
| parent | ec8a17e938c3ef213709ea6b6b3e565333a9c508 (diff) | |
| download | emacs-5880c7caab394eac55c44d4be42b2f45dbd9bc53.tar.gz emacs-5880c7caab394eac55c44d4be42b2f45dbd9bc53.zip | |
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.
| -rw-r--r-- | test/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 67d203df297..b6cf6493e32 100644 --- a/test/Makefile.in +++ b/test/Makefile.in | |||
| @@ -268,6 +268,7 @@ $(test_module): $(test_module:${SO}=.c) ../src/emacs-module.h | |||
| 268 | $(AM_V_CCLD)$(CC) -shared $(CPPFLAGS) $(MODULE_CFLAGS) $(LDFLAGS) \ | 268 | $(AM_V_CCLD)$(CC) -shared $(CPPFLAGS) $(MODULE_CFLAGS) $(LDFLAGS) \ |
| 269 | -o $@ $< $(LIBGMP) \ | 269 | -o $@ $< $(LIBGMP) \ |
| 270 | $(and $(GMP_H),$(srcdir)/../lib/mini-gmp-gnulib.c) \ | 270 | $(and $(GMP_H),$(srcdir)/../lib/mini-gmp-gnulib.c) \ |
| 271 | $(if $(OMIT_GNULIB_MODULE_free-posix),,$(srcdir)/../lib/free.c) \ | ||
| 271 | $(srcdir)/../lib/timespec.c $(srcdir)/../lib/gettime.c | 272 | $(srcdir)/../lib/timespec.c $(srcdir)/../lib/gettime.c |
| 272 | endif | 273 | endif |
| 273 | 274 | ||