configure.ac 447 B

12345678910111213141516171819202122
  1. AC_INIT([MultiSSH], [1.4], [[email protected]], [mssh])
  2. AM_CONFIG_HEADER([config.h])
  3. AM_INIT_AUTOMAKE
  4. AC_PROG_CC
  5. PKG_CHECK_MODULES(MSSH, [gtk+-2.0 vte gconf-2.0])
  6. AC_SUBST(MSSH_CFLAGS)
  7. AC_SUBST(MSSH_LIBS)
  8. AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
  9. if test x"$GCONFTOOL" = xno; then
  10. AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf])
  11. fi
  12. AM_GCONF_SOURCE_2
  13. AC_OUTPUT(
  14. Makefile
  15. src/Makefile
  16. )