31 lines
988 B
Diff
31 lines
988 B
Diff
|
changeset: 23599:d3027374a8c0
|
||
|
user: Tim Deegan <Tim.Deegan@citrix.com>
|
||
|
date: Mon Jun 27 14:48:57 2011 +0100
|
||
|
files: tools/xenpaging/Makefile
|
||
|
description:
|
||
|
tools: fix build after recent xenpaging changes
|
||
|
|
||
|
xenpaging now uses pthreads, so must link appropriately.
|
||
|
|
||
|
Signed-off-by: Tim Deegan <Tim.Deegan@citrix.com>
|
||
|
Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
|
||
|
|
||
|
|
||
|
---
|
||
|
tools/xenpaging/Makefile | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
Index: xen-4.1.2-testing/tools/xenpaging/Makefile
|
||
|
===================================================================
|
||
|
--- xen-4.1.2-testing.orig/tools/xenpaging/Makefile
|
||
|
+++ xen-4.1.2-testing/tools/xenpaging/Makefile
|
||
|
@@ -4,7 +4,7 @@ include $(XEN_ROOT)/tools/Rules.mk
|
||
|
CFLAGS += -I $(XEN_XC)
|
||
|
CFLAGS += -I ./
|
||
|
CFLAGS += $(CFLAGS_libxenctrl) $(CFLAGS_libxenstore)
|
||
|
-LDLIBS += $(LDLIBS_libxenctrl) $(LDLIBS_libxenstore)
|
||
|
+LDLIBS += $(LDLIBS_libxenctrl) $(LDLIBS_libxenstore) -pthread
|
||
|
|
||
|
POLICY = default
|
||
|
|