mconnect - KDE Connect protocol implementation in Vala/C
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.8 KiB

  1. #
  2. # This program is free software; you can redistribute it and/or modify
  3. # it under the terms of the GNU General Public License version 2 as
  4. # published by the Free Software Foundation.
  5. #
  6. # This program is distributed in the hope that it will be useful,
  7. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. # GNU General Public License for more details.
  10. #
  11. # You should have received a copy of the GNU General Public License along
  12. # with this program; if not, write to the Free Software Foundation, Inc.,
  13. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  14. #
  15. # AUTHORS
  16. # Maciek Borzecki <maciek.borzecki (at] gmail.com>
  17. #
  18. AC_PREREQ(2.61)
  19. AC_INIT([mconnect], [0.1.0], [maciek.borzecki@gmail.com])
  20. AC_CONFIG_SRCDIR([src/mconnect/main.vala])
  21. AC_CONFIG_AUX_DIR([.])
  22. AC_PROG_MAKE_SET
  23. AM_PROG_LIBTOOL
  24. AM_INIT_AUTOMAKE([tar-pax foreign subdir-objects])
  25. AM_SILENT_RULES([yes])
  26. AM_MAINTAINER_MODE
  27. # Checks for header files.
  28. # AC_HEADER_STDC
  29. # AC_CHECK_HEADERS([stdlib.h])
  30. # Checks for typedefs, structures, and compiler characteristics.
  31. # AC_C_CONST
  32. # Checks for programs.
  33. AC_PROG_CC
  34. AM_PROG_VALAC([0.7.0])
  35. AC_PROG_INSTALL
  36. PKG_CHECK_MODULES(MCONNECT, [glib-2.0,
  37. gobject-2.0,
  38. gobject-introspection-1.0
  39. gio-2.0,
  40. gio-unix-2.0,
  41. json-glib-1.0,
  42. gee-0.8,
  43. libcrypto
  44. libnotify
  45. gdk-3.0
  46. atspi-2
  47. gnutls
  48. ])
  49. AC_SUBST(MCONNECT_CFLAGS)
  50. AC_SUBST(MCONNECT_LIBS)
  51. # Files to generate
  52. AC_CONFIG_FILES([Makefile])
  53. # Output
  54. AC_OUTPUT