dm: Remove dependency on libuuid

Since any uuid relevant action directly uses Linux kernel UAPI
(linux/uuid.h) the use of libuuid is not required.

Tracked-On: #6688
Signed-off-by: Helmut Buchsbaum <helmut.buchsbaum@opensource.tttech-industrial.com>
This commit is contained in:
Helmut Buchsbaum 2022-04-05 12:08:48 +02:00 committed by acrnsi-robot
parent d3d0cba778
commit 7637e53963
3 changed files with 1 additions and 2 deletions

View File

@ -83,7 +83,6 @@ LIBS = -lrt
LIBS += -lpthread
LIBS += -lcrypto
LIBS += -lpciaccess
LIBS += -luuid
LIBS += -lusb-1.0
LIBS += -lacrn-mngr
LIBS += -lcjson

View File

@ -6,6 +6,7 @@
#ifndef _TIMER_H_
#define _TIMER_H_
#include <time.h> // for struct itimerspec
#include <sys/param.h>
struct acrn_timer {

View File

@ -30,7 +30,6 @@
#define _VMMAPI_H_
#include <sys/param.h>
#include <uuid/uuid.h>
#include "types.h"
#include "macros.h"
#include "pm.h"