View | Details | Raw Unified
Collapse All | Expand All

(-) kipi-plugins-0.1.3/kipi-plugins/rawconverter/dcrawbinary.cpp (-1 / +1 lines)
 Lines 93-99    Link Here 
const char *DcrawBinary::path()
const char *DcrawBinary::path()
{
{
    return "kipidcraw";
    return "dcraw";
}
}
bool DcrawBinary::isAvailable() const
bool DcrawBinary::isAvailable() const
(-) kipi-plugins-0.1.3/kipi-plugins/rawconverter/Makefile.am (-21 lines)
 Lines 35-58    Link Here 
messages: rc.cpp
messages: rc.cpp
	$(XGETTEXT) *.cpp *.h -o $(podir)/kipiplugin_rawconverter.pot
	$(XGETTEXT) *.cpp *.h -o $(podir)/kipiplugin_rawconverter.pot
#-- dcraw binary -------------------------------------------------
# RawConverter plugin use a dedicaced dcraw binary program to run. This is mandatory 
# since dcraw author have broken the command line options 
# compatibility with the 8.x serie.
# Also, dcraw is not available like a library.
# The dcraw.c source code is just a copy of official implementation, but 
# this one have been completly tested with this plugin. 
# Note: dcraw project page is http://cybercom.net/~dcoffin
bin_PROGRAMS = kipidcraw
# This line is require to disable color management support (using LCMS library) witch 
# is not yet supported by plugin.
kipidcraw_CFLAGS = -DNO_LCMS -w 
kipidcraw_SOURCES = dcraw.c
kipidcraw_LDFLAGS = $(all_libraries) $(LIBJPEG) -lm