|
a/configure.ac |
|
b/configure.ac |
|
... |
|
... |
22 |
#### Libraries
|
22 |
#### Libraries
|
23 |
AC_CHECK_LIB([pthread], [pthread_create], [], [])
|
23 |
AC_CHECK_LIB([pthread], [pthread_create], [], [])
|
24 |
|
24 |
|
25 |
AC_ARG_ENABLE(confgui, AC_HELP_STRING([--enable-confgui],
|
25 |
AC_ARG_ENABLE(confgui, AC_HELP_STRING([--enable-confgui],
|
26 |
[Enable QT-based configuration editor GUI.]),
|
26 |
[Enable QT-based configuration editor GUI.]),
|
27 |
enableQT=$enableval, enableQT="yes")
|
27 |
enableQT=$enableval, enableQT="no")
|
28 |
AM_CONDITIONAL(MAKECONFGUI, [test X$enableQT = Xyes])
|
28 |
AM_CONDITIONAL(MAKECONFGUI, [test X$enableQT = Xyes])
|
29 |
if test X$enableQT = Xyes ; then
|
29 |
if test X$enableQT = Xyes ; then
|
30 |
if test X$QMAKE = X ; then
|
30 |
if test X$QMAKE = X ; then
|
31 |
QMAKE=qmake
|
31 |
QMAKE=qmake
|
32 |
fi
|
32 |
fi
|