mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-10-29 03:34:16 +00:00
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:
parent
a59d6685a6
commit
9f30b1c47a
3 changed files with 16 additions and 0 deletions
10
ChangeLog
10
ChangeLog
|
@ -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,
|
||||
|
|
|
@ -6,3 +6,5 @@
|
|||
#undef HAVE_PAM
|
||||
#undef HAVE_RPM
|
||||
#undef HAVE_STPCPY
|
||||
#undef USING_OAF
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue