Bug 458583 - $target_os case fails for FreeBSD in configure.in (topsrcdir); c-c part; r=bugzilla
--- a/configure.in
+++ b/configure.in
@@ -5934,17 +5934,17 @@ if test "$MOZ_MEMORY"; then
fi
dnl The generic feature tests that determine how to compute ncpus are long and
dnl complicated. Therefore, simply define special cpp variables for the
dnl platforms we have special knowledge of.
case "${target_os}" in
darwin*)
AC_DEFINE(MOZ_MEMORY_DARWIN)
;;
- *-freebsd*)
+ *freebsd*)
AC_DEFINE(MOZ_MEMORY_BSD)
;;
*linux*)
AC_DEFINE(MOZ_MEMORY_LINUX)
;;
netbsd*)
AC_DEFINE(MOZ_MEMORY_BSD)
;;