summaryrefslogtreecommitdiff
path: root/audio/audacity/files/patch-configure.ac
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2020-06-16 12:14:27 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2020-06-16 12:14:27 +0000
commitf656f6f4c6030c2a2d6526f5ef2569e8a764c671 (patch)
tree87aaea3e11897f97bf5b28f7cef818f7fb742122 /audio/audacity/files/patch-configure.ac
parentwww/netsurf: Update to 3.10 (diff)
- Update `audio/audacity' to the latest version 2.4.1
- Switch to purely CMake-based build, remove autotools-related patches and Makefile knobs - Force PLIST_SUB+=NLS="" temporarily while the proper fix is being developed, to reduce the churn of the pkg-plist - Do not force C++14 while C++11 is sufficient for the time being - Do not hardcode Python version when building the manual page PR: 246645
Diffstat (limited to 'audio/audacity/files/patch-configure.ac')
-rw-r--r--audio/audacity/files/patch-configure.ac39
1 files changed, 0 insertions, 39 deletions
diff --git a/audio/audacity/files/patch-configure.ac b/audio/audacity/files/patch-configure.ac
deleted file mode 100644
index 13e016ac3622..000000000000
--- a/audio/audacity/files/patch-configure.ac
+++ /dev/null
@@ -1,39 +0,0 @@
---- configure.ac.orig 2019-02-24 08:28:05 UTC
-+++ configure.ac
-@@ -200,14 +200,6 @@ if test x$enable_universal_binary = xyes; then
- esac
- fi
-
--dnl Check if $CXX is clang by evaluating the version string because
--dnl $ax_cv_cxx_compiler_vendor seems not to work (it is either "gnu" or just empty).
--dnl If $CXX is clang (string is found), grep returns 0 and the if is executed.
--dnl Use /dev/null to suppress grep output to shell.
--if ($CXX --version | grep 'clang version' > /dev/null); then
-- LDFLAGS="${LDFLAGS} -latomic"
--fi
--
- if test x$enable_sse = xyes; then
-
- if test "${ax_cv_cxx_compiler_vendor}" = "gnu"; then
-@@ -239,20 +231,7 @@ dnl check if alloca.h exists. If it does, we need to i
- dnl Solaris builds, by defining HAVE_ALLOCA_H
- AC_CHECK_HEADERS_ONCE(alloca.h)
-
--
--dnl Enable C++ 11 support. Use gnu++11 on GCC since wxWidgets uses extensions
--if "${CXX}" -v 2>&1 | grep -q '^gcc version'; then
--
-- dnl GCC < 4.9 has known bugs (#1397) and can't be used
-- AX_GCC_VERSION_ATLEAST(4,9,0,[gcc_ok=yes], [gcc_ok=no])
-- if test x$gcc_ok = xno; then
-- AC_MSG_ERROR([Audacity requires at least GCC 4.9])
-- fi
--
-- CXXFLAGS="${CXXFLAGS} --std=gnu++11"
--else
-- CXXFLAGS="${CXXFLAGS} --std=c++11"
--fi
-+CXXFLAGS="${CXXFLAGS} --std=c++11"
-
- dnl --------------------------------------------------------------------------
- dnl We would like warnings enabled on the builds, but different compilers need