1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-11-19 06:52:49 +02:00

octave: add dependency to fortran runtime lib

This commit is contained in:
David Kühling 2011-01-02 16:52:41 +01:00
parent 9aaeb4623d
commit e013ed5a3b

View File

@ -27,7 +27,7 @@ define Package/octave/Default
SUBMENU:=Octave SUBMENU:=Octave
SECTION:=lang SECTION:=lang
CATEGORY:=Languages CATEGORY:=Languages
DEPENDS:= +libltdl +zlib +libpcre +libncurses +libreadline \ DEPENDS:= +libltdl +zlib +libpcre +libncurses +libreadline +libgfortran \
+octave-data +octave-data
#+fftw3 #+fftw3
#+GraphicsMagick #+GraphicsMagick
@ -69,6 +69,7 @@ endef
# fftw contains a lots of code. not much use for soft-float anyways. try to # fftw contains a lots of code. not much use for soft-float anyways. try to
# keep memory low and go without fftw (using smaller fftpack instead). # keep memory low and go without fftw (using smaller fftpack instead).
# todo: verify how much RAM that actually safes # todo: verify how much RAM that actually safes
# todo : need -enable-rpath?
CONFIGURE_ARGS += --without-x --without-fftw CONFIGURE_ARGS += --without-x --without-fftw
#MAKE_FLAGS += "LD=$(TARGET_CROSS)gcc -nostdlib" #MAKE_FLAGS += "LD=$(TARGET_CROSS)gcc -nostdlib"
@ -77,7 +78,7 @@ define Build/Configure
endef endef
define Build/Compile define Build/Compile
$(call Build/Compile/Default,-j3) $(call Build/Compile/Default,-j2)
endef endef
define Build/Install define Build/Install