on fl-core Makefile there is a wrong condition:
------------------------------------
ifdef COMSPEC
ADDPARAM := -lpthreadVC2
endif
.phony: all
all: $(OCT)
%.oct: %.cc
mkoctfile -s $< $(ADDPARAM)
-----------------------------------
on cygwin
$ echo $COMSPEC
C:\Windows\system32\cmd.exe
but there is no pthreadVC2 so the ifdef clause should be rewritten
or at least modified as attached
Regards
Marco
--- fl-core_old/src/Makefile 2011-02-06 20:09:03.000000000 +0100
+++ fl-core/src/Makefile 2011-12-31 12:24:56.801170500 +0100
@@ -1,9 +1,12 @@
OCT = fl_compose.oct
SRC := $(OCT:.oct=.cc)
BASE := $(OCT:.oct=)
+
ifdef COMSPEC
+ifneq ($(shell uname -o),Cygwin)
ADDPARAM := -lpthreadVC2
endif
+endif
.phony: all
all: $(OCT)
------------------------------------------------------------------------------
Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex
infrastructure or vast IT resources to deliver seamless, secure access to
virtual desktops. With this all-in-one solution, easily deploy virtual
desktops for less than the cost of PCs and save 60% on VDI infrastructure
costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox
_______________________________________________
Octave-dev mailing list
Octave-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/octave-dev