Displaying 2 results from an estimated 2 matches for "a111521".
Did you mean:
111521
2012 Feb 20
0
[PATCH 1/2] build: check if libm is needed in configure
...for it. It is needed at least for qemu-ga and qemu-system.
Signed-off-by: Roger Pau Monne <roger.pau@entel.upc.edu>
---
Makefile.target | 4 ----
configure | 14 ++++++++++++++
2 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/Makefile.target b/Makefile.target
index a111521..1bfd419 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -33,10 +33,6 @@ endif
PROGS=$(QEMU_PROG)
STPFILES=
-ifndef CONFIG_HAIKU
-LIBS+=-lm
-endif
-
config-target.h: config-target.h-timestamp
config-target.h-timestamp: config-target.mak
diff --git a/configure b/configure
index b113f60...
2012 Feb 18
0
Re: [Qemu-devel] [PATCH] build: add needed missing libraries libm and librt
...LIBS += or must go in $(LIBS_QGA) or new
conditionalized variable.
>>
>> $(qapi-dir)/test-qapi-types.c $(qapi-dir)/test-qapi-types.h :\
>> $(SRC_PATH)/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-types.py
>> diff --git a/Makefile.target b/Makefile.target
>> index a111521..95d6bc0 100644
>> --- a/Makefile.target
>> +++ b/Makefile.target
>> @@ -33,6 +33,8 @@ endif
>> PROGS=$(QEMU_PROG)
>> STPFILES=
>>
>> +LIBS+=-lrt
>> +
>> ifndef CONFIG_HAIKU
>> LIBS+=-lm
>> endif
Here's the special treatme...