diff options
author | Damon Chaplin <damon@ximian.com> | 2002-05-16 21:41:01 +0000 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2002-05-16 21:41:01 +0000 |
commit | 1d484190b2714bff0de3767e0f34b57b6bca8be5 (patch) | |
tree | 0296ed63e1fde4ccf569c629757c884f95910316 /configure.in | |
parent | d05581589579117fe13dfa50de8de67def11af84 (diff) | |
download | nautilus-1d484190b2714bff0de3767e0f34b57b6bca8be5.tar.gz |
applied patch from Ali Akcaagac to save the language and switch to C++.
2002-05-16 Damon Chaplin <damon@ximian.com>
* configure.in (FAM_LIBS): applied patch from Ali Akcaagac to save the
language and switch to C++. Almost identical to the gnome-vfs patch
which has been approved. Fixes bug #80827.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 323218425..4f57c4a81 100644 --- a/configure.in +++ b/configure.in @@ -108,6 +108,9 @@ dnl ========================================================================== dnl FAM +AC_LANG_SAVE +AC_LANG_CPLUSPLUS + FAM_MISSING_WARNING="Nautilus depends on FAM to provide notification when files are altered (either through filesystem polling, or a kernel notification mechanism). If Nautilus is built without FAM support, directories viewed with Nautilus will not remain in synch with the actual filesystem when they are altered by external processes. Particularly if you are a distributor please compile Nautilus with FAM support. FAM is available from http://oss.sgi.com/projects/fam/. A patch to add Linux Kernel 2.4 directory notify support to FAM (highly desirable) is available from http://people.redhat.com/alexl/files/" FAM_LIBS= AC_CHECK_LIB(fam, FAMOpen, @@ -118,6 +121,8 @@ AC_CHECK_LIB(fam, FAMOpen, AC_MSG_WARN(*** FAM support will not be built (FAM library not found) $FAM_MISSING_WARNING ***)) AC_SUBST(FAM_LIBS) +AC_LANG_RESTORE + dnl ========================================================================== dnl x86 checks (used by audio routines in music component) |