]> git.pld-linux.org Git - packages/qemu.git/blob - qemu-system-libcacard.patch
088680660abff26193d907f386f6cc692f7337a1
[packages/qemu.git] / qemu-system-libcacard.patch
1 --- qemu-1.3.0/configure.orig   2012-12-16 11:06:51.151203881 +0100
2 +++ qemu-1.3.0/configure        2012-12-16 11:07:56.571202516 +0100
3 @@ -2767,9 +2767,10 @@
4  #include <pk11pub.h>
5  int main(void) { PK11_FreeSlot(0); return 0; }
6  EOF
7 -    smartcard_includes="-I\$(SRC_PATH)/libcacard"
8 -    libcacard_libs="$($pkg_config --libs nss 2>/dev/null) $glib_libs"
9 -    libcacard_cflags="$($pkg_config --cflags nss 2>/dev/null) $glib_cflags"
10 +    libcacard_libs="$($pkg_config --libs libcacard 2>/dev/null)"
11 +    libcacard_cflags="$($pkg_config --cflags libcacard 2>/dev/null)"
12 +    nss_libs="$($pkg_config --libs nss 2>/dev/null) $glib_libs"
13 +    nss_cflags="$($pkg_config --cflags nss 2>/dev/null) $glib_cflags"
14      test_cflags="$libcacard_cflags"
15      # The header files in nss < 3.13.3 have a bug which causes them to
16      # emit a warning. If we're going to compile QEMU with -Werror, then
17 @@ -2779,11 +2780,10 @@
18      fi
19      if test -n "$libtool" &&
20              $pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 && \
21 -      compile_prog "$test_cflags" "$libcacard_libs"; then
22 +      compile_prog "$test_cflags" "$nss_libs"; then
23          smartcard_nss="yes"
24 -        QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags"
25 -        QEMU_INCLUDES="$QEMU_INCLUDES $smartcard_includes"
26 -        libs_softmmu="$libcacard_libs $libs_softmmu"
27 +        QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags $nss_cflags"
28 +        libs_softmmu="$libcacard_libs $nss_libs $libs_softmmu"
29      else
30          if test "$smartcard_nss" = "yes"; then
31              feature_not_found "nss"
32 @@ -3532,6 +3529,8 @@
33    echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak
34    echo "libcacard_libs=$libcacard_libs" >> $config_host_mak
35    echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak
36 +  echo "nss_libs=$nss_libs" >> $config_host_mak
37 +  echo "nss_cflags=$nss_cflags" >> $config_host_mak
38  fi
39  
40  if test "$usb_redir" = "yes" ; then
41 --- qemu-1.3.0/Makefile.orig    2012-12-03 20:37:05.000000000 +0100
42 +++ qemu-1.3.0/Makefile 2012-12-16 11:08:58.001201236 +0100
43 @@ -111,9 +111,6 @@
44  include $(SRC_PATH)/Makefile.objs
45  include $(SRC_PATH)/tests/Makefile
46  endif
47 -ifeq ($(CONFIG_SMARTCARD_NSS),y)
48 -include $(SRC_PATH)/libcacard/Makefile
49 -endif
50  
51  all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all
52  
53 --- qemu-1.5.0/Makefile.objs.orig       2013-05-20 17:34:39.000000000 +0200
54 +++ qemu-1.5.0/Makefile.objs    2013-05-26 17:46:51.190865264 +0200
55 @@ -74,8 +74,6 @@
56  
57  common-obj-$(CONFIG_SECCOMP) += qemu-seccomp.o
58  
59 -common-obj-$(CONFIG_SMARTCARD_NSS) += $(libcacard-y)
60 -
61  ######################################################################
62  # qapi
63  
64 --- qemu-1.5.0/hw/usb/ccid-card-passthru.c.orig 2013-05-20 17:34:39.000000000 +0200
65 +++ qemu-1.5.0/hw/usb/ccid-card-passthru.c      2013-05-26 17:58:20.660836330 +0200
66 @@ -12,7 +12,7 @@
67  #include "qemu/sockets.h"
68  #include "monitor/monitor.h"
69  #include "ccid.h"
70 -#include "libcacard/vscard_common.h"
71 +#include <cacard/vscard_common.h>
72  
73  #define DPRINTF(card, lvl, fmt, ...)                    \
74  do {                                                    \
This page took 0.028835 seconds and 2 git commands to generate.