0be744e495
Now that we have libtool-2.2.x patch support, we can get rid of a bunch of _LIBTOOL_PATH = NO, fixing (potential) cross link issues. Notice: php not changed, as it uses a very old 1.5 version for the embedded sqlite, where our buildroot-libtool-v1.5.patch doesn't apply. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
25 lines
689 B
Makefile
25 lines
689 B
Makefile
#############################################################
|
|
#
|
|
# libevent
|
|
#
|
|
#############################################################
|
|
LIBEVENT_VERSION = 1.4.12
|
|
LIBEVENT_SOURCE = libevent-$(LIBEVENT_VERSION)-stable.tar.gz
|
|
LIBEVENT_SITE = http://monkey.org/~provos/
|
|
|
|
LIBEVENT_AUTORECONF = NO
|
|
LIBEVENT_INSTALL_STAGING = YES
|
|
LIBEVENT_INSTALL_TARGET = YES
|
|
|
|
define LIBEVENT_REMOVE_PYSCRIPT
|
|
rm $(TARGET_DIR)/usr/bin/event_rpcgen.py
|
|
endef
|
|
|
|
# libevent installs a python script to target - get rid of it if we
|
|
# don't have python support enabled
|
|
ifneq ($(BR2_PACKAGE_PYTHON),y)
|
|
LIBEVENT_POST_INSTALL_TARGET_HOOKS += LIBEVENT_REMOVE_PYSCRIPT
|
|
endif
|
|
|
|
$(eval $(call AUTOTARGETS,package,libevent))
|