mod_event_zmq: Use sed to patch configure.in to use AC_CONFIG_HEADERS
AM_CONFIG_HEADER is deprecated in automake 1.13.1 (and temporarily not available in 1.13), the replacement is available in autoconf-2.59 (and maybe before). NOTE: Remove sed hackery when upstream has released a fixed version Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
This commit is contained in:
parent
c7c4bda847
commit
5bba01f5c3
|
@ -15,6 +15,8 @@ include $(BASE)/build/modmake.rules
|
|||
|
||||
$(ZMQ_DIR):
|
||||
$(GETLIB) $(ZMQ_BASEURL) $(ZMQ).tar.gz || $(GETLIB) $(ZMQ_BASEURL_ALT) $(ZMQ).tar.gz
|
||||
sed -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' $(ZMQ_DIR)/configure.in > $(ZMQ_DIR)/configure.in.tmp && \
|
||||
mv $(ZMQ_DIR)/configure.in.tmp $(ZMQ_DIR)/configure.in
|
||||
cd $(ZMQ_DIR) && ./autogen.sh
|
||||
|
||||
$(ZMQ_BUILDDIR)/Makefile: $(ZMQ_DIR)
|
||||
|
|
Loading…
Reference in New Issue