Overview
| Comment: | autogen.sh: Use automake 1.16 on OpenBSD |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
dc4c0a3d6b3b2adf76c4a50eb4689089 |
| User & Date: | js on 2018-11-04 13:29:14 |
| Other Links: | manifest | tags |
Context
|
2018-11-04
| ||
| 16:24 | OFSandbox: Add support for unveil() (check-in: 648522a4e6 user: js tags: trunk) | |
| 13:29 | autogen.sh: Use automake 1.16 on OpenBSD (check-in: dc4c0a3d6b user: js tags: trunk) | |
|
2018-11-02
| ||
| 00:26 | objfw-config: Improve help (check-in: c3412a7a8e user: js tags: trunk) | |
Changes
Modified autogen.sh from [a97be3dfc9] to [4f8a1648f4].
1 2 3 4 5 |
#!/bin/sh
set -e
# Set a version for OpenBSD
: ${AUTOCONF_VERSION:=2.69}
| | | 1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/sh
set -e
# Set a version for OpenBSD
: ${AUTOCONF_VERSION:=2.69}
: ${AUTOMAKE_VERSION:=1.16}
export AUTOCONF_VERSION AUTOMAKE_VERSION
aclocal -I build-aux/m4
autoconf
autoheader
|