From 8ae0dace896f3555e2c243a56d4caf97b2a40e94 Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Thu, 24 Oct 2019 13:02:38 -0600 Subject: [PATCH] configure: perhaps jumping the gun - set CSRG_BASED #define for the BSD's --- cde/configure.ac | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cde/configure.ac b/cde/configure.ac index 75014703..8a10843b 100644 --- a/cde/configure.ac +++ b/cde/configure.ac @@ -68,6 +68,15 @@ AM_CONDITIONAL([SOLARIS], [test "$build_solaris" = "yes"]) AM_CONDITIONAL([AIX], [test "$build_aix" = "yes"]) AM_CONDITIONAL([HPUX], [test "$build_hpux" = "yes"]) +dnl set CSRG_BASED define for the BSD's +if test "$build_bsd" = "yes" +then + oflags="$CFLAGS" + CFLAGS="$oflags -DCSRG_BASED" + oflags="$CXXFLAGS" + CXXFLAGS="$oflags -DCSRG_BASED" +fi + is_x86_64=no is_i386=no is_sparc=no -- 2.25.1