mirror of https://github.com/GNOME/gimp.git
Bug 574018 - Add a manifest to executables
Created a resource file for plug-ins and a rule to link it to them. The application icon file is smaller than the default one, there's no point in doubling the size of a plug-in executable just for an icon. If no problems turn up, this will close the bug.
This commit is contained in:
parent
81024bd501
commit
e77dd90fc0
|
@ -1,3 +1,4 @@
|
|||
/Makefile
|
||||
/Makefile.in
|
||||
/gimp.rc
|
||||
/gimp.rc
|
||||
/gimp-plug-ins.rc
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
EXTRA_DIST = \
|
||||
gimprc.rule \
|
||||
gimp.rc \
|
||||
gimp.manifest \
|
||||
fileicon.ico \
|
||||
gimprc.rule \
|
||||
gimprc-plug-ins.rule \
|
||||
gimp.rc \
|
||||
gimp-plug-ins.rc \
|
||||
gimp.manifest \
|
||||
fileicon.ico \
|
||||
wilber.ico
|
||||
|
|
|
@ -0,0 +1,66 @@
|
|||
#include <winver.h>
|
||||
|
||||
#define _QUOTE(x) #x
|
||||
#define QUOTE(x) _QUOTE(x)
|
||||
|
||||
#define VER_COMPANYNAME_STR "Spencer Kimball, Peter Mattis and the GIMP Development Team"
|
||||
|
||||
#define VER_PRODUCTVERSION @GIMP_MAJOR_VERSION@,@GIMP_MINOR_VERSION@,@GIMP_MICRO_VERSION@,0
|
||||
#define VER_PRODUCTVERSION_STR "@GIMP_MAJOR_VERSION@.@GIMP_MINOR_VERSION@.@GIMP_MICRO_VERSION@\0"
|
||||
#define VER_PRODUCTNAME_STR "@GIMP_FULL_NAME@"
|
||||
|
||||
#define VER_FILEVERSION @GIMP_MAJOR_VERSION@,@GIMP_MINOR_VERSION@,@GIMP_MICRO_VERSION@,0
|
||||
#define VER_FILEVERSION_STR "@GIMP_MAJOR_VERSION@.@GIMP_MINOR_VERSION@.@GIMP_MICRO_VERSION@.0\0"
|
||||
|
||||
#define VER_FILEDESCRIPTION_STR "@GIMP_FULL_NAME@ Plug-In"
|
||||
#define VER_INTERNALNAME_STR QUOTE(INTERNALNAME_STR)
|
||||
#define VER_ORIGINALFILENAME_STR QUOTE(ORIGINALFILENAME_STR)
|
||||
|
||||
#define VER_LEGALCOPYRIGHT_STR "Copyright © 1995-2010"
|
||||
|
||||
#ifndef DEBUG
|
||||
#define VER_DEBUG 0
|
||||
#else
|
||||
#define VER_DEBUG VS_FF_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef GIMP_UNSTABLE
|
||||
#define VER_PRERELEASE 0
|
||||
#else
|
||||
#define VER_PRERELEASE VS_FF_PRERELEASE
|
||||
#endif
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION VER_FILEVERSION
|
||||
PRODUCTVERSION VER_PRODUCTVERSION
|
||||
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
||||
FILEFLAGS (VER_PRERELEASE|VER_DEBUG)
|
||||
FILEOS VOS__WINDOWS32
|
||||
FILETYPE VFT_APP
|
||||
FILESUBTYPE VFT2_UNKNOWN
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904B0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", VER_COMPANYNAME_STR
|
||||
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
|
||||
VALUE "FileVersion", VER_FILEVERSION_STR
|
||||
VALUE "InternalName", VER_INTERNALNAME_STR
|
||||
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
|
||||
VALUE "ProductName", VER_PRODUCTNAME_STR
|
||||
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
|
||||
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
|
||||
END
|
||||
END
|
||||
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x409, 1200
|
||||
|
||||
END
|
||||
END
|
||||
|
||||
#include "winuser.h"
|
||||
1 ICON QUOTE(TOP_SRCDIR) "/build/windows/plug-ins.ico"
|
||||
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST QUOTE(TOP_SRCDIR) "/build/windows/gimp.manifest"
|
|
@ -0,0 +1,6 @@
|
|||
# Version resources for Microsoft Windows
|
||||
%.rc.o: $(top_srcdir)/build/windows/gimp-plug-ins.rc
|
||||
$(WINDRES) --define ORIGINALFILENAME_STR="$*$(EXEEXT)" \
|
||||
--define INTERNALNAME_STR="$*" \
|
||||
--define TOP_SRCDIR="$(top_srcdir)" \
|
||||
$< $@
|
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
|
@ -2075,6 +2075,7 @@ app/tests/gimpdir/patterns/Makefile
|
|||
build/Makefile
|
||||
build/windows/Makefile
|
||||
build/windows/gimp.rc
|
||||
build/windows/gimp-plug-ins.rc
|
||||
plug-ins/Makefile
|
||||
plug-ins/color-rotate/Makefile
|
||||
plug-ins/color-rotate/images/Makefile
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
color_rotate_RC = color-rotate.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
SUBDIRS = images
|
||||
|
@ -49,4 +54,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(color_rotate_RC)
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,145 @@
|
|||
alien_map_RC = alien-map.rc.o
|
||||
align_layers_RC = align-layers.rc.o
|
||||
animation_optimize_RC = animation-optimize.rc.o
|
||||
animation_play_RC = animation-play.rc.o
|
||||
antialias_RC = antialias.rc.o
|
||||
apply_canvas_RC = apply-canvas.rc.o
|
||||
blinds_RC = blinds.rc.o
|
||||
blur_RC = blur.rc.o
|
||||
blur_gauss_RC = blur-gauss.rc.o
|
||||
blur_gauss_selective_RC = blur-gauss-selective.rc.o
|
||||
blur_motion_RC = blur-motion.rc.o
|
||||
border_average_RC = border-average.rc.o
|
||||
bump_map_RC = bump-map.rc.o
|
||||
cartoon_RC = cartoon.rc.o
|
||||
channel_mixer_RC = channel-mixer.rc.o
|
||||
checkerboard_RC = checkerboard.rc.o
|
||||
cml_explorer_RC = cml-explorer.rc.o
|
||||
color_cube_analyze_RC = color-cube-analyze.rc.o
|
||||
color_enhance_RC = color-enhance.rc.o
|
||||
color_exchange_RC = color-exchange.rc.o
|
||||
color_to_alpha_RC = color-to-alpha.rc.o
|
||||
colorify_RC = colorify.rc.o
|
||||
colormap_remap_RC = colormap-remap.rc.o
|
||||
compose_RC = compose.rc.o
|
||||
contrast_normalize_RC = contrast-normalize.rc.o
|
||||
contrast_retinex_RC = contrast-retinex.rc.o
|
||||
contrast_stretch_RC = contrast-stretch.rc.o
|
||||
contrast_stretch_hsv_RC = contrast-stretch-hsv.rc.o
|
||||
convolution_matrix_RC = convolution-matrix.rc.o
|
||||
crop_auto_RC = crop-auto.rc.o
|
||||
crop_zealous_RC = crop-zealous.rc.o
|
||||
cubism_RC = cubism.rc.o
|
||||
curve_bend_RC = curve-bend.rc.o
|
||||
decompose_RC = decompose.rc.o
|
||||
deinterlace_RC = deinterlace.rc.o
|
||||
depth_merge_RC = depth-merge.rc.o
|
||||
despeckle_RC = despeckle.rc.o
|
||||
destripe_RC = destripe.rc.o
|
||||
diffraction_RC = diffraction.rc.o
|
||||
displace_RC = displace.rc.o
|
||||
edge_RC = edge.rc.o
|
||||
edge_dog_RC = edge-dog.rc.o
|
||||
edge_laplace_RC = edge-laplace.rc.o
|
||||
edge_neon_RC = edge-neon.rc.o
|
||||
edge_sobel_RC = edge-sobel.rc.o
|
||||
emboss_RC = emboss.rc.o
|
||||
engrave_RC = engrave.rc.o
|
||||
file_aa_RC = file-aa.rc.o
|
||||
file_cel_RC = file-cel.rc.o
|
||||
file_compressor_RC = file-compressor.rc.o
|
||||
file_csource_RC = file-csource.rc.o
|
||||
file_desktop_link_RC = file-desktop-link.rc.o
|
||||
file_dicom_RC = file-dicom.rc.o
|
||||
file_gbr_RC = file-gbr.rc.o
|
||||
file_gif_load_RC = file-gif-load.rc.o
|
||||
file_gif_save_RC = file-gif-save.rc.o
|
||||
file_gih_RC = file-gih.rc.o
|
||||
file_glob_RC = file-glob.rc.o
|
||||
file_header_RC = file-header.rc.o
|
||||
file_html_table_RC = file-html-table.rc.o
|
||||
file_jp2_load_RC = file-jp2-load.rc.o
|
||||
file_mng_RC = file-mng.rc.o
|
||||
file_pat_RC = file-pat.rc.o
|
||||
file_pcx_RC = file-pcx.rc.o
|
||||
file_pdf_load_RC = file-pdf-load.rc.o
|
||||
file_pdf_save_RC = file-pdf-save.rc.o
|
||||
file_pix_RC = file-pix.rc.o
|
||||
file_png_RC = file-png.rc.o
|
||||
file_pnm_RC = file-pnm.rc.o
|
||||
file_ps_RC = file-ps.rc.o
|
||||
file_psp_RC = file-psp.rc.o
|
||||
file_raw_RC = file-raw.rc.o
|
||||
file_sunras_RC = file-sunras.rc.o
|
||||
file_svg_RC = file-svg.rc.o
|
||||
file_tga_RC = file-tga.rc.o
|
||||
file_tiff_load_RC = file-tiff-load.rc.o
|
||||
file_tiff_save_RC = file-tiff-save.rc.o
|
||||
file_wmf_RC = file-wmf.rc.o
|
||||
file_xbm_RC = file-xbm.rc.o
|
||||
file_xmc_RC = file-xmc.rc.o
|
||||
file_xpm_RC = file-xpm.rc.o
|
||||
file_xwd_RC = file-xwd.rc.o
|
||||
film_RC = film.rc.o
|
||||
filter_pack_RC = filter-pack.rc.o
|
||||
fractal_trace_RC = fractal-trace.rc.o
|
||||
gradient_map_RC = gradient-map.rc.o
|
||||
grid_RC = grid.rc.o
|
||||
guillotine_RC = guillotine.rc.o
|
||||
hot_RC = hot.rc.o
|
||||
illusion_RC = illusion.rc.o
|
||||
iwarp_RC = iwarp.rc.o
|
||||
jigsaw_RC = jigsaw.rc.o
|
||||
lcms_RC = lcms.rc.o
|
||||
lens_apply_RC = lens-apply.rc.o
|
||||
lens_distortion_RC = lens-distortion.rc.o
|
||||
lens_flare_RC = lens-flare.rc.o
|
||||
mail_RC = mail.rc.o
|
||||
max_rgb_RC = max-rgb.rc.o
|
||||
mosaic_RC = mosaic.rc.o
|
||||
newsprint_RC = newsprint.rc.o
|
||||
nl_filter_RC = nl-filter.rc.o
|
||||
noise_hsv_RC = noise-hsv.rc.o
|
||||
noise_randomize_RC = noise-randomize.rc.o
|
||||
noise_rgb_RC = noise-rgb.rc.o
|
||||
noise_solid_RC = noise-solid.rc.o
|
||||
noise_spread_RC = noise-spread.rc.o
|
||||
nova_RC = nova.rc.o
|
||||
oilify_RC = oilify.rc.o
|
||||
photocopy_RC = photocopy.rc.o
|
||||
pixelize_RC = pixelize.rc.o
|
||||
plasma_RC = plasma.rc.o
|
||||
plugin_browser_RC = plugin-browser.rc.o
|
||||
polar_coords_RC = polar-coords.rc.o
|
||||
procedure_browser_RC = procedure-browser.rc.o
|
||||
qbist_RC = qbist.rc.o
|
||||
red_eye_removal_RC = red-eye-removal.rc.o
|
||||
ripple_RC = ripple.rc.o
|
||||
rotate_RC = rotate.rc.o
|
||||
sample_colorize_RC = sample-colorize.rc.o
|
||||
screenshot_RC = screenshot.rc.o
|
||||
semi_flatten_RC = semi-flatten.rc.o
|
||||
sharpen_RC = sharpen.rc.o
|
||||
shift_RC = shift.rc.o
|
||||
sinus_RC = sinus.rc.o
|
||||
smooth_palette_RC = smooth-palette.rc.o
|
||||
softglow_RC = softglow.rc.o
|
||||
sparkle_RC = sparkle.rc.o
|
||||
sphere_designer_RC = sphere-designer.rc.o
|
||||
threshold_alpha_RC = threshold-alpha.rc.o
|
||||
tile_RC = tile.rc.o
|
||||
tile_glass_RC = tile-glass.rc.o
|
||||
tile_paper_RC = tile-paper.rc.o
|
||||
tile_seamless_RC = tile-seamless.rc.o
|
||||
tile_small_RC = tile-small.rc.o
|
||||
unit_editor_RC = unit-editor.rc.o
|
||||
unsharp_mask_RC = unsharp-mask.rc.o
|
||||
value_invert_RC = value-invert.rc.o
|
||||
value_propagate_RC = value-propagate.rc.o
|
||||
van_gogh_lic_RC = van-gogh-lic.rc.o
|
||||
video_RC = video.rc.o
|
||||
warp_RC = warp.rc.o
|
||||
waves_RC = waves.rc.o
|
||||
web_browser_RC = web-browser.rc.o
|
||||
whirl_pinch_RC = whirl-pinch.rc.o
|
||||
wind_RC = wind.rc.o
|
|
@ -8,11 +8,15 @@ require 'util.pl';
|
|||
*FILE_EXT = \$Gimp::CodeGen::util::FILE_EXT;
|
||||
|
||||
$ignorefile = ".gitignore";
|
||||
$rcfile = "gimprc.common";
|
||||
|
||||
$outmk = "Makefile.am$FILE_EXT";
|
||||
$outignore = "$ignorefile$FILE_EXT";
|
||||
$outrc = "$rcfile$FILE_EXT";
|
||||
|
||||
open MK, "> $outmk";
|
||||
open IGNORE, "> $outignore";
|
||||
open RC, "> $outrc";
|
||||
|
||||
require 'plugin-defs.pl';
|
||||
|
||||
|
@ -57,6 +61,11 @@ else
|
|||
libm = -lm
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include \$(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
include $rcfile
|
||||
endif
|
||||
|
||||
libgimp = \$(top_builddir)/libgimp/libgimp-\$(GIMP_API_VERSION).la
|
||||
libgimpbase = \$(top_builddir)/libgimpbase/libgimpbase-\$(GIMP_API_VERSION).la
|
||||
libgimpcolor = \$(top_builddir)/libgimpcolor/libgimpcolor-\$(GIMP_API_VERSION).la
|
||||
|
@ -73,7 +82,8 @@ libexecdir = \$(gimpplugindir)/plug-ins
|
|||
|
||||
EXTRA_DIST = \\
|
||||
mkgen.pl \\
|
||||
plugin-defs.pl$extra
|
||||
plugin-defs.pl$extra \\
|
||||
$rcfile
|
||||
|
||||
INCLUDES = \\
|
||||
-I\$(top_srcdir) \\
|
||||
|
@ -160,6 +170,8 @@ EOT
|
|||
}
|
||||
}
|
||||
|
||||
my $rclib = "\$(${makename}_RC)";
|
||||
|
||||
print MK <<EOT;
|
||||
|
||||
${makename}_SOURCES = \\
|
||||
|
@ -168,16 +180,23 @@ ${makename}_SOURCES = \\
|
|||
${makename}_LDADD = \\
|
||||
$libgimp \\
|
||||
$glib \\$optlib
|
||||
$deplib
|
||||
$deplib \\
|
||||
$rclib
|
||||
EOT
|
||||
|
||||
print RC <<EOT;
|
||||
${makename}_RC = $_.rc.o
|
||||
EOT
|
||||
|
||||
print IGNORE "/$_\n";
|
||||
print IGNORE "/$_.exe\n";
|
||||
}
|
||||
|
||||
close RC;
|
||||
close MK;
|
||||
close IGNORE;
|
||||
|
||||
&write_file($outmk);
|
||||
&write_file($outignore);
|
||||
&write_file($outrc);
|
||||
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
file_bmp_RC = file-bmp.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -39,4 +44,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(file_bmp_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
file_faxg3_RC = file-faxg3.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -36,4 +41,5 @@ LDADD = \
|
|||
$(libgimpmath) \
|
||||
$(GLIB_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(file_faxg3_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
file_fits_RC = file-fits.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -38,4 +43,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(file_fits_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
file_fli_RC = file-fli.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -38,4 +43,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(file_fli_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
file_ico_RC = file-ico.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -46,4 +51,5 @@ LDADD = \
|
|||
$(PNG_LIBS) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(file_ico_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
file_jpeg_RC = file-jpeg.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -55,7 +60,8 @@ file_jpeg_LDADD = \
|
|||
$(GTK_LIBS) \
|
||||
$(EXIF_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(file_jpeg_RC)
|
||||
|
||||
|
||||
noinst_PROGRAMS = jpegqual
|
||||
|
|
|
@ -12,6 +12,12 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
file_psd_load_RC = file-psd-load.rc.o
|
||||
file_psd_save_RC = file-psd-save.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -60,3 +66,11 @@ LDADD = \
|
|||
$(IPTCDATA_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
|
||||
file_psd_load_LDADD = \
|
||||
$(LDADD) \
|
||||
$(file_psd_load_RC)
|
||||
|
||||
file_psd_save_LDADD = \
|
||||
$(LDADD) \
|
||||
$(file_psd_save_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
file_sgi_RC = file-sgi.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -38,4 +43,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(file_sgi_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
file_uri_RC = file-uri.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -56,4 +61,5 @@ LDADD = \
|
|||
$(backend_libs) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(file_uri_RC)
|
||||
|
|
|
@ -8,6 +8,11 @@ libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
|||
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
||||
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
file_xjt_RC = file-xjt.rc.o
|
||||
endif
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
libexec_PROGRAMS = file-xjt
|
||||
|
@ -37,4 +42,5 @@ LDADD = \
|
|||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(JPEG_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(file_xjt_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
flame_RC = flame.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -45,4 +50,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(flame_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
fractal_explorer_RC = fractal-explorer.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
SUBDIRS = examples
|
||||
|
@ -41,4 +46,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(fractal_explorer_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
gfig_RC = gfig.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
SUBDIRS = gfig-examples images
|
||||
|
@ -72,4 +77,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(gfig_RC)
|
||||
|
|
|
@ -14,6 +14,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
gimpressionist_RC = gimpressionist.rc.o
|
||||
endif
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
-DDEFAULTPATH=\""~/$(gimpdir)/gimpressionist:$(gimpdatadir)/gimpressionist"\"
|
||||
|
||||
|
@ -72,6 +77,7 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(gimpressionist_RC)
|
||||
|
||||
EXTRA_DIST = README
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
gradient_flare_RC = gradient-flare.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
SUBDIRS = flares
|
||||
|
@ -37,4 +42,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(gradient_flare_RC)
|
||||
|
|
|
@ -14,6 +14,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
help_browser_RC = help-browser.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -38,7 +43,8 @@ LDADD = \
|
|||
$(GIO_LIBS) \
|
||||
$(GLIB_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(help_browser_RC)
|
||||
|
||||
help_browser_SOURCES = \
|
||||
gimpthrobber.c \
|
||||
|
|
|
@ -11,6 +11,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
help_RC = help.rc.o
|
||||
endif
|
||||
|
||||
AM_CPPFLAGS = -DDATADIR=\""$(gimpdatadir)"\"
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
@ -51,7 +56,8 @@ LDADD = \
|
|||
$(libgimpmath) \
|
||||
$(GIO_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(help_RC)
|
||||
|
||||
|
||||
noinst_PROGRAMS = gimp-help-lookup
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
ifs_compose_RC = ifs-compose.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -41,4 +46,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(ifs_compose_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
imagemap_RC = imagemap.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
SUBDIRS = images
|
||||
|
@ -139,7 +144,8 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(imagemap)
|
||||
|
||||
CLEANFILES = y.tab.c y.tab.h
|
||||
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
lighting_RC = lighting.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
SUBDIRS = images
|
||||
|
@ -51,4 +56,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(lighting_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
map_object_RC = map-object.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -51,4 +56,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(map_object_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
maze_RC = maze.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -43,4 +48,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(maze_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
metadata_RC = metadata.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -77,7 +82,8 @@ LDADD = \
|
|||
$(EXIF_LIBS) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(metadata_RC)
|
||||
|
||||
# test program, not built by default
|
||||
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
pagecurl_RC = pagecurl.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -42,7 +47,8 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(pagecurl_RC)
|
||||
|
||||
|
||||
PAGECURL_IMAGES = \
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
print_RC = print.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
INCLUDES = \
|
||||
|
@ -29,7 +34,8 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(print_RC)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ mwindows = -mwindows
|
|||
WINSOCK_LIBS = -lws2_32
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
script_fu_RC = script-fu.rc.o
|
||||
endif
|
||||
|
||||
AM_CFLAGS = \
|
||||
-DSTANDALONE=0 \
|
||||
-DUSE_INTERFACE=1 \
|
||||
|
@ -74,4 +79,5 @@ LDADD = \
|
|||
$(SOCKET_LIBS) \
|
||||
$(WINSOCK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(script_fu_RC)
|
||||
|
|
|
@ -12,6 +12,11 @@ if OS_WIN32
|
|||
mwindows = -mwindows
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
selection_to_path_RC = selection-to-path.rc.o
|
||||
endif
|
||||
|
||||
AM_LDFLAGS = $(mwindows)
|
||||
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
@ -59,4 +64,5 @@ LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
$(INTLLIBS) \
|
||||
$(selection_to_path_RC)
|
||||
|
|
|
@ -19,6 +19,10 @@ twain_LDFLAGS = -mwindows -luser32
|
|||
twainplatform = tw_win.c
|
||||
endif
|
||||
|
||||
if HAVE_WINDRES
|
||||
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
||||
twain_RC = twain.rc.o
|
||||
endif
|
||||
|
||||
if HAVE_MAC_TWAIN
|
||||
twain_LDFLAGS = -framework Carbon -framework TWAIN
|
||||
|
@ -61,4 +65,5 @@ LDADD = \
|
|||
$(GLIB_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS) \
|
||||
$(twain_LIBS)
|
||||
$(twain_LIBS) \
|
||||
$(twain_RC)
|
||||
|
|
Loading…
Reference in New Issue