forked from Lainports/freebsd-ports
The x11/cde-devel port will track the CDE master development branch. The cdesktopenv-code git repo on sourceforge is mirrored using my github account and FreeBSD ports plumbing is used to fetch tarballs from github. This port uses the x11/cde-25 port/pkg coexistence methodology to allow it to be installed while a more stable version of x11/cde* is installed, allowing users to safely use the port with a quick fallback should the upstream software significanly break. Users should ensure that their ~/.dt is backed up prior to switching from a stable version of x11/cde* to x11/cde-devel or back again.
24 lines
679 B
Text
24 lines
679 B
Text
--- configure.ac.orig 2021-11-30 19:54:11.356382000 -0800
|
|
+++ configure.ac 2021-11-30 20:19:10.923347000 -0800
|
|
@@ -305,9 +305,6 @@
|
|
AC_PATH_XTRA
|
|
|
|
dnl check some compiler flags
|
|
-C_FLAG_CHECK([-Wno-format-truncation])
|
|
-CXX_FLAG_CHECK([-Wno-format-truncation])
|
|
-
|
|
C_FLAG_CHECK([-fno-strict-aliasing])
|
|
CXX_FLAG_CHECK([-fno-strict-aliasing])
|
|
|
|
@@ -327,9 +324,9 @@
|
|
dnl programs with full paths
|
|
|
|
dnl - KSH, some systems call it as ksh93
|
|
-AC_PATH_PROG(KSH, ksh)
|
|
+AC_PATH_PROG(KSH, ksh93)
|
|
if test -z "$ac_cv_path_KSH"; then
|
|
- AC_PATH_PROG(KSH, ksh93)
|
|
+ AC_PATH_PROG(KSH, ksh)
|
|
if test -z "$ac_cv_path_KSH"; then
|
|
MISSING_PROGS="[ksh or ksh93] ${MISSING_PROGS}"
|
|
fi
|