Displaying 3 results from an estimated 3 matches for "duse_gcrypt".
2010 Jun 04
0
Fwd: [Xen-devel] Xen 4.0 in debian packages? Blktap2 suport
...d what binary
> should I package. That is, if I get enough time after
> I get approved as a DD before Squeeze is frozen.
>
AFAIK blktap2 can be compiled against libgcrypt, see
tools/blktap2/drivers/Makefile:30
ifeq ($(CONFIG_Linux),y)
ifeq ($(shell . ./check_gcrypt $(CC)),yes)
CFLAGS += -DUSE_GCRYPT
CRYPT_LIB += -lgcrypt
else
CRYPT_LIB += -lcrypto
$(warning === libgcrypt not installed: falling back to libcrypto ===)
endif
else
CRYPT_LIB += -lcrypto
endif
just make sure ifeq ($(shell . ./check_gcrypt $(CC)),yes) succeed on
your system.
In any case ssl is only used to calculate MD5, I'll p...
2010 Jun 02
1
build xen4.0 fail in blktap2 module
uname -a:Linux DC26 2.6.30.10 #1 SMP Wed Jun 2 04:34:53 PDT 2010 i686 i686 i386 GNU/Linux
OS:CentOS5.5
build xen
#make all
Errors:
include -I../../../tools/libxc -I../../../tools/include -I ../../../tools/libaio/src -I ../../../tools/memshr -D_GNU_SOURCE -DUSE_NFS_LOCKS -DUSE_GCRYPT -c -o tapdisk-queue.o tapdisk-queue.c
In file included from tapdisk-queue.c:44:
libaio-compat.h:82:3: error: #error __NR_eventfd?
make[5]: *** [tapdisk-queue.o] Error 1
make[5]: Leaving directory `/root/xen-4.0.0/tools/blktap2/drivers'
make[4]: *** [subdir-install-drivers] Error 2
make[4]: Leav...
2010 Jun 04
1
[Fwd: Re: [Xen-devel] Xen 4.0 in debian packages?]
...what binary
> should I package. That is, if I get enough time after
> I get approved as a DD before Squeeze is frozen.
>
AFAIK blktap2 can be compiled against libgcrypt, see
tools/blktap2/drivers/Makefile:30
ifeq ($(CONFIG_Linux),y)
ifeq ($(shell . ./check_gcrypt $(CC)),yes)
CFLAGS += -DUSE_GCRYPT
CRYPT_LIB += -lgcrypt
else
CRYPT_LIB += -lcrypto
$(warning === libgcrypt not installed: falling back to libcrypto ===)
endif
else
CRYPT_LIB += -lcrypto
endif
just make sure ifeq ($(shell . ./check_gcrypt $(CC)),yes) succeed on
your system.
In any case ssl is only used to calculate MD5, I'll p...