change python config, add jupyter and ein

This commit is contained in:
2024-05-05 20:36:39 +02:00
parent b18d02d8d5
commit 8b80ceda39
168 changed files with 177127 additions and 46 deletions

19
lisp/zmq/src/Makefile.am Normal file
View File

@@ -0,0 +1,19 @@
SUBDIRS = $(MAYBE_LIBZMQ)
ACLOCAL_AMFLAGS = -I m4
lib_LTLIBRARIES = emacs-zmq.la
emacs_zmq_la_CFLAGS =
emacs_zmq_la_LDFLAGS = -module -avoid-version -shrext $(MODULE_EXT)
if WINDOWS
emacs_zmq_la_LDFLAGS += -no-undefined
endif
if ZMQ_BUILD_LOCALLY
# Its necessary to pass static libraries directly to the linker since libtool
# won't build emacs-zmq as a dynamic module on Windows otherwise.
emacs_zmq_la_LDFLAGS += -Wl,libzmq/src/.libs/libzmq.a
emacs_zmq_la_CFLAGS += -Ilibzmq/include -fvisibility=hidden
emacs_zmq_la_CPPFLAGS = -DZMQ_BUILD_DRAFT_API=1
endif
emacs_zmq_la_SOURCES = socket.c context.c msg.c constants.c util.c core.c poll.c emacs-zmq.c