OSDN Git Service

Workflows: use standard autoconf rather than 2.69 vauto3.0.1-alpha5-54bf047ba
authorEric Branlund <ebranlund@fastmail.com>
Tue, 9 Jan 2024 13:40:53 +0000 (06:40 -0700)
committerEric Branlund <ebranlund@fastmail.com>
Tue, 9 Jan 2024 13:40:53 +0000 (06:40 -0700)
The latter is deprecated.  Not seeing the problems that led to preferring 2.69 over the standard version.

.github/workflows/release.yaml
.github/workflows/test-mac-build.yaml

index 52b0442..5075236 100644 (file)
@@ -203,12 +203,11 @@ jobs:
           submodules: true
 
       # Requires automake and autoconf; install those via homebrew (available
-      # by default).  Use autoconf 2.69 since autoconf 2.71 does not work well
-      # with the version of m4 (GNU M4 1.4.6) included with macOS 11 and 12.
+      # by default).
       - name: Install Build Dependencies
         run: |
           brew install m4
-          brew install autoconf@2.69
+          brew install autoconf
           brew install automake
 
       - name: Create Mac English Archive
@@ -218,7 +217,6 @@ jobs:
             SDKROOT=`echo "${{ env.SDK_OVERRIDE }}" | tr -d ' \t\r\n'`
             export SDKROOT
           fi
-          PATH=/usr/local/opt/autoconf@2.69/bin:"$PATH"
           ./bootstrap
           CFLAGS=""
           CXXFLAGS=""
@@ -301,13 +299,11 @@ jobs:
           submodules: true
 
       # Requires automake, autoconf, and nkf; install those via homebrew
-      # (available by default).  Use autoconf 2.69 since autoconf 2.71 does
-      # not work well with the version of m4 (GNU M4 1.4.6) included with
-      # macOS 11 and 12.
+      # (available by default).
       - name: Install Build Dependencies
         run: |
           brew install m4
-          brew install autoconf@2.69
+          brew install autoconf
           brew install automake
           brew install nkf
 
@@ -318,7 +314,6 @@ jobs:
             SDKROOT=`echo "${{ env.SDK_OVERRIDE }}" | tr -d ' \t\r\n'`
             export SDKROOT
           fi
-          PATH=/usr/local/opt/autoconf@2.69/bin:"$PATH"
           ./bootstrap
           CFLAGS=""
           CXXFLAGS=""
index 81290b4..54c444d 100644 (file)
@@ -35,12 +35,11 @@ jobs:
           submodules: true
 
       # Requires automake and autoconf; install those via homebrew (available
-      # by default).  Use autoconf 2.69 since autoconf 2.71 does not work well
-      # with the version of m4 (GNU M4 1.4.6) include with macOS 11 and 12.
+      # by default).
       - name: Install Build Dependencies
         run: |
           brew install m4
-          brew install autoconf@2.69
+          brew install autoconf
           brew install automake
 
       - name: Build
@@ -49,7 +48,6 @@ jobs:
             SDKROOT=`echo "${{ env.SDK_OVERRIDE }}" | tr -d ' \t\r\n'`
             export SDKROOT
           fi
-          PATH=/usr/local/opt/autoconf@2.69/bin:"$PATH"
           ./bootstrap
           CFLAGS=""
           CXXFLAGS=""
@@ -92,7 +90,6 @@ jobs:
       # of the source tree works.
       - name: Distcheck
         run: |
-          PATH=/usr/local/opt/autoconf@2.69/bin:"$PATH"
           ./bootstrap
           ./configure ${{ env.DEFAULT_CONFIGURE_OPTIONS }}
           make DISTCHECK_CONFIGURE_FLAGS="${{ env.DEFAULT_CONFIGURE_OPTIONS }}" \
@@ -115,12 +112,11 @@ jobs:
           submodules: true
 
       # Requires automake, autoconf, and, unless building the 1.6.2 version,
-      # nkf; install those via homebrew (available by default).  For the same
-      # reason as above, use autoconf 2.69.
+      # nkf; install those via homebrew (available by default).
       - name: Install Build Dependencies
         run: |
           brew install m4
-          brew install autoconf@2.69
+          brew install autoconf
           brew install automake
           brew install nkf
 
@@ -130,7 +126,6 @@ jobs:
             SDKROOT=`echo "${{ env.SDK_OVERRIDE }}" | tr -d ' \t\r\n'`
             export SDKROOT
           fi
-          PATH=/usr/local/opt/autoconf@2.69/bin:"$PATH"
           ./bootstrap
           CFLAGS=""
           CXXFLAGS=""