diff options
author | Josh Triplett <josh@freedesktop.org> | 2006-04-27 01:06:46 -0700 |
---|---|---|
committer | Josh Triplett <josh@freedesktop.org> | 2006-04-27 01:06:46 -0700 |
commit | efbe654893e6b443218417b49e3db5d541ff28c5 (patch) | |
tree | 9c1b8b219d2a2f20d510429835eb9514ee54b1dd /icccm | |
parent | c6fab7e8addb8793210afbf011c2d00abe522e82 (diff) |
Fix xcb-util library dependencies, including both the new dependency libXCBImage needs on libXCBShm, as well as many other issues discovered in the process. These include using automake variables appropriately in order to actually link shared libraries against each other and ensure libraries have NEEDED entries for the libraries they depend on, consequently needing to reorder the top-level SUBDIRS to build property before icccm, adding dependencies to .pc.in files, fixing .pc.in files to not all use the name and description for XCBImage, and adding appropriate library dependencies to test programs.
Diffstat (limited to 'icccm')
-rw-r--r-- | icccm/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/icccm/Makefile.am b/icccm/Makefile.am index f7f8a5a..dd63eb5 100644 --- a/icccm/Makefile.am +++ b/icccm/Makefile.am @@ -6,14 +6,14 @@ lib_LTLIBRARIES = libXCBICCCM.la xcbinclude_HEADERS = xcb_icccm.h AM_CFLAGS = -Wall -INCLUDES = $(XCB_CFLAGS) -I../atom -I../event -I../property -LDADD = $(XCB_LIBS) \ + +libXCBICCCM_la_SOURCES = icccm.c +libXCBICCCM_la_CFLAGS = $(XCB_CFLAGS) -I../atom -I../event -I../property +libXCBICCCM_la_LIBADD = $(XCB_LIBS) \ -L../atom -lXCBAtom \ -L../event -lXCBEvent \ -L../property -lXCBProperty -libXCBICCCM_la_SOURCES = icccm.c - pkgconfig_DATA = xcb-icccm.pc EXTRA_DIST = xcb-icccm.pc.in |