mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
EasyEXIF is a tiny, lightweight C++ library that parses basic information out of
EXIF files. It uses only the std::string library and is otherwise pure C++.
It is made of one .h file and one .cpp file.
This is a new dependency for the upcoming update of devel/vcglib[1]
[1] dd8c26474d
15 lines
344 B
Text
15 lines
344 B
Text
--- Makefile.orig 2015-11-14 20:31:28 UTC
|
|
+++ Makefile
|
|
@@ -1,5 +1,4 @@
|
|
-CXX=g++
|
|
-CXXFLAGS=-O2 -pedantic -Wall -Wextra -ansi -std=c++11
|
|
+#CXXFLAGS+=-O2 -pedantic -Wall -Wextra -ansi -std=c++11
|
|
|
|
all: demo
|
|
|
|
@@ -10,4 +9,4 @@ demo: exif.o demo.cpp
|
|
$(CXX) $(CXXFLAGS) -o demo exif.o demo.cpp
|
|
|
|
clean:
|
|
- rm -f *.o demo demo.exe
|
|
+ rm -f *.o demo
|