summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--markad-standalone.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4df7847..8184867 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' version.h | awk '{ print
### The C++ compiler and options:
CXX ?= g++
-CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
+CXXFLAGS ?= -fPIC -g -O2 -Wall -Wextra -Woverloaded-virtual -Wno-parentheses
PKG-CONFIG ?= pkg-config
### The directory environment:
@@ -115,7 +115,7 @@ dist: clean
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@mkdir $(TMPDIR)/$(ARCHIVE)
@cp -a *.cpp *.h $(TMPDIR)/$(ARCHIVE)
- @cp -a po COPYING HISTORY README Makefile $(TMPDIR)/$(ARCHIVE)
+ @cp -a logos po COPYING HISTORY README Makefile $(TMPDIR)/$(ARCHIVE)
@tar czf $(PACKAGE).tgz -C $(TMPDIR) --exclude debian --exclude CVS --exclude .svn --exclude markad.kdevelop --exclude markad.kdevelop.filelist --exclude markad.kdevelop.pcs --exclude markad.kdevses --exclude Doxyfile --exclude test $(ARCHIVE)
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@echo Distribution package created as $(PACKAGE).tgz
diff --git a/markad-standalone.cpp b/markad-standalone.cpp
index e4f4b3c..9d4cb82 100644
--- a/markad-standalone.cpp
+++ b/markad-standalone.cpp
@@ -100,7 +100,7 @@ void cMarkAdStandalone::AddMark(MarkAdMark *Mark)
if ((Mark->Position-prev->position)<20)
{
if (Mark->Comment) isyslog(Mark->Comment);
- isyslog("aspectratio change in low distance, moving mark (%i->%i)",Mark->Position,prev->position);
+ isyslog("aspectratio change in short distance, moving mark (%i->%i)",Mark->Position,prev->position);
marks.Add(MT_MOVED,prev->position,Mark->Comment);
return;
}