diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-04 15:22:59 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-04 15:22:59 +0000 |
commit | c9bab278e7d9ab5d8be1ea227784a4a7bafe105c (patch) | |
tree | 9fa316241d2afc533a2ac26d1f92c4511d3c51c2 /graphics/metacam/files/patch-Makefile | |
parent | Update to 1.5.a.66 (diff) |
MetaCam is a utility to read and decode meta-information from digital camera
images with EXIF information.
In addition to the standard EXIF fields, MetaCam also supports vendor-specific
extensions from Nikon, Olympus, Canon and Casio.
PR: ports/85628
Submitted by: Emanuel Haupt <ehaupt@critical.ch>
Notes
Notes:
svn path=/head/; revision=141926
Diffstat (limited to 'graphics/metacam/files/patch-Makefile')
-rw-r--r-- | graphics/metacam/files/patch-Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/graphics/metacam/files/patch-Makefile b/graphics/metacam/files/patch-Makefile new file mode 100644 index 000000000000..8c1e9165ad97 --- /dev/null +++ b/graphics/metacam/files/patch-Makefile @@ -0,0 +1,22 @@ +--- Makefile.orig Sat Aug 21 19:56:53 2004 ++++ Makefile Fri Sep 2 12:14:20 2005 +@@ -27,10 +27,8 @@ + # -- Cygwin under Windows 2000 + #OSCXXFLAGS= + +-CXX=g++ + INCLUDES= + +-CXXFLAGS=-Wall $(OSCXXFLAGS) -D_GNU_SOURCE -O2 $(INCLUDES) + + LIBOBJS=rationals.o exiftags.o \ + nikontags.o olympustags.o canontags.o casiotags.o dpyfuncs.o \ +@@ -65,7 +63,7 @@ + mv -f libmetacam.a- libmetacam.a + + metacam: $(EXEOBJS) libmetacam.a +- $(CXX) $(CXXFLAGS) $(EXEOBJS) -o metacam -lm -L. -lmetacam ++ $(CXX) $(CXXFLAGS) $(EXEOBJS) -o metacam -lm -L. -lmetacam $(LDFLAGS) + + # Dependency rules + dependencies: Makefile $(DEPS) |