WvDBusMsg::is_reply() had an unnecessary hack for message #1.
[wvapps.git] / unity / topdir.mk
blobed85813fe8efc1110afd17f2228f5194a8322573
1 ifeq ($(TOPDIR),)
2 TOPDIR=$(TOPSRCDIR)
4 prefix=/usr/local
5 WVSTREAMS_INC=
6 WVSTREAMS_LIB=
7 WVSTREAMS_BIN=$(prefix)/bin
8 WVSTREAMS_SRC=$(TOPSRCDIR)
10 PC_CFLAGS=$(shell pkg-config --cflags libwvstreams)
11 ifeq ($(PC_CFLAGS),)
12 $(error WvStreams does not appear to be installed)
13 endif
14 CPPFLAGS+=$(PC_CFLAGS)
16 PC_LIBS=$(shell pkg-config --libs libwvstreams)
17 ifeq ($(PC_LIBS),)
18 $(error WvStreams does not appear to be installed)
19 endif
20 LIBS+=$(PC_LIBS)
21 else
22 XPATH=..
23 LIBS+=$(LIBUNICONF)
24 endif
26 SAVED_PACKAGE_VERSION := $(PACKAGE_VERSION)
27 SAVED_SO_VERSION := $(SO_VERSION)
28 include $(TOPDIR)/wvrules.mk
29 SAVED_PACKAGE_VERSION := $(SAVE_PACKAGE_VERSION)
30 SO_VERSION := $(SAVED_SO_VERSION)
32 VPATH=$(TOPSRCDIR)
34 ifneq ($(PC_CFLAGS),)
35 CPPFLAGS+=$(PC_CFLAGS)
36 endif