From 5a0f6c23f56d1df24e8ce09408bb68a0c2526b94 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 7 May 2013 13:29:47 +0200 Subject: [PATCH] Update example module to use metaproxy-config rather than yazpp-config. --- example-module/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/example-module/Makefile b/example-module/Makefile index 63810a2..a352aed 100644 --- a/example-module/Makefile +++ b/example-module/Makefile @@ -1,10 +1,12 @@ -CONFIG=../../yazpp/yazpp-config +CONFIG=../metaproxy-config SO=metaproxy_filter_myfilter.so all: $(SO) $(SO): filter_myfilter.cpp - $(CXX) -shared `$(CONFIG) --cflags` -fPIC -I ../src $< -o $(SO) ../src/.libs/libmetaproxy.so -ldl + echo $(LIBS) + $(CXX) -shared `$(CONFIG) --cflags` -fPIC -I ../src $< \ + -o $(SO) `$(CONFIG) --libs` clean: rm -f *.so -- 1.7.10.4