mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-25 03:20:25 +01:00
Patch from David Cantrell <dcantrell@redhat.com> and me * include/nm-dbus-glib-types.h - Add IP6 address types * libnm-util/Makefile.am libnm-util/nm-setting-ip6-config.c libnm-util/nm-setting-ip6-config.h - Add IP6 settings object * libnm-util/nm-connection.c - (register_default_settings): register ip6 settings object * libnm-util/nm-utils.c libnm-util/nm-utils.h - (nm_utils_ip6_addresses_from_gvalue, nm_utils_ip6_addresses_to_gvalue, nm_utils_ip6_dns_from_gvalue, nm_utils_ip6_dns_to_gvalue): add ip6 address conversion functions git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3778 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
84 lines
1.9 KiB
Makefile
84 lines
1.9 KiB
Makefile
INCLUDES = -I${top_srcdir} -I${top_srcdir}/include
|
|
|
|
lib_LTLIBRARIES=libnm-util.la
|
|
|
|
libnm_util_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
-DG_DISABLE_DEPRECATED
|
|
|
|
libnm_util_include_HEADERS = \
|
|
nm-connection.h \
|
|
nm-setting.h \
|
|
nm-setting-8021x.h \
|
|
nm-setting-connection.h \
|
|
nm-setting-ip4-config.h \
|
|
nm-setting-ip6-config.h \
|
|
nm-setting-ppp.h \
|
|
nm-setting-pppoe.h \
|
|
nm-setting-serial.h \
|
|
nm-setting-gsm.h \
|
|
nm-setting-cdma.h \
|
|
nm-setting-wired.h \
|
|
nm-setting-wireless.h \
|
|
nm-setting-wireless-security.h \
|
|
nm-setting-vpn.h \
|
|
nm-setting-vpn-properties.h \
|
|
nm-utils.h
|
|
|
|
libnm_util_la_SOURCES= \
|
|
crypto.c \
|
|
crypto.h \
|
|
nm-connection.c \
|
|
nm-param-spec-specialized.c \
|
|
nm-setting.c \
|
|
nm-setting-8021x.c \
|
|
nm-setting-connection.c \
|
|
nm-setting-ip4-config.c \
|
|
nm-setting-ip6-config.c \
|
|
nm-setting-ppp.c \
|
|
nm-setting-pppoe.c \
|
|
nm-setting-serial.c \
|
|
nm-setting-gsm.c \
|
|
nm-setting-cdma.c \
|
|
nm-setting-wired.c \
|
|
nm-setting-wireless.c \
|
|
nm-setting-wireless-security.c \
|
|
nm-setting-vpn.c \
|
|
nm-setting-vpn-properties.c \
|
|
nm-utils.c \
|
|
$(libnm_util_include_HEADERS)
|
|
|
|
libnm_util_la_LDFLAGS= $(GLIB_LIBS) $(DBUS_LIBS)
|
|
|
|
libnm_util_la_LIBADD =
|
|
|
|
if WITH_GNUTLS
|
|
libnm_util_la_SOURCES += crypto_gnutls.c
|
|
libnm_util_la_CPPFLAGS += $(LIBGCRYPT_CFLAGS) $(GNUTLS_CFLAGS)
|
|
libnm_util_la_LIBADD += $(LIBGCRYPT_LIBS) $(GNUTLS_LIBS)
|
|
endif
|
|
|
|
if WITH_NSS
|
|
libnm_util_la_SOURCES += crypto_nss.c
|
|
libnm_util_la_CPPFLAGS += $(NSS_CFLAGS)
|
|
libnm_util_la_LIBADD += $(NSS_LIBS)
|
|
endif
|
|
|
|
libnm_util_includedir=$(includedir)/NetworkManager
|
|
|
|
noinst_PROGRAMS = test-crypto
|
|
|
|
test_crypto_SOURCES = test-crypto.c
|
|
test_crypto_CPPFLAGS = $(GLIB_CFLAGS) -D_GNU_SOURCE
|
|
test_crypto_LDADD = $(GLIB_LIBS) libnm-util.la
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libnm-util.pc
|
|
|
|
DISTCLEANFILES = libnm-util.pc
|
|
|
|
EXTRA_DIST = \
|
|
libnm-util.pc.in \
|
|
nm-param-spec-specialized.h
|