mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
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:
parent
fddb575993
commit
31e12a213b
7 changed files with 18 additions and 6 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,10 +1,21 @@
|
|||
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
|
||||
the user to send files with unhandled opcodes to me. I'm really
|
||||
not interested in getting them currently... (BTW, the wmf plug-in
|
||||
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>
|
||||
|
||||
* plug-ins/common/film.c (film_dialog): fix for #113882 (Clean-up Film
|
||||
|
|
|
@ -102,6 +102,7 @@ gimp_1_3_LDADD = \
|
|||
$(LIBART_LIBS) \
|
||||
$(GIMP_THREAD_LIBS) \
|
||||
$(GIMP_MP_LIBS) \
|
||||
$(FONTCONFIG_LIBS) \
|
||||
$(INTLLIBS) \
|
||||
$(REGEXREPL)
|
||||
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
gimp_object_get_type
|
||||
gimp_palette_get_background
|
||||
gimp_palette_get_foreground
|
||||
gimp_standard_help_func
|
||||
gimp_tool_control_get_cursor
|
||||
gimp_tool_control_get_cursor_modifier
|
||||
|
@ -14,8 +12,6 @@ gimp_tool_control_is_paused
|
|||
gimp_tool_control_is_toggled
|
||||
gimp_tool_control_pause
|
||||
gimp_tool_control_resume
|
||||
gimp_tool_real_button_press
|
||||
gimp_tool_real_button_release
|
||||
gimp_tool_set_cursor
|
||||
gimp_unit_get_abbreviation
|
||||
gimp_unit_get_digits
|
||||
|
|
|
@ -285,6 +285,7 @@ PKG_CHECK_MODULES(LIBART, libart-2.0)
|
|||
AC_SUBST(LIBART_CFLAGS)
|
||||
AC_SUBST(LIBART_LIBS)
|
||||
|
||||
PKG_CHECK_MODULES(FONTCONFIG, fontconfig >= 1.0.1, have_fontconfig=true, :)
|
||||
|
||||
##########################################
|
||||
# Check for some special functions we need
|
||||
|
|
|
@ -321,7 +321,6 @@ EXPORTS
|
|||
gimp_show_tool_tips
|
||||
gimp_smudge
|
||||
gimp_smudge_default
|
||||
gimp_standard_help_func
|
||||
gimp_temp_name
|
||||
gimp_text
|
||||
gimp_text_fontname
|
||||
|
|
|
@ -118,7 +118,7 @@ EXPORTS
|
|||
gimp_size_entry_set_value
|
||||
gimp_size_entry_set_value_boundaries
|
||||
gimp_spin_button_new
|
||||
; gimp_standard_help_func
|
||||
gimp_standard_help_func
|
||||
gimp_stock_init
|
||||
gimp_table_attach_aligned
|
||||
gimp_toggle_button_sensitive_update
|
||||
|
|
|
@ -67,6 +67,10 @@
|
|||
|
||||
#include "libgimp/stdplugins-intl.h"
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#define mkdir(path,mode) _mkdir(path)
|
||||
#endif
|
||||
|
||||
/* XJT includes */
|
||||
#include "xjpeg.h"
|
||||
#include "xpdb_calls.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue