Mercurial > libedl
annotate 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 |
rev | line source |
---|---|
2
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
1 AC_INIT([libedl], [1.0]) |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
2 |
3
bd99b6549eb4
*: expand in readme and rename src/main to src/edl
Paper <mrpapersonic@gmail.com>
parents:
2
diff
changeset
|
3 AC_CONFIG_SRCDIR([src/edl.c]) |
2
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
4 AC_CONFIG_AUX_DIR([build-aux]) |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
5 AC_CONFIG_MACRO_DIRS([m4]) |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
6 |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
7 AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
8 |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
9 # Check for a C compiler |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
10 AC_PROG_CC |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
11 |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
12 # Need this because libtool is weird |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
13 AM_PROG_AR |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
14 |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
15 LT_INIT |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
16 |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
17 AC_CONFIG_FILES([Makefile]) |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
18 AC_OUTPUT |