Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into devel-gcc-fix
Browse files Browse the repository at this point in the history
juju4 authored Nov 2, 2024
2 parents 87dc48d + 2421671 commit e02c85b
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/slow.yaml
Original file line number Diff line number Diff line change
@@ -24,8 +24,8 @@ jobs:
- debian-stable
- debian-testing
- debian-unstable
- fedora-39
- fedora-40
- fedora-41
- fedora-rawhide
- gentoo
- opensuse-leap
10 changes: 10 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -49,6 +49,16 @@ AS_IF([test -n "$squid_host_os_version"],[
AC_MSG_RESULT($squid_host_os (version $squid_host_os_version))
# on windows squid_host_os is either mingw or cygwin, version is 32

AS_IF([test -e /etc/os-release],[
squid_build_os_release_name=`grep '^PRETTY_NAME=' /etc/os-release | sed 's/^[[^"]]*"//;s/".*$//'`
AS_IF([test "x$squid_build_os_release_name" = "x"],[
squid_build_os_release_name=`grep '^NAME=' /etc/os-release | sed 's/^[[^"]]*"//;s/".*$//'`
])
AS_IF([test "x$squid_build_os_release_name" != "x"],[
AC_MSG_NOTICE([Building on $squid_build_os_release_name])
])
])

AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_CXX

0 comments on commit e02c85b

Please sign in to comment.