mirror of https://github.com/GNOME/gimp.git
plug-ins: link file-compressor against GIO
mkgen.pl: add support for "gio => 1" in plug-in-desf.pl, Regenerate Makefile.am
This commit is contained in:
parent
7b9a7439dc
commit
372a985d2b
|
@ -637,6 +637,7 @@ file_compressor_LDADD = \
|
|||
$(libgimpbase) \
|
||||
$(CAIRO_LIBS) \
|
||||
$(GDK_PIXBUF_LIBS) \
|
||||
$(GIO_LIBS) \
|
||||
$(LZMA_LIBS) \
|
||||
$(BZIP2_LIBS) \
|
||||
$(Z_LIBS) \
|
||||
|
|
|
@ -141,9 +141,14 @@ foreach (sort keys %plugins) {
|
|||
|
||||
my $glib;
|
||||
if (exists $plugins{$_}->{ui}) {
|
||||
$glib = "\$(GTK_LIBS)\t\t\\"
|
||||
$glib = "\$(GTK_LIBS)\t\t\\";
|
||||
} else {
|
||||
$glib = "\$(CAIRO_LIBS)\t\t\\\n\t\$(GDK_PIXBUF_LIBS)\t\\"
|
||||
$glib = "\$(CAIRO_LIBS)\t\t\\\n\t\$(GDK_PIXBUF_LIBS)\t\\";
|
||||
|
||||
if (exists $plugins{$_}->{gio} &&
|
||||
! exists $plugins{$_}->{gegl}) {
|
||||
$glib .= "\n\t\$(GIO_LIBS)\t\t\\";
|
||||
}
|
||||
}
|
||||
|
||||
if (exists $plugins{$_}->{gegl}) {
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
'file-aa' => { ui => 1, gegl => 1, optional => 1, libs => 'AA_LIBS' },
|
||||
'file-cel' => { ui => 1, gegl => 1 },
|
||||
'file-csource' => { ui => 1, gegl => 1 },
|
||||
'file-compressor' => { libdep => 'Z:BZIP2:LZMA', cflags => 'LZMA_CFLAGS' },
|
||||
'file-compressor' => { gio => 1, libdep => 'Z:BZIP2:LZMA', cflags => 'LZMA_CFLAGS' },
|
||||
'file-desktop-link' => {},
|
||||
'file-dicom' => { ui => 1, gegl => 1, cflags => '-fno-strict-aliasing' },
|
||||
'file-gbr' => { ui => 1, gegl => 1 },
|
||||
|
|
Loading…
Reference in New Issue