ObjFW  Check-in [a19bdd9d31]

Overview
Comment:GitHub Actions: Fix OpenBSD
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | 1.1
Files: files | file ages | folders
SHA3-256: a19bdd9d3101d7ad7ff320e58fd4954c7b62dd56e99571c8784145f433568f3a
User & Date: js on 2024-10-19 14:08:07
Other Links: branch diff | manifest | tags
Context
2024-10-19
14:08
GitHub Actions: Fix OpenBSD Leaf check-in: a19bdd9d31 user: js tags: 1.1
14:07
GitHub Actions: Fix OpenBSD Leaf check-in: e389aa247e user: js tags: trunk
2024-10-09
23:53
Fix warning with Clang 19 check-in: 986553ba41 user: js tags: 1.1
Changes

Modified .github/workflows/openbsd.yml from [a810b5a14b] to [28ea93a47d].

12
13
14
15
16
17
18
19
20
21
22
23
24
25
    steps:
    - uses: actions/checkout@v4
    - uses: vmactions/openbsd-vm@v1
      with:
        usesh: true
        copyback: false
        prepare: |
          pkg_add autoconf-2.71 automake-1.16.5 gnutls pkgconf
        run: |
          ./autogen.sh
          ./configure OBJC=clang ${{ matrix.configure_flags }}
          make -j4
          make check
          make install







|






12
13
14
15
16
17
18
19
20
21
22
23
24
25
    steps:
    - uses: actions/checkout@v4
    - uses: vmactions/openbsd-vm@v1
      with:
        usesh: true
        copyback: false
        prepare: |
          pkg_add autoconf-2.72p0 automake-1.16.5 gnutls pkgconf
        run: |
          ./autogen.sh
          ./configure OBJC=clang ${{ matrix.configure_flags }}
          make -j4
          make check
          make install

Modified autogen.sh from [fd90c83211] to [7e61e222ab].

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





|







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.72}
	: ${AUTOMAKE_VERSION:=1.16}
	export AUTOCONF_VERSION AUTOMAKE_VERSION
fi

aclocal -I build-aux/m4
autoconf
autoheader