Switch to unified view

a/src/configure.ac b/src/configure.ac
...
...
249
else
249
else
250
  pythonEnabled=no
250
  pythonEnabled=no
251
fi
251
fi
252
252
253
AM_CONDITIONAL(MAKEPYTHON, [test X$pythonEnabled = Xyes])
253
AM_CONDITIONAL(MAKEPYTHON, [test X$pythonEnabled = Xyes])
254
255
# Disable building the libchm python wrapper
256
AC_ARG_ENABLE(python-chm, AC_HELP_STRING([--disable-python-chm],
257
    [Do not build the libchm Python wrapper.]),
258
    pythonChmEnabled=$enableval, pythonChmEnabled=yes)
259
260
AM_CONDITIONAL(MAKEPYTHONCHM, [test X$pythonChmEnabled = Xyes])
254
261
255
262
256
AC_CHECK_FUNCS(mkdtemp)
263
AC_CHECK_FUNCS(mkdtemp)
257
AC_CHECK_LIB([pthread], [pthread_create], [], [])
264
AC_CHECK_LIB([pthread], [pthread_create], [], [])
258
AC_CHECK_LIB([dl], [dlopen], [], [])
265
AC_CHECK_LIB([dl], [dlopen], [], [])
...
...
521
# All object files depend on localdefs which has the cc flags. Avoid
528
# All object files depend on localdefs which has the cc flags. Avoid
522
# changing it unless necessary
529
# changing it unless necessary
523
AC_CONFIG_FILES(Makefile)
530
AC_CONFIG_FILES(Makefile)
524
AC_CONFIG_FILES(common/rclversion.h)
531
AC_CONFIG_FILES(common/rclversion.h)
525
AC_CONFIG_FILES(python/recoll/setup.py)
532
AC_CONFIG_FILES(python/recoll/setup.py)
526
AC_CONFIG_FILES(python/recoll/Makefile)
533
AC_CONFIG_FILES(python/pychm/setup.py)
527
534
528
AC_OUTPUT
535
AC_OUTPUT