buildsys  Check-in [e98b322ac4]

Overview
Comment:Update autogen.sh
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: e98b322ac4533ed89c3028b99f00eece150ea2ae2dd8846d54ac24927253c49f
User & Date: js on 2024-05-05 00:40:24
Other Links: manifest | tags
Context
2024-05-05
00:54
Fix make install Leaf check-in: e2d56e07c9 user: js tags: trunk
00:40
Update autogen.sh check-in: e98b322ac4 user: js tags: trunk
00:15
Make a distinction between plugins and bundles check-in: 5695217e58 user: js tags: trunk
Changes

Modified autogen.sh from [3936c3cbbf] to [fd90c83211].

1









2
3
4
#!/bin/sh









aclocal -I m4 || exit 1
autoconf || exit 1
autoheader || exit 1

>
>
>
>
>
>
>
>
>
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -e

# Set a version for OpenBSD
if test x"$(uname -s)" = x"OpenBSD"; then
	: ${AUTOCONF_VERSION:=2.71}
	: ${AUTOMAKE_VERSION:=1.16}
	export AUTOCONF_VERSION AUTOMAKE_VERSION
fi

aclocal -I build-aux/m4
autoconf
autoheader