mirror of
https://github.com/qemu/qemu.git
synced 2024-11-24 03:13:44 +08:00
libcacard: require libtool to build it
Do not fail at build time, instead just disable the library if libtool is not present. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
e832341bde
commit
b6fc675b25
2
Makefile
2
Makefile
@ -160,12 +160,14 @@ libqemustub.a: $(stub-obj-y)
|
||||
######################################################################
|
||||
# Support building shared library libcacard
|
||||
|
||||
ifeq ($(CONFIG_SMARTCARD_NSS),y)
|
||||
.PHONY: libcacard.la install-libcacard
|
||||
libcacard.la: $(oslib-obj-y) qemu-timer-common.o $(trace-obj-y)
|
||||
$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" libcacard.la,)
|
||||
|
||||
install-libcacard: libcacard.la
|
||||
$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" install-libcacard,)
|
||||
endif
|
||||
|
||||
######################################################################
|
||||
|
||||
|
3
configure
vendored
3
configure
vendored
@ -2824,7 +2824,8 @@ EOF
|
||||
if test "$werror" = "yes"; then
|
||||
test_cflags="-Werror $test_cflags"
|
||||
fi
|
||||
if $pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 && \
|
||||
if test -n "$libtool" &&
|
||||
$pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 && \
|
||||
compile_prog "$test_cflags" "$libcacard_libs"; then
|
||||
smartcard_nss="yes"
|
||||
QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags"
|
||||
|
@ -31,13 +31,6 @@ all: libcacard.la libcacard.pc
|
||||
#########################################################################
|
||||
# Rules for building libcacard standalone library
|
||||
|
||||
ifeq ($(LIBTOOL),)
|
||||
libcacard.la:
|
||||
@echo "libtool is missing, please install and rerun configure"; exit 1
|
||||
|
||||
install-libcacard:
|
||||
@echo "libtool is missing, please install and rerun configure"; exit 1
|
||||
else
|
||||
libcacard.la: $(libcacard.lib-y) $(QEMU_OBJS_LIB)
|
||||
$(call quiet-command,$(LIBTOOL) --mode=link --tag=CC $(CC) -rpath $(libdir) -o $@ $^ $(libcacard_libs)," lt LINK $@")
|
||||
|
||||
@ -63,4 +56,3 @@ install-libcacard: libcacard.pc libcacard.la vscclient
|
||||
for inc in *.h; do \
|
||||
$(INSTALL_DATA) $(libcacard_srcpath)/$$inc "$(DESTDIR)$(libcacard_includedir)"; \
|
||||
done
|
||||
endif
|
||||
|
@ -21,11 +21,7 @@ QEMU_CFLAGS += -I$(<D) -I$(@D)
|
||||
$(call quiet-command,$(CC) $(QEMU_INCLUDES) $(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) -c -o $@ $<," CC $(TARGET_DIR)$@")
|
||||
|
||||
ifeq ($(LIBTOOL),)
|
||||
%.lo: %.c
|
||||
@echo "missing libtool. please install and rerun configure"; exit 1
|
||||
%.lo: %.dtrace
|
||||
@echo "missing libtool. please install and rerun configure."; exit 1
|
||||
|
||||
LIBTOOL = /bin/false
|
||||
LINK = $(call quiet-command,$(CC) $(QEMU_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ \
|
||||
$(sort $(filter %.o, $1)) $(filter-out %.o, $1) \
|
||||
$(LIBS)," LINK $(TARGET_DIR)$@")
|
||||
|
Loading…
Reference in New Issue
Block a user