According to the README, the latest version 1.7.13 needs a small alteration to the Vompserver makefile.
--- PLUGINS/src/vompserver/Makefile 2009/10/18 14:00:07 2.1
+++ PLUGINS/src/vompserver/Makefile 2010/02/06 14:50:03 2.2
@@ -19,7 +19,8 @@
ifdef DEBUG
CXXFLAGS ?= -g -fPIC -Wall -Woverloaded-virtual #-Werror
else
-CXXFLAGS ?= -O2 -fPIC -Wall -Woverloaded-virtual #-Werror
+CXXFLAGS ?= -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
+
endif
### The directory environment:
@@ -28,6 +29,10 @@
LIBDIR = ../../lib
TMPDIR = /tmp
+### Make sure that necessary options are included:
+
+include $(VDRDIR)/Make.global
+
Works for me, though I'm not sure what the debug options ought to be.