view configure.ac @ 7:fee08fa622e1

automake: don't expose private strings API also use size_t rather than int for array sizes for... obvious reasons
author Paper <mrpapersonic@gmail.com>
date Mon, 15 Jan 2024 06:42:30 -0500
parents bd99b6549eb4
children 0c98b46eaf73
line wrap: on
line source

AC_INIT([libedl], [1.0])

AC_CONFIG_SRCDIR([src/edl.c])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIRS([m4])

AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])

# Check for a C compiler
AC_PROG_CC

# Need this because libtool is weird
AM_PROG_AR

LT_INIT

AC_CONFIG_FILES([Makefile])
AC_OUTPUT