Displaying 3 results from an estimated 3 matches for "stpfile".
Did you mean:
supfile
2008 Apr 18
2
Correspondence and detrended correspondence analysis
...the vegetation categories keep same relationships between them in all three plots - which is expected. If some code is required i can provide it but i didn't want to clutter the message too much. But i am providing the resulting plots in case they will make my problem clearer.
PCA plot: ftp://stpfiles.er.usgs.gov/Monica/R_Data/pca_veg_lidarclass_phase2.pdf
CA plot: ftp://stpfiles.er.usgs.gov/Monica/R_Data/corresp_anal_phase2.pdf
DCA plot: ftp://stpfiles.er.usgs.gov/Monica/R_Data/detrend_corresp_anal_phase2.pdf
DCA how i would expect it: ftp://stpfiles.er.usgs.gov/Monica/R_Data/detrend_corresp_a...
2012 Feb 20
0
[PATCH 1/2] build: check if libm is needed in configure
....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..7bcd547 100755
--- a/configure
+++ b/configure
@@ -2447,6 +2447,20 @@ elif compile_prog "" "-lrt&...
2012 Feb 18
0
Re: [Qemu-devel] [PATCH] build: add needed missing libraries libm and librt
...; $(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 treatment that avoids adding -lm on Haiku host
because it doesn't have a libm.so (git-blame would've told you it's in
libroot.so there); on Darwin there&...