1999-12-05 00:40:26 +00:00
|
|
|
AC_INIT(src)
|
|
|
|
|
|
|
|
if test -n "$GNOME2_PATH"; then
|
|
|
|
PATH="$GNOME2_PATH/bin:$PATH"
|
|
|
|
export PATH
|
|
|
|
fi
|
|
|
|
|
|
|
|
AM_INIT_AUTOMAKE(nautilus, 0.1)
|
|
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
|
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
|
|
|
|
AM_DISABLE_STATIC
|
|
|
|
AM_PROG_LIBTOOL
|
|
|
|
|
|
|
|
AM_SANITY_CHECK
|
|
|
|
AC_PROG_CC
|
2000-03-03 23:52:55 +00:00
|
|
|
AC_PROG_CPP
|
1999-12-05 00:40:26 +00:00
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_PROG_LN_S
|
|
|
|
AC_PROG_MAKE_SET
|
|
|
|
AC_ISC_POSIX
|
|
|
|
|
1999-12-15 19:59:05 +00:00
|
|
|
AC_ARG_ENABLE(more-warnings,
|
|
|
|
[--enable-more-warnings Maximum compiler warnings],
|
|
|
|
set_more_warnings="$enableval", set_more_warnings=yes)
|
|
|
|
|
|
|
|
# Arg is enabled
|
|
|
|
if test "$GCC" = "yes" -a "$set_more_warnings" != "no"; then
|
|
|
|
echo "enable compile warnings = $set_more_warnings"
|
|
|
|
CFLAGS="$CFLAGS \
|
2000-02-04 00:20:56 +00:00
|
|
|
-Wall -Wno-uninitialized \
|
2000-01-03 17:26:34 +00:00
|
|
|
-Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes \
|
1999-12-15 19:59:05 +00:00
|
|
|
-Wnested-externs -Wpointer-arith \
|
1999-12-15 21:55:17 +00:00
|
|
|
-Wno-sign-compare -Wsign-promo"
|
1999-12-15 19:59:05 +00:00
|
|
|
fi
|
1999-12-16 00:43:12 +00:00
|
|
|
if test "$GCC" = "yes"; then
|
2000-03-03 23:24:48 +00:00
|
|
|
WERROR="-Werror"
|
1999-12-15 19:59:05 +00:00
|
|
|
fi
|
1999-12-16 00:43:12 +00:00
|
|
|
AC_SUBST(WERROR)
|
1999-12-15 19:59:05 +00:00
|
|
|
|
2000-03-04 00:02:48 +00:00
|
|
|
dnl
|
|
|
|
EAZEL_SERVICES=
|
|
|
|
AC_ARG_ENABLE(eazel-services,
|
|
|
|
[--enable-eazel-services Eazel services],
|
|
|
|
EAZEL_SERVICES=1
|
|
|
|
AC_DEFINE(EAZEL_SERVICES))
|
|
|
|
|
|
|
|
AC_SUBST(EAZEL_SERVICES)
|
|
|
|
|
1999-12-05 00:40:26 +00:00
|
|
|
dnl Checks for libraries.
|
|
|
|
AM_PATH_GLIB(1.2.0,,
|
|
|
|
AC_MSG_ERROR([
|
|
|
|
*** GLIB 1.2.0 or better is required. The latest version of GLIB
|
|
|
|
*** is always available from ftp://ftp.gtk.org/.]))
|
1999-12-14 02:37:14 +00:00
|
|
|
|
1999-12-05 00:40:26 +00:00
|
|
|
AM_PATH_GNOME(1.0.0,,AC_MSG_ERROR([*** GNOME 1.0.0 or better is
|
2000-02-03 22:18:09 +00:00
|
|
|
required.]), gnomecanvaspixbuf bonobo vfs)
|
2000-01-22 00:21:37 +00:00
|
|
|
AC_SUBST(GNOMECANVASPIXBUF_LIBS)
|
|
|
|
AC_SUBST(GNOMECANVASPIXBUF_INCLUDEDIR)
|
1999-12-06 00:49:57 +00:00
|
|
|
AC_SUBST(GNORBA_CFLAGS)
|
|
|
|
AC_SUBST(GNORBA_LIBS)
|
|
|
|
AC_SUBST(BONOBO_CFLAGS)
|
|
|
|
AC_SUBST(BONOBO_LIBS)
|
1999-12-14 02:37:14 +00:00
|
|
|
AC_SUBST(VFS_CFLAGS)
|
|
|
|
AC_SUBST(VFS_LIBS)
|
|
|
|
|
1999-12-05 00:40:26 +00:00
|
|
|
AM_PATH_LIBGLADE(,AC_MSG_ERROR([*** Libglade 0.7 or better is needed.]), gnome)
|
|
|
|
|
1999-12-30 21:33:51 +00:00
|
|
|
AC_PATH_PROG(XML_CONFIG,xml-config,no)
|
|
|
|
if test x$XML_CONFIG = xno; then
|
2000-01-22 07:20:53 +00:00
|
|
|
AC_MSG_ERROR(Couldn't find xml-config please install the gnome-xml package)
|
1999-12-30 21:33:51 +00:00
|
|
|
fi
|
|
|
|
XML_LIBS=`$XML_CONFIG --libs`
|
|
|
|
XML_CFLAGS=`$XML_CONFIG --cflags`
|
|
|
|
AC_SUBST(XML_LIBS)
|
|
|
|
AC_SUBST(XML_CFLAGS)
|
|
|
|
|
2000-01-22 07:20:53 +00:00
|
|
|
AC_PATH_PROG(LIBWWW_CONFIG,libwww-config,no)
|
|
|
|
if test x$LIBWWW_CONFIG = xno; then
|
|
|
|
AC_MSG_ERROR(Couldn't find libwww-config try http://www.w3.org/Library/Distribution.html to get a copy of libwww)
|
|
|
|
fi
|
|
|
|
LIBWWW_LIBS=`$LIBWWW_CONFIG --libs`
|
|
|
|
LIBWWW_CFLAGS=`$LIBWWW_CONFIG --cflags`
|
|
|
|
AC_SUBST(LIBWWW_LIBS)
|
|
|
|
AC_SUBST(LIBWWW_CFLAGS)
|
|
|
|
|
2000-01-27 01:37:08 +00:00
|
|
|
AC_CHECK_LIB(z, gzopen, [Z_LIBS=-lz
|
|
|
|
AC_SUBST(Z_LIBS)], AC_MSG_ERROR([*** zlib is required]))
|
|
|
|
|
2000-02-03 22:18:09 +00:00
|
|
|
dnl GtkHTML checking
|
|
|
|
dnl Currently we cannot do any version check as GtkHTML has not
|
|
|
|
dnl been released yet.
|
|
|
|
AC_MSG_CHECKING(for GtkHTML)
|
|
|
|
if gnome-config --libs gtkhtml > /dev/null 2>&1; then
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
GTKHTML_LIBS=`gnome-config --libs gtkhtml`
|
|
|
|
GTKHTML_CFLAGS=`gnome-config --cflags gtkhtml`
|
|
|
|
else
|
|
|
|
AC_MSG_ERROR([Not Found])
|
|
|
|
AC_MSG_ERROR([GtkHTML from the GNOME CVS is required])
|
|
|
|
fi
|
|
|
|
AC_SUBST(GTKHTML_LIBS)
|
|
|
|
AC_SUBST(GTKHTML_CFLAGS)
|
|
|
|
|
2000-03-03 23:52:55 +00:00
|
|
|
dnl Test for libpng
|
|
|
|
if test -z "$LIBPNG"; then
|
|
|
|
AC_CHECK_LIB(png, png_read_info,
|
|
|
|
AC_CHECK_HEADER(png.h,
|
|
|
|
png_ok=yes,
|
|
|
|
png_ok=no),
|
|
|
|
AC_MSG_ERROR(*** (PNG library not found) ***), -lz -lm)
|
|
|
|
if test "$png_ok" = yes; then
|
|
|
|
AC_MSG_CHECKING([for png_structp in png.h])
|
|
|
|
AC_TRY_COMPILE([#include <png.h>],
|
|
|
|
[png_structp pp; png_infop info; png_colorp cmap; png_create_read_struct;],
|
|
|
|
png_ok=yes,
|
|
|
|
png_ok=no)
|
|
|
|
AC_MSG_RESULT($png_ok)
|
|
|
|
if test "$png_ok" = yes; then
|
|
|
|
PNG='png'; LIBPNG='-lpng -lz'
|
|
|
|
else
|
|
|
|
AC_MSG_WARN(*** PNG loader will not be built (PNG library is too old) ***)
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
AC_MSG_WARN(*** PNG loader will not be built (PNG header file not found) ***)
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_SUBST(LIBPNG)
|
|
|
|
|
1999-12-05 00:40:26 +00:00
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_C_CONST
|
|
|
|
|
|
|
|
AC_OUTPUT([
|
|
|
|
Makefile
|
1999-12-14 19:46:16 +00:00
|
|
|
icons/Makefile
|
Hand tuned icons for multiple resolutions.
So for example you can have an icon designed for the 96x96
size, which is called i-directory-96.png, and it will be
loaded instead of loading i-directory.png and scaling it.
* libnautilus/nautilus-icon-factory.c:
(nautilus_icon_factory_get_icon_name_for_regular_file),
(add_size_to_icon_name), (nautilus_icon_factory_load_icon),
(nautilus_icon_factory_create_image_for_item),
(get_larger_icon_size), (get_smaller_icon_size),
(get_next_icon_size_to_try), (load_specific_image),
(load_image_for_scaling), (load_image_scale_if_necessary),
(nautilus_icon_factory_mark_recently_used), (mark_recently_used),
(nautilus_icon_factory_get_pixbuf_for_icon),
(get_image_from_cache), (nautilus_icon_factory_scale): Changed the
icon factory so it will look for icons of multiple resolutions and
scale the nearest. Also made other improvements including sharing
a single fallback icon instead of making multiple ones, using the
"core-dump" icon for files named "core", adding some additional
g_return_if_fail.
* libnautilus/nautilus-icon-factory.c:
(self_test_next_icon_size_to_try),
(nautilus_self_check_icon_factory):
* libnautilus/nautilus-lib-self-check-functions.h:
The new code needed a bit of self-check code, so I added it.
* libnautilus/nautilus-directory.c:
(nautilus_directory_try_to_read_metafile),
(nautilus_directory_construct_alternate_metafile_uri):
Since "make check" was failing, I checked to see what was wrong.
The code that was respecting the new "valid_fields" part of
GnomeVFSFileInfo was looking at the wrong field (flags instead
of valid_fields), which caused all metafile reading to fail.
While debugging this, I noticed that the alternate metafiles
had particularly bad long names, so I fixed that too.
* libnautilus/nautilus-directory.c: (nautilus_file_ref):
* libnautilus/nautilus-glib-extensions.c:
(nautilus_strdup_strftime):
* libnautilus/nautilus-string.c: (nautilus_string_to_int):
Switched from using <limits.h> constants to the ones from
<glib.h>. I have no idea why I made this change. All hail
glib! C Standard be damned!
* fm-directory-view.c:
(use_eazel_theme_icons_cb), (add_menu_item),
(fm_directory_view_real_append_background_context_menu_items):
Started on a user interface to switch to the Eazel theme
icons so you can see the multiple-resolution icons, but
I wanted to check in, so I stopped before it was done.
* src/nautilus-index-title.c:
Reindented Andy's new code to match the emacs mode header.
* configure.in:
* icons/Makefile.am:
* icons/eazel/.cvsignore:
* icons/eazel/Makefile.am:
* icons/eazel/i-directory-24.png:
* icons/eazel/i-directory-36.png:
* icons/eazel/i-directory-72.png:
* icons/eazel/i-directory-96.png:
* icons/eazel/i-directory.png:
I needed some variable-size icons to demonstrate the multiple
resolution support in the icon factory, so I added a few
directory icons from gnomad. Since these don't match the other
icons, I made them part of an "eazel" icons theme.
* RENAMING: Some new name ideas.
2000-02-18 01:17:30 +00:00
|
|
|
icons/eazel/Makefile
|
1999-12-13 22:44:06 +00:00
|
|
|
idl/Makefile
|
1999-12-06 23:23:41 +00:00
|
|
|
libnautilus/Makefile
|
2000-03-10 15:59:07 +00:00
|
|
|
nautilus-widgets/Makefile
|
1999-12-05 00:40:26 +00:00
|
|
|
src/Makefile
|
1999-12-10 00:52:54 +00:00
|
|
|
src/file-manager/Makefile
|
1999-12-09 23:56:07 +00:00
|
|
|
components/Makefile
|
|
|
|
components/history/Makefile
|
1999-12-10 07:00:00 +00:00
|
|
|
components/help/Makefile
|
2000-01-27 01:37:08 +00:00
|
|
|
components/help/converters/Makefile
|
2000-02-03 02:19:02 +00:00
|
|
|
components/help/converters/gnome-db2html2/Makefile
|
2000-01-27 01:37:08 +00:00
|
|
|
components/help/converters/gnome-info2html2/Makefile
|
|
|
|
components/help/converters/gnome-man2html2/Makefile
|
1999-12-20 23:59:08 +00:00
|
|
|
components/html/Makefile
|
2000-01-04 01:52:23 +00:00
|
|
|
components/websearch/Makefile
|
2000-03-06 00:22:44 +00:00
|
|
|
components/music/Makefile
|
2000-02-15 02:51:00 +00:00
|
|
|
components/notes/Makefile
|
2000-03-03 17:28:29 +00:00
|
|
|
components/sample/Makefile
|
1999-12-05 00:40:26 +00:00
|
|
|
])
|