# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. BASE64C_VERSION=0.5 AC_PREREQ([2.69]) AC_INIT(base64c, 0.5, hannasm@gmail.com) AM_INIT_AUTOMAKE(base64c, 0.5) AC_CONFIG_SRCDIR([include/base64c.h]) AC_CONFIG_HEADERS([config.h]) # Checks for programs. AC_PROG_CC # Checks for libraries. # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. AC_TYPE_SIZE_T # Checks for library functions. AC_OUTPUT(Makefile src/Makefile test/Makefile)