This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMU Common Lisp".
The branch, master has been updated via bc89abe66bee4ec050a7f79d27c12e877b6eac61 (commit) from 30696a3a294bf520a303108d6ada81c741cd2590 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit bc89abe66bee4ec050a7f79d27c12e877b6eac61 Author: Raymond Toy toy.raymond@gmail.com Date: Wed Jul 23 21:26:20 2014 -0700
Add fdlibm trig routines for NetBSD.
This is untested, but I'm assuming NetBSD needs fdlibm as well.
diff --git a/src/lisp/Config.x86_netbsd b/src/lisp/Config.x86_netbsd index 0d742f6..2074013 100644 --- a/src/lisp/Config.x86_netbsd +++ b/src/lisp/Config.x86_netbsd @@ -7,3 +7,23 @@ OS_LINK_FLAGS = -dynamic -export-dynamic OS_LIBS =
EXEC_FINAL_OBJ = exec-final.o + +OS_SRC += k_sin.c k_cos.c k_tan.c s_sin.c s_cos.c s_tan.c sincos.c + +k_sin.o : k_sin.c + $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $< +k_cos.o : k_cos.c + $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $< +k_tan.o : k_tan.c + $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $< + +s_sin.o : s_sin.c + $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $< +s_cos.o : s_cos.c + $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $< +s_tan.o : s_tan.c + $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $< + +sincos.o : sincos.c + $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $< +
-----------------------------------------------------------------------
Summary of changes: src/lisp/Config.x86_netbsd | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+)
hooks/post-receive