package/libkrb5: fix BR2_SHARED_STATIC_LIBS build
Fix the following build failure with BR2_SHARED_STATIC_LIBS raised since the addition of the package in commit7ae94b51ed
andbd13166a40
configure: error: --enable-static must be specified with --disable-shared Fixes: - http://autobuild.buildroot.org/results/dadbf9f77ffdcc4d4e48c6d7e6beb5da303a8074 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
3204fe4b4e
commit
d0d7076113
@ -37,6 +37,11 @@ LIBKRB5_CONF_OPTS = \
|
||||
--without-tcl \
|
||||
--disable-rpath
|
||||
|
||||
# Enabling static and shared at the same time is not supported
|
||||
ifeq ($(BR2_SHARED_STATIC_LIBS),y)
|
||||
LIBKRB5_CONF_OPTS += --disable-static
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENLDAP),y)
|
||||
LIBKRB5_CONF_OPTS += --with-ldap
|
||||
LIBKRB5_DEPENDENCIES += openldap
|
||||
|
Loading…
Reference in New Issue
Block a user