|
Lines 35-58
Link Here
|
| 35 |
messages: rc.cpp |
35 |
messages: rc.cpp |
| 36 |
$(XGETTEXT) *.cpp *.h -o $(podir)/kipiplugin_rawconverter.pot |
36 |
$(XGETTEXT) *.cpp *.h -o $(podir)/kipiplugin_rawconverter.pot |
| 37 |
|
37 |
|
| 38 |
#-- dcraw binary ------------------------------------------------- |
|
|
| 39 |
|
| 40 |
# RawConverter plugin use a dedicaced dcraw binary program to run. This is mandatory |
| 41 |
# since dcraw author have broken the command line options |
| 42 |
# compatibility with the 8.x serie. |
| 43 |
# Also, dcraw is not available like a library. |
| 44 |
# The dcraw.c source code is just a copy of official implementation, but |
| 45 |
# this one have been completly tested with this plugin. |
| 46 |
# Note: dcraw project page is http://cybercom.net/~dcoffin |
| 47 |
|
| 48 |
bin_PROGRAMS = kipidcraw |
| 49 |
|
| 50 |
# This line is require to disable color management support (using LCMS library) witch |
| 51 |
# is not yet supported by plugin. |
| 52 |
kipidcraw_CFLAGS = -DNO_LCMS -w |
| 53 |
|
| 54 |
kipidcraw_SOURCES = dcraw.c |
| 55 |
|
| 56 |
kipidcraw_LDFLAGS = $(all_libraries) $(LIBJPEG) -lm |
| 57 |
|
| 58 |
|