Commit 0a5e5534 authored by Thomas Petazzoni's avatar Thomas Petazzoni Committed by Peter Korsgaard
Browse files

packages: remove --{enable,disable}-{shared,static} from autotools packages



Now that those values are passed at the autotools infrastructure
level, there's no need for every package to pass inconsistent values.

Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 009d8fce
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -39,9 +39,7 @@ ATK_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes \
		jm_cv_func_working_re_compile_pattern=yes ac_use_included_regex=no \
		gl_cv_c_restrict=no ac_cv_prog_F77=no

ATK_CONF_OPT =  --enable-shared \
		--enable-static \
		--disable-glibtest --enable-explicit-deps=no \
ATK_CONF_OPT =  --disable-glibtest --enable-explicit-deps=no \
		--disable-debug

ifeq ($(BR2_PACKAGE_XORG7),y)
@@ -57,8 +55,6 @@ ATK_DEPENDENCIES = libglib2 host-pkg-config
HOST_ATK_DEPENDENCIES = host-libglib2 host-pkg-config

HOST_ATK_CONF_OPT = \
		--enable-shared \
		--disable-static \
		--disable-glibtest

$(eval $(call AUTOTARGETS,package,atk))
+0 −1
Original line number Diff line number Diff line
@@ -33,7 +33,6 @@ define BERKELEYDB_CONFIGURE_CMDS
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--with-gnu-ld \
		--enable-shared \
		--disable-cxx \
		--disable-java \
		--disable-rpc \
+0 −4
Original line number Diff line number Diff line
@@ -11,8 +11,6 @@ DIRECTFB_AUTORECONF = YES
DIRECTFB_INSTALL_STAGING = YES
DIRECTFB_CONF_OPT = \
	--localstatedir=/var \
	--enable-static \
	--enable-shared \
	--disable-explicit-deps \
	--program-prefix='' \
	--enable-zlib \
@@ -123,8 +121,6 @@ endif

HOST_DIRECTFB_DEPENDENCIES = host-pkg-config host-libpng
HOST_DIRECTFB_CONF_OPT = \
		--enable-shared \
		--disable-static \
		--disable-debug \
		--disable-multi \
		--enable-png \
+0 −2
Original line number Diff line number Diff line
@@ -12,8 +12,6 @@ EXPAT_INSTALL_TARGET = YES
EXPAT_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) installlib
EXPAT_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) installlib

EXPAT_CONF_OPT = --enable-shared

EXPAT_DEPENDENCIES = host-pkg-config

$(eval $(call AUTOTARGETS,package,expat))
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ FLTK_INSTALL_TARGET = YES
FLTK_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) STRIP=$(TARGET_STRIP) install
FLTK_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) STRIP=$(TARGET_STRIP) install

FLTK_CONF_OPT = --enable-shared --enable-threads --with-x
FLTK_CONF_OPT = --enable-threads --with-x

FLTK_DEPENDENCIES = xserver_xorg-server xlib_libXt

Loading