comparison src/octave.mk @ 3968:d0d5dacd1941

octave: add msys2 patch * src/mingw-default-octave-1-msys-fixes.patch: new file * src/mingw-default-octave-1-msys-fixes.patch: new file * dist-files.mk: add new patches * src/default-octave.mk: add ac_cv_search_tputs=-ltermcap configure option for native mingw * src/octave.mk: add ac_cv_search_tputs=-ltermcap configure option for native mingw
author John Donoghue
date Tue, 16 Jun 2015 11:43:16 -0400
parents eef6ad84c349
children d882a15af20e
comparison
equal deleted inserted replaced
3967:55f3a9ff20b8 3968:d0d5dacd1941
86 86
87 ifeq ($(MXE_SYSTEM),mingw) 87 ifeq ($(MXE_SYSTEM),mingw)
88 $(PKG)_EXTRA_CONFIGURE_OPTIONS += --with-x=no 88 $(PKG)_EXTRA_CONFIGURE_OPTIONS += --with-x=no
89 endif 89 endif
90 90
91 ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
92 $(PKG)_EXTRA_CONFIGURE_OPTIONS += ac_cv_search_tputs=-ltermcap
93 endif
94
91 # if want binary packages and are cross compiling, then we need cross tools enabled 95 # if want binary packages and are cross compiling, then we need cross tools enabled
92 ifeq ($(ENABLE_BINARY_PACKAGES),yes) 96 ifeq ($(ENABLE_BINARY_PACKAGES),yes)
93 ifeq ($(MXE_NATIVE_BUILD),no) 97 ifeq ($(MXE_NATIVE_BUILD),no)
94 $(PKG)_EXTRA_CONFIGURE_OPTIONS += --enable-cross-tools 98 $(PKG)_EXTRA_CONFIGURE_OPTIONS += --enable-cross-tools
95 endif 99 endif