|
|
- # -*- Autoconf -*-
- # Process this file with autoconf to produce a configure script.
-
- AC_PREREQ([2.69])
- AC_INIT([c2m], [0.0.1], [julese50@gmail.com])
- AM_INIT_AUTOMAKE()
-
- AC_CONFIG_FILES([
- Makefile
- man/Makefile
- src/Makefile])
-
- AC_PROG_CC
-
- # Checks for programs.
-
- # Checks for libraries.
-
- PKG_CHECK_MODULES(WAND, [MagickWand], [], AC_MSG_ERROR([ImageMagick is not installed.]))
- AC_SUBST(WAND_LIBS)
- AC_SUBST(WAND_CFLAGS)
-
- # Checks for header files.
-
- # Checks for typedefs, structures, and compiler characteristics.
-
- # Checks for library functions.
-
- AC_OUTPUT
|