comparison src/default-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 e143ff6d58fe
children 03998aeb3996
comparison
equal deleted inserted replaced
3967:55f3a9ff20b8 3968:d0d5dacd1941
89 89
90 ifeq ($(MXE_SYSTEM),mingw) 90 ifeq ($(MXE_SYSTEM),mingw)
91 $(PKG)_EXTRA_CONFIGURE_OPTIONS += --with-x=no 91 $(PKG)_EXTRA_CONFIGURE_OPTIONS += --with-x=no
92 endif 92 endif
93 93
94 ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
95 $(PKG)_EXTRA_CONFIGURE_OPTIONS += ac_cv_search_tputs=-ltermcap
96 endif
97
94 # if want binary packages and are cross compiling, then we need cross tools enabled 98 # if want binary packages and are cross compiling, then we need cross tools enabled
95 ifeq ($(ENABLE_BINARY_PACKAGES),yes) 99 ifeq ($(ENABLE_BINARY_PACKAGES),yes)
96 ifeq ($(MXE_NATIVE_BUILD),no) 100 ifeq ($(MXE_NATIVE_BUILD),no)
97 $(PKG)_EXTRA_CONFIGURE_OPTIONS += --enable-cross-tools 101 $(PKG)_EXTRA_CONFIGURE_OPTIONS += --enable-cross-tools
98 endif 102 endif