]> git.decadent.org.uk Git - videolink.git/commitdiff
Added webdvd_lib_dir variable.
authorBen Hutchings <ben@decadent.org.uk>
Sat, 12 Nov 2005 15:44:53 +0000 (15:44 +0000)
committerBen Hutchings <ben@decadent.org.uk>
Sun, 2 Nov 2008 23:17:20 +0000 (23:17 +0000)
Suppressed incorrect warnings.

Makefile

index 168ca2c26781441404d26abe0cf6bfa25514342c..92f82aefa3c0de64e49fd11a109963dfb32be5c7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,7 @@
 prefix := /usr/local
 
+webdvd_lib_dir := $(prefix)/lib/webdvd
+
 moz_include_dir := \
     $(shell pkg-config --variable=prefix mozilla-gtkmozembed)/include/mozilla
 moz_lib_dir := \
@@ -7,7 +9,9 @@ moz_lib_dir := \
 
 CFLAGS := -Wall
 CPPFLAGS := -D_REENTRANT
-CXXFLAGS := -Wall
+# Non-virtual destructors are fine in XPCOM interface classes since
+# instances are only ever called by the Release function which is virtual.
+CXXFLAGS := -Wall -Wno-non-virtual-dtor
 LDFLAGS := -lpthread $(shell pkg-config --libs gtkmm-2.0 mozilla-gtkmozembed) \
            -Wl,-rpath -Wl,$(moz_lib_dir)
 
@@ -42,8 +46,7 @@ install :
 
 browserwidget.% : CPPFLAGS += -DMOZ_LIB_DIR='"$(moz_lib_dir)"'
 
-webdvd.% \
-    : CPPFLAGS += -DWEBDVD_LIB_DIR='"$(prefix)/lib/webdvd"'
+webdvd.% : CPPFLAGS += -DWEBDVD_LIB_DIR='"$(webdvd_lib_dir)"'
 
 browserwidget.% pixbufs.% webdvd.% \
     : CPPFLAGS += $(shell pkg-config --cflags gtkmm-2.0)