comparison src/octave.mk @ 3646:f38e710f1d95

octave: add --no-x flag when compiling for mingw * src/octave.mk: add --no-x flag to configure when for mingw. * src/stable-octave.mk: add --no-x flag to configure when for mingw.
author John Donoghue <john.donoghue@ieee.org>
date Sun, 06 Jul 2014 07:16:05 -0400
parents f2503a486cce
children fc67e3ab9324
comparison
equal deleted inserted replaced
3645:75a1f1a468b9 3646:f38e710f1d95
66 $(PKG)_PREFIX := '$(HOST_PREFIX)' 66 $(PKG)_PREFIX := '$(HOST_PREFIX)'
67 $(PKG)_EXTRA_CONFIGURE_OPTIONS := \ 67 $(PKG)_EXTRA_CONFIGURE_OPTIONS := \
68 LDFLAGS='-Wl,-rpath-link,$(HOST_LIBDIR) -L$(HOST_LIBDIR)' 68 LDFLAGS='-Wl,-rpath-link,$(HOST_LIBDIR) -L$(HOST_LIBDIR)'
69 endif 69 endif
70 70
71 ifeq ($(MXE_SYSTEM),mingw)
72 $(PKG)_EXTRA_CONFIGURE_OPTIONS += --no-x
73 endif
74
71 define $(PKG)_UPDATE 75 define $(PKG)_UPDATE
72 echo 'Warning: Updates are temporarily disabled for package octave.' >&2; 76 echo 'Warning: Updates are temporarily disabled for package octave.' >&2;
73 echo $($(PKG)_VERSION) 77 echo $($(PKG)_VERSION)
74 endef 78 endef
75 79