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>
20 lines
459 B
Makefile
20 lines
459 B
Makefile
#############################################################
|
|
#
|
|
# popt
|
|
#
|
|
#############################################################
|
|
POPT_VERSION:=1.15
|
|
POPT_SITE:=http://rpm5.org/files/popt
|
|
POPT_INSTALL_STAGING = YES
|
|
POPT_INSTALL_TARGET = YES
|
|
|
|
|
|
POPT_CONF_ENV = ac_cv_va_copy=yes
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
|
POPT_CONF_ENV += am_cv_lib_iconv=yes
|
|
POPT_CONF_OPT += --with-libiconv-prefix=$(STAGING_DIR)/usr
|
|
endif
|
|
|
|
$(eval $(call AUTOTARGETS,package,popt))
|