packagekit/backends/apt/Makefile.am
Tom Parker efc3d64201 Fix apt backend for new dlopen system
APT backend needed a few fixes for the new system, including marking the
exported structure as "extern C" in order to avoid the C++ name mangling
issues. There's a few things that still could be updated, but it at least
compiles and runs now.
2007-09-07 01:32:33 +02:00

9 lines
331 B
Makefile

plugindir = @PK_PLUGIN_DIR@
plugin_LTLIBRARIES = libpk_backend_apt.la
libpk_backend_apt_la_INCLUDES = $(APT_CFLAGS)
libpk_backend_apt_la_SOURCES = pk-backend-apt.cpp
libpk_backend_apt_la_LIBADD = @PK_PLUGIN_LIBS@ $(APT_LIBS)
libpk_backend_apt_la_LDFLAGS = -module -avoid-version
libpk_backend_apt_la_CXXFLAGS = @PK_PLUGIN_CFLAGS@