comparison configure.ac @ 4222:44b1a9b2193e

qt5: add initial qt5 to mxe-octave, based on mxe.cc * src/qt5.mk: new file * src/qtbase-1-fixes.patch: new file * src/qtbase.mk: new file * src/qtimageformats-1.patch: new file * src/qtimageformats.mk: new file * src/qtsvg.mk: new file * src/qttools-1.patch: new file * added src/qttools.mk: new file * changed Makefile.in: added ENABLE_QT5 option * configure.ac: added enable-qt5 option * index.html: added new files to packages * installer-files/octave-firsttime.vbs: added setup of qt5 bin, plugin path * installer-files/octave.vbs: added setup of qt5 bin, plugin path * installer-files/octave.bat: added setup of qt5 bin path * src/default-octave.mk: added settig fot qt5 usage * src/qscintilla.mk: added qt5 path
author John D
date Thu, 29 Sep 2016 11:22:51 -0400
parents 667aa26d9dd4
children b6819fef128f
comparison
equal deleted inserted replaced
4221:1cac12604314 4222:44b1a9b2193e
229 [AS_HELP_STRING([--enable-devel-tools], 229 [AS_HELP_STRING([--enable-devel-tools],
230 [Enable creating developer tools such as gdb])], 230 [Enable creating developer tools such as gdb])],
231 [if test "$enableval" = yes; then ENABLE_DEVEL_TOOLS=yes; fi], []) 231 [if test "$enableval" = yes; then ENABLE_DEVEL_TOOLS=yes; fi], [])
232 AC_SUBST(ENABLE_DEVEL_TOOLS) 232 AC_SUBST(ENABLE_DEVEL_TOOLS)
233 233
234 ENABLE_QT5=no
235 AC_ARG_ENABLE([qt5],
236 [AS_HELP_STRING([--enable-qt5],
237 [Enable compile of GNU octave using Qt5 (Experimental)])],
238 [if test "$enableval" = yes; then ENABLE_QT5=yes; fi], [])
239 AC_SUBST(ENABLE_QT5)
240
241
234 ### Default is to cross compile for mingw. 242 ### Default is to cross compile for mingw.
235 243
236 echo $host_alias 244 echo $host_alias
237 if test -n "$host_alias"; then 245 if test -n "$host_alias"; then
238 MXE_SYSTEM=$host_alias 246 MXE_SYSTEM=$host_alias