Fix build breakage caused recent changes to make GnomeVFS compile without

2000-06-26  Pavel Cisler <pavel@eazel.com>

	* acconfig.h:
	* configure.in:
	Fix build breakage caused recent changes to make GnomeVFS compile
	without OAF support. Some GnomeVFS headers now require USING_OAF
	to be defined and when included from Nautilus, this define was missing.
	Not sure this is the 100% correct way to do this but this should at
	least prevent people from being stuck with a broken build.
This commit is contained in:
Pavel Cisler 2000-06-26 11:56:12 +00:00 committed by Pavel Cisler
parent a59d6685a6
commit 9f30b1c47a
3 changed files with 16 additions and 0 deletions

View file

@ -1,3 +1,13 @@
2000-06-26 Pavel Cisler <pavel@eazel.com>
* acconfig.h:
* configure.in:
Fix build breakage caused recent changes to make GnomeVFS compile
without OAF support. Some GnomeVFS headers now require USING_OAF
to be defined and when included from Nautilus, this define was missing.
Not sure this is the 100% correct way to do this but this should at
least prevent people from being stuck with a broken build.
2000-06-26 Andy Hertzfeld <andy@eazel.com>
added xml based theme mechanism and used it for the sidebar background,

View file

@ -6,3 +6,5 @@
#undef HAVE_PAM
#undef HAVE_RPM
#undef HAVE_STPCPY
#undef USING_OAF

View file

@ -233,6 +233,10 @@ AC_SUBST(VFS_CFLAGS)
AC_SUBST(VFS_LIBS)
AC_SUBST(IDL_CFLAGS)
dnl GnomeVFS can compile without OAF support, Nautilus depends on OAF.
dnl Make USING_OAF be defined
AC_DEFINE(USING_OAF)
AM_PATH_OAF(0.3.0)
AM_PATH_GCONF(0.5.0,,,gconf-gtk)