Fixes to autotools build to respect mn_int.cpp files (#186)

* Fixes to autotools build to respect mn_int.cpp files

* Changes following Luis' code review.
v0.27.3
Robin Mills 8 years ago committed by Luis Díaz Más
parent 6b29822670
commit 8f5b795eaa

@ -117,6 +117,7 @@ endif
PREFIX = /usr/local/lib PREFIX = /usr/local/lib
LINK.cc += -rpath $(PREFIX) -L$(PREFIX) LINK.cc += -rpath $(PREFIX) -L$(PREFIX)
COMPILE.cc += -I$(top_srcdir)/include -I$(top_srcdir)/include/exiv2
# ****************************************************************************** # ******************************************************************************
# Rules # Rules

@ -57,29 +57,31 @@ include $(top_srcdir)/config/config.mk
# ****************************************************************************** # ******************************************************************************
# Source files # Source files
# Add standalone C++ header files to this list # exiv2 command-line program C++ header files
CCHDR = exiv2.hpp \ CCHDR = exiv2.hpp \
config.h \ config.h \
exv_conf.h \ exv_conf.h \
xmp_exiv2.hpp \ xmp_exiv2.hpp \
version.hpp version.hpp
# Add library C++ source files to this list # library C++ source files
CCSRC = basicio.cpp \ CCSRC = basicio.cpp \
bmpimage.cpp \
bigtiffimage.cpp \ bigtiffimage.cpp \
canonmn.cpp \ bmpimage.cpp \
casiomn.cpp \ canonmn_int.cpp \
casiomn_int.cpp \
convert.cpp \ convert.cpp \
cr2image_int.cpp \
cr2image.cpp \ cr2image.cpp \
crwimage_int.cpp \
crwimage.cpp \ crwimage.cpp \
datasets.cpp \ datasets.cpp \
easyaccess.cpp \ easyaccess.cpp \
epsimage.cpp \ epsimage.cpp \
error.cpp \ error.cpp \
exif.cpp \ exif.cpp \
fujimn_int.cpp \
futils.cpp \ futils.cpp \
fujimn.cpp \
gifimage.cpp \ gifimage.cpp \
http.cpp \ http.cpp \
image.cpp \ image.cpp \
@ -87,42 +89,48 @@ CCSRC = basicio.cpp \
iptc.cpp \ iptc.cpp \
jp2image.cpp \ jp2image.cpp \
jpgimage.cpp \ jpgimage.cpp \
makernote.cpp \ makernote_int.cpp \
metadatum.cpp \ metadatum.cpp \
minoltamn.cpp \ minoltamn_int.cpp \
mrwimage.cpp \ mrwimage.cpp \
nikonmn.cpp \ nikonmn_int.cpp \
olympusmn.cpp \ olympusmn_int.cpp \
orfimage_int.cpp \
orfimage.cpp \ orfimage.cpp \
panasonicmn.cpp \ pgfimage.cpp \
pentaxmn.cpp \ preview.cpp \
pgfimage.cpp panasonicmn_int.cpp \
ifdef HAVE_LIBZ pentaxmn_int.cpp \
CCSRC += pngimage.cpp \
pngchunk.cpp
endif
CCSRC += preview.cpp \
properties.cpp \ properties.cpp \
psdimage.cpp \ psdimage.cpp \
rafimage.cpp \ rafimage.cpp \
rw2image_int.cpp \
rw2image.cpp \ rw2image.cpp \
samsungmn.cpp samsungmn_int.cpp \
ifdef USE_SSH sigmamn_int.cpp \
CCSRC += ssh.cpp sonymn_int.cpp \
endif
CCSRC += sigmamn.cpp \
sonymn.cpp \
tags.cpp \ tags.cpp \
tgaimage.cpp \ tgaimage.cpp \
tiffcomposite.cpp \ tiffcomposite_int.cpp \
tiffimage_int.cpp \
tiffimage.cpp \ tiffimage.cpp \
tiffvisitor.cpp \ tiffvisitor_int.cpp \
types.cpp \ types.cpp \
value.cpp \ value.cpp \
version.cpp \ version.cpp \
webpimage.cpp \ webpimage.cpp \
xmp.cpp \ xmp.cpp \
xmpsidecar.cpp xmpsidecar.cpp
ifdef HAVE_LIBZ
CCSRC += pngimage.cpp \
pngchunk_int.cpp
endif
ifdef USE_SSH
CCSRC += ssh.cpp
endif
ifdef ENABLE_VIDEO ifdef ENABLE_VIDEO
CCSRC += asfvideo.cpp \ CCSRC += asfvideo.cpp \
matroskavideo.cpp \ matroskavideo.cpp \
@ -131,7 +139,7 @@ CCSRC += asfvideo.cpp \
utilsvideo.cpp utilsvideo.cpp
endif endif
# Add library C source files to this list # C source files to this list
EXIVCSRC = EXIVCSRC =
ifndef HAVE_TIMEGM ifndef HAVE_TIMEGM
CSRC = localtime.c CSRC = localtime.c

Loading…
Cancel
Save