configure.in:

Add workaround for Darwin and Libintl
bitmap-optimize
Theodore Ts'o 2003-07-05 14:50:24 -04:00
parent d3128ccb06
commit 07a0db15b0
2 changed files with 6155 additions and 3200 deletions

9344
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -811,6 +811,17 @@ if test $ac_cv_e2fsprogs_use_static = yes; then
fi
AC_SUBST(LDFLAG_STATIC)
dnl
dnl Work around mysterious Darwin / GNU libintl problem
dnl (__asm__ redirection doesn't work for some mysterious reason. Looks like
dnl Apple hacked gcc somehow?)
dnl
case "$host_os" in
darwin*)
echo "Using Apple Darwin / GNU libintl workaround"
AC_DEFINE(_INTL_REDIRECT_MACROS)
;;
esac
dnl
dnl Make the ss and et directories work correctly.
dnl
SS_DIR=`cd ${srcdir}/lib/ss; pwd`