view configure.ac @ 12:0cc2555db371

*: make our string functions not stupid strncat() made everything slow! new addition internally: an EDL_header structure to make things not stupid. if we were using C++ it wouldn't really be necessary, but alas :)
author Paper <paper@paper.us.eu.org>
date Wed, 27 Mar 2024 13:38:30 -0400
parents 0c98b46eaf73
children
line wrap: on
line source

AC_INIT([libedl], [2.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