As gimp uses fontconfig directly, check for it.

2003-05-30  Tor Lillqvist  <tml@iki.fi>

	* configure.in: As gimp uses fontconfig directly, check for it.

	* app/Makefile.am: And link with it.

	* app/gimp.sym: Remove dead symbols.

	* libgimp/gimp.def
	* libgimpwidgets/gimpwidgets.def: Move gimp_standard_help_func.

	* plug-ins/xjt/xjt.c: Use _mkdir() on Win32.
This commit is contained in:
Tor Lillqvist 2003-05-30 22:59:29 +00:00 committed by Tor Lillqvist
parent fddb575993
commit 31e12a213b
7 changed files with 18 additions and 6 deletions

View file

@ -1,10 +1,21 @@
2003-05-30 Tor Lillqvist <tml@iki.fi> 2003-05-30 Tor Lillqvist <tml@iki.fi>
* configure.in: As gimp uses fontconfig directly, check for it.
* app/Makefile.am: And link with it.
* app/gimp.sym: Remove dead symbols.
* libgimp/gimp.def
* libgimpwidgets/gimpwidgets.def: Move gimp_standard_help_func.
* plug-ins/common/wmf.c (load_image): Remove the message asking * plug-ins/common/wmf.c (load_image): Remove the message asking
the user to send files with unhandled opcodes to me. I'm really the user to send files with unhandled opcodes to me. I'm really
not interested in getting them currently... (BTW, the wmf plug-in not interested in getting them currently... (BTW, the wmf plug-in
really should be rewritten to use libwmf.) really should be rewritten to use libwmf.)
* plug-ins/xjt/xjt.c: Use _mkdir() on Win32.
2003-05-30 Maurits Rijk <lpeek.mrijk@consunet.nl> 2003-05-30 Maurits Rijk <lpeek.mrijk@consunet.nl>
* plug-ins/common/film.c (film_dialog): fix for #113882 (Clean-up Film * plug-ins/common/film.c (film_dialog): fix for #113882 (Clean-up Film

View file

@ -102,6 +102,7 @@ gimp_1_3_LDADD = \
$(LIBART_LIBS) \ $(LIBART_LIBS) \
$(GIMP_THREAD_LIBS) \ $(GIMP_THREAD_LIBS) \
$(GIMP_MP_LIBS) \ $(GIMP_MP_LIBS) \
$(FONTCONFIG_LIBS) \
$(INTLLIBS) \ $(INTLLIBS) \
$(REGEXREPL) $(REGEXREPL)

View file

@ -1,6 +1,4 @@
gimp_object_get_type gimp_object_get_type
gimp_palette_get_background
gimp_palette_get_foreground
gimp_standard_help_func gimp_standard_help_func
gimp_tool_control_get_cursor gimp_tool_control_get_cursor
gimp_tool_control_get_cursor_modifier gimp_tool_control_get_cursor_modifier
@ -14,8 +12,6 @@ gimp_tool_control_is_paused
gimp_tool_control_is_toggled gimp_tool_control_is_toggled
gimp_tool_control_pause gimp_tool_control_pause
gimp_tool_control_resume gimp_tool_control_resume
gimp_tool_real_button_press
gimp_tool_real_button_release
gimp_tool_set_cursor gimp_tool_set_cursor
gimp_unit_get_abbreviation gimp_unit_get_abbreviation
gimp_unit_get_digits gimp_unit_get_digits

View file

@ -285,6 +285,7 @@ PKG_CHECK_MODULES(LIBART, libart-2.0)
AC_SUBST(LIBART_CFLAGS) AC_SUBST(LIBART_CFLAGS)
AC_SUBST(LIBART_LIBS) AC_SUBST(LIBART_LIBS)
PKG_CHECK_MODULES(FONTCONFIG, fontconfig >= 1.0.1, have_fontconfig=true, :)
########################################## ##########################################
# Check for some special functions we need # Check for some special functions we need

View file

@ -321,7 +321,6 @@ EXPORTS
gimp_show_tool_tips gimp_show_tool_tips
gimp_smudge gimp_smudge
gimp_smudge_default gimp_smudge_default
gimp_standard_help_func
gimp_temp_name gimp_temp_name
gimp_text gimp_text
gimp_text_fontname gimp_text_fontname

View file

@ -118,7 +118,7 @@ EXPORTS
gimp_size_entry_set_value gimp_size_entry_set_value
gimp_size_entry_set_value_boundaries gimp_size_entry_set_value_boundaries
gimp_spin_button_new gimp_spin_button_new
; gimp_standard_help_func gimp_standard_help_func
gimp_stock_init gimp_stock_init
gimp_table_attach_aligned gimp_table_attach_aligned
gimp_toggle_button_sensitive_update gimp_toggle_button_sensitive_update

View file

@ -67,6 +67,10 @@
#include "libgimp/stdplugins-intl.h" #include "libgimp/stdplugins-intl.h"
#ifdef G_OS_WIN32
#define mkdir(path,mode) _mkdir(path)
#endif
/* XJT includes */ /* XJT includes */
#include "xjpeg.h" #include "xjpeg.h"
#include "xpdb_calls.h" #include "xpdb_calls.h"