Ticket #54573: use-macports-gmp.patch
File use-macports-gmp.patch, 937 bytes (added by pietvo (Pieter van Oostrum), 7 years ago) |
---|
-
src/lib/Makefile.in
old new 69 69 $(CC) -g $(SOLIB_FLAGS) $(core_objects) $(fricas_c_runtime_extra) -o $@ 70 70 71 71 $(GMP_WRAP_SO): $(srcdir)/gmp_wrap.c 72 $(CC) -g -fPIC $(SOLIB_FLAGS) $< $(GMP_LIB) -o $@72 $(CC) $(CPPFLAGS) $(LDFLAGS) -g -fPIC $(SOLIB_FLAGS) $< $(GMP_LIB) -o $@ 73 73 endif 74 74 75 75 .PRECIOUS: %.$(OBJEXT) -
src/lisp/num_gmp.lisp
old new 819 819 (if (ignore-errors (|quiet_load_alien| "libgmp.so") t) 820 820 (if (ignore-errors 821 821 (|quiet_load_alien| wrapper-lib) t) 822 (install-gmp-multiplication) 823 (setf *gmp-multiplication-initialized* t))))) 822 (progn 823 (install-gmp-multiplication) 824 (setf *gmp-multiplication-initialized* t)))))) 824 825 825 826 )