diff options
author | TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net> | 2007-02-21 20:27:07 +0100 |
---|---|---|
committer | TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net> | 2007-02-21 20:27:07 +0100 |
commit | 1433a5b463994983f94032f47cfb8648127200ed (patch) | |
tree | bc283a5fc6091966e204b2da64f0610bddb7200e /reply | |
parent | e9f791e0977f818d1f7b4b8db7baacd98fe591ce (diff) |
rename the libraries from libXCBFoo.* to libxcb-foo.*. Use foo_CPPFLAGS instead of foo_CFLAGS (*_CFLAGS variables store preprocessor options)
Diffstat (limited to 'reply')
-rw-r--r-- | reply/Makefile.am | 12 | ||||
-rw-r--r-- | reply/xcb-reply.pc.in | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/reply/Makefile.am b/reply/Makefile.am index 06b03c8..847d0f7 100644 --- a/reply/Makefile.am +++ b/reply/Makefile.am @@ -1,17 +1,17 @@ MAINTAINERCLEANFILES = Makefile.in -lib_LTLIBRARIES = libXCBReply.la +lib_LTLIBRARIES = libxcb-reply.la xcbinclude_HEADERS = xcb_reply.h AM_CFLAGS = $(CWARNFLAGS) -XCB_REPLY_LIBS = libXCBReply.la +XCB_REPLY_LIBS = libxcb-reply.la -libXCBReply_la_SOURCES = reply.c -libXCBReply_la_CFLAGS = $(XCB_CFLAGS) -libXCBReply_la_LIBADD = $(XCB_LIBS) -lpthread +libxcb_reply_la_SOURCES = reply.c +libxcb_reply_la_CPPFLAGS = $(XCB_CFLAGS) +libxcb_reply_la_LIBADD = $(XCB_LIBS) -lpthread pkgconfig_DATA = xcb-reply.pc @@ -19,6 +19,6 @@ EXTRA_DIST=xcb-reply.pc.in noinst_PROGRAMS = test_reply -test_reply_CFLAGS = $(XCB_CFLAGS) +test_reply_CPPFLAGS = $(XCB_CFLAGS) test_reply_LDADD = $(XCB_LIBS) $(XCB_REPLY_LIBS) test_reply_SOURCES = test_reply.c diff --git a/reply/xcb-reply.pc.in b/reply/xcb-reply.pc.in index a383165..3299a5f 100644 --- a/reply/xcb-reply.pc.in +++ b/reply/xcb-reply.pc.in @@ -3,9 +3,9 @@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ -Name: XCBReply +Name: XCB Reply library Description: XCB reply convenience library Version: @PACKAGE_VERSION@ Requires: xcb -Libs: -L${libdir} -lXCBReply @LIBS@ +Libs: -L${libdir} -lxcb-reply @LIBS@ Cflags: -I${includedir} |