build: make eloop independent of libkmscon-static

This removes the nasty dependency to libkmscon-static for libeloop.
Otherwise, we might end up with GLESv2 dependencies here which is really
not what we want.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
This commit is contained in:
David Herrmann 2012-09-04 19:10:28 +02:00
parent 700b12b89d
commit 174722b400
2 changed files with 4 additions and 2 deletions

View File

@ -267,6 +267,8 @@ include_HEADERS += \
#
libeloop_la_SOURCES = \
src/static_dlist.h \
src/static_hook.h \
src/eloop.h \
src/eloop.c
@ -280,7 +282,6 @@ libeloop_la_CPPFLAGS = \
$(AM_CPPFLAGS) \
$(DBUS_CFLAGS)
libeloop_la_LIBADD = \
libkmscon-static.la \
$(DBUS_LIBS)
libeloop_la_LDFLAGS = \
-version-info 1:0:0

View File

@ -172,8 +172,9 @@
#include <time.h>
#include <unistd.h>
#include "eloop.h"
#include "static_dlist.h"
#include "static_hook.h"
#include "static_llog.h"
#include "static_misc.h"
#define LLOG_SUBSYSTEM "eloop"