NetworkManager/nm-applet-internal-buildfixes.patch

176 lines
8.3 KiB
Diff
Raw Normal View History

- Update to 0.8.1 release candidate - core: fix WWAN hardware enable state tracking (rh #591622) - core: fix Red Hat initscript return value on double-start (rh #584321) - core: add multicast route entry for IPv4 link-local connections - core: fix connection sharing in cases where a dnsmasq config file exists - core: fix handling of Ad-Hoc wifi connections to indicate correct network - core: ensure VPN interface name is passed to dispatcher when VPN goes down - ifcfg-rh: fix handling of ASCII WEP keys - ifcfg-rh: fix double-quoting of some SSIDs (rh #606518) - applet: ensure deleted connections are actually forgotten (rh #618973) - applet: don't crash if the AP's BSSID isn't availabe (rh #603236) - editor: don't crash on PolicyKit events after windows are closed (rh #572466) Wed May 26 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.3 - core: fix nm-online crash (rh #593677) - core: fix failed suspend disables network (rh #589108) - core: print out missing firmware errors (rh #594578) - applet: fix device descriptions for some mobile broadband devices - keyfile: bluetooth fixes - applet: updated translations (rh #589230) Wed May 19 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.2.git20100519 - core: use GIO in local mode only (rh #588745) - core: updated translations (rh #589230) - core: be more lenient in IPv6 RDNSS server expiry (rh #590202) - core: fix headers to be C++ compatible (rh #592783) - applet: updated translations (rh #589230) - applet: lock connections with well-known SSIDs to their specific AP
2010-06-26 02:48:14 +00:00
diff -up NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/configure.ac.buildfix NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/configure.ac
--- NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/configure.ac.buildfix 2009-07-28 10:01:26.000000000 -0400
+++ NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/configure.ac 2009-07-28 13:11:39.261718877 -0400
2009-07-28 16:58:04 +00:00
@@ -70,10 +70,6 @@ PKG_CHECK_MODULES(GOBJECT, gobject-2.0)
2007-08-30 22:03:19 +00:00
PKG_CHECK_MODULES(NMA,
[dbus-glib-1 >= 0.74
glib-2.0 >= 2.16
- NetworkManager >= 0.8
- libnm-glib >= 0.8
- libnm-util >= 0.8
- libnm-glib-vpn >= 0.8
gtk+-2.0 >= 2.14
2007-08-30 22:03:19 +00:00
libglade-2.0
2008-07-18 16:22:44 +00:00
gmodule-export-2.0
2009-07-28 17:11:39 +00:00
@@ -192,9 +188,7 @@ AC_SUBST(DBUS_SYS_DIR)
dnl Check for gnome-bluetooth
2009-07-28 16:58:04 +00:00
PKG_CHECK_MODULES(GNOME_BLUETOOTH,
gconf-2.0
2009-07-28 17:11:39 +00:00
- gnome-bluetooth-1.0 >= 2.27.6
- libnm-util >= 0.8
- libnm-glib >= 0.8,
2009-07-28 17:11:39 +00:00
+ gnome-bluetooth-1.0 >= 2.27.6,
2009-07-28 16:58:04 +00:00
have_gbt=yes, have_gbt=no)
AM_CONDITIONAL(HAVE_GBT, test x"$have_gbt" = "xyes")
- Update to 0.8.1 release candidate - core: fix WWAN hardware enable state tracking (rh #591622) - core: fix Red Hat initscript return value on double-start (rh #584321) - core: add multicast route entry for IPv4 link-local connections - core: fix connection sharing in cases where a dnsmasq config file exists - core: fix handling of Ad-Hoc wifi connections to indicate correct network - core: ensure VPN interface name is passed to dispatcher when VPN goes down - ifcfg-rh: fix handling of ASCII WEP keys - ifcfg-rh: fix double-quoting of some SSIDs (rh #606518) - applet: ensure deleted connections are actually forgotten (rh #618973) - applet: don't crash if the AP's BSSID isn't availabe (rh #603236) - editor: don't crash on PolicyKit events after windows are closed (rh #572466) Wed May 26 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.3 - core: fix nm-online crash (rh #593677) - core: fix failed suspend disables network (rh #589108) - core: print out missing firmware errors (rh #594578) - applet: fix device descriptions for some mobile broadband devices - keyfile: bluetooth fixes - applet: updated translations (rh #589230) Wed May 19 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.2.git20100519 - core: use GIO in local mode only (rh #588745) - core: updated translations (rh #589230) - core: be more lenient in IPv6 RDNSS server expiry (rh #590202) - core: fix headers to be C++ compatible (rh #592783) - applet: updated translations (rh #589230) - applet: lock connections with well-known SSIDs to their specific AP
2010-06-26 02:48:14 +00:00
diff -up NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/connection-editor/Makefile.am.buildfix NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/connection-editor/Makefile.am
--- NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/connection-editor/Makefile.am.buildfix 2009-07-23 10:51:39.000000000 -0400
+++ NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/connection-editor/Makefile.am 2009-07-28 11:29:11.685841724 -0400
@@ -1,5 +1,9 @@
2008-07-18 16:22:44 +00:00
bin_PROGRAMS = nm-connection-editor
+INCLUDES = -I${top_srcdir}/../include \
+ -I${top_srcdir}/../libnm-util \
+ -I${top_srcdir}/../libnm-glib
+
nm_connection_editor_CPPFLAGS = \
$(NMA_CFLAGS) \
-DICONDIR=\""$(datadir)/icons"\" \
@@ -63,7 +67,10 @@ nm_connection_editor_LDADD = \
2008-07-18 16:22:44 +00:00
${top_builddir}/src/utils/libutils.la \
${top_builddir}/src/marshallers/libmarshallers.la \
$(NMA_LIBS) \
- -lm
+ -lm \
2008-07-18 16:22:44 +00:00
+ -L${top_builddir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \
+ -L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm-glib.la \
+ -L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm-glib-vpn.la
2008-07-18 16:22:44 +00:00
gladedir = $(datadir)/nm-applet
glade_DATA = \
- Update to 0.8.1 release candidate - core: fix WWAN hardware enable state tracking (rh #591622) - core: fix Red Hat initscript return value on double-start (rh #584321) - core: add multicast route entry for IPv4 link-local connections - core: fix connection sharing in cases where a dnsmasq config file exists - core: fix handling of Ad-Hoc wifi connections to indicate correct network - core: ensure VPN interface name is passed to dispatcher when VPN goes down - ifcfg-rh: fix handling of ASCII WEP keys - ifcfg-rh: fix double-quoting of some SSIDs (rh #606518) - applet: ensure deleted connections are actually forgotten (rh #618973) - applet: don't crash if the AP's BSSID isn't availabe (rh #603236) - editor: don't crash on PolicyKit events after windows are closed (rh #572466) Wed May 26 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.3 - core: fix nm-online crash (rh #593677) - core: fix failed suspend disables network (rh #589108) - core: print out missing firmware errors (rh #594578) - applet: fix device descriptions for some mobile broadband devices - keyfile: bluetooth fixes - applet: updated translations (rh #589230) Wed May 19 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.2.git20100519 - core: use GIO in local mode only (rh #588745) - core: updated translations (rh #589230) - core: be more lenient in IPv6 RDNSS server expiry (rh #590202) - core: fix headers to be C++ compatible (rh #592783) - applet: updated translations (rh #589230) - applet: lock connections with well-known SSIDs to their specific AP
2010-06-26 02:48:14 +00:00
diff -up NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/gconf-helpers/Makefile.am.buildfix NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/gconf-helpers/Makefile.am
--- NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/gconf-helpers/Makefile.am.buildfix 2009-04-20 07:09:10.000000000 -0400
+++ NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/gconf-helpers/Makefile.am 2009-07-28 11:29:11.686841642 -0400
2007-11-19 19:36:15 +00:00
@@ -1,3 +1,7 @@
+INCLUDES = -I${top_srcdir}/../include \
+ -I${top_srcdir}/../libnm-util \
+ -I${top_srcdir}/../libnm-glib
+
noinst_LTLIBRARIES = libgconf-helpers.la
2007-11-19 19:36:15 +00:00
libgconf_helpers_la_SOURCES = \
2008-07-18 16:22:44 +00:00
@@ -19,5 +23,7 @@ libgconf_helpers_la_CPPFLAGS = \
libgconf_helpers_la_LIBADD = \
$(NMA_LIBS) \
${top_builddir}/src/marshallers/libmarshallers.la \
- ${top_builddir}/src/utils/libutils.la
+ ${top_builddir}/src/utils/libutils.la \
+ -L${top_builddir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \
+ -L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm-glib.la
- Update to 0.8.1 release candidate - core: fix WWAN hardware enable state tracking (rh #591622) - core: fix Red Hat initscript return value on double-start (rh #584321) - core: add multicast route entry for IPv4 link-local connections - core: fix connection sharing in cases where a dnsmasq config file exists - core: fix handling of Ad-Hoc wifi connections to indicate correct network - core: ensure VPN interface name is passed to dispatcher when VPN goes down - ifcfg-rh: fix handling of ASCII WEP keys - ifcfg-rh: fix double-quoting of some SSIDs (rh #606518) - applet: ensure deleted connections are actually forgotten (rh #618973) - applet: don't crash if the AP's BSSID isn't availabe (rh #603236) - editor: don't crash on PolicyKit events after windows are closed (rh #572466) Wed May 26 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.3 - core: fix nm-online crash (rh #593677) - core: fix failed suspend disables network (rh #589108) - core: print out missing firmware errors (rh #594578) - applet: fix device descriptions for some mobile broadband devices - keyfile: bluetooth fixes - applet: updated translations (rh #589230) Wed May 19 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.2.git20100519 - core: use GIO in local mode only (rh #588745) - core: updated translations (rh #589230) - core: be more lenient in IPv6 RDNSS server expiry (rh #590202) - core: fix headers to be C++ compatible (rh #592783) - applet: updated translations (rh #589230) - applet: lock connections with well-known SSIDs to their specific AP
2010-06-26 02:48:14 +00:00
diff -up NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/gnome-bluetooth/Makefile.am.buildfix NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/gnome-bluetooth/Makefile.am
--- NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/gnome-bluetooth/Makefile.am.buildfix 2009-07-28 13:23:40.282718683 -0400
+++ NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/gnome-bluetooth/Makefile.am 2009-07-28 13:24:56.316719077 -0400
2009-07-28 17:23:33 +00:00
@@ -6,6 +6,9 @@ INCLUDES = \
-I$(top_builddir) \
-I${top_builddir}/src/marshallers \
-I${top_srcdir}/src/utils \
2009-07-28 17:23:33 +00:00
+ -I${top_srcdir}/../include \
+ -I${top_srcdir}/../libnm-util \
+ -I${top_srcdir}/../libnm-glib \
$(GNOME_BLUETOOTH_CFLAGS) \
$(DISABLE_DEPRECATED) \
2009-07-28 17:23:33 +00:00
$(WARN_CFLAGS)
@@ -14,7 +17,9 @@ plugin_LTLIBRARIES = libnma.la
2009-07-28 17:28:54 +00:00
libnma_la_LIBADD = \
$(top_builddir)/src/gconf-helpers/libgconf-helpers.la \
- $(GNOME_BLUETOOTH_LIBS)
2009-07-28 17:28:54 +00:00
+ $(GNOME_BLUETOOTH_LIBS) \
+ -L${top_builddir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \
+ -L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm-glib.la
2009-07-28 17:28:54 +00:00
endif
EXTRA_DIST = $(BT_WIDGET_SOURCES)
- Update to 0.8.1 release candidate - core: fix WWAN hardware enable state tracking (rh #591622) - core: fix Red Hat initscript return value on double-start (rh #584321) - core: add multicast route entry for IPv4 link-local connections - core: fix connection sharing in cases where a dnsmasq config file exists - core: fix handling of Ad-Hoc wifi connections to indicate correct network - core: ensure VPN interface name is passed to dispatcher when VPN goes down - ifcfg-rh: fix handling of ASCII WEP keys - ifcfg-rh: fix double-quoting of some SSIDs (rh #606518) - applet: ensure deleted connections are actually forgotten (rh #618973) - applet: don't crash if the AP's BSSID isn't availabe (rh #603236) - editor: don't crash on PolicyKit events after windows are closed (rh #572466) Wed May 26 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.3 - core: fix nm-online crash (rh #593677) - core: fix failed suspend disables network (rh #589108) - core: print out missing firmware errors (rh #594578) - applet: fix device descriptions for some mobile broadband devices - keyfile: bluetooth fixes - applet: updated translations (rh #589230) Wed May 19 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.2.git20100519 - core: use GIO in local mode only (rh #588745) - core: updated translations (rh #589230) - core: be more lenient in IPv6 RDNSS server expiry (rh #590202) - core: fix headers to be C++ compatible (rh #592783) - applet: updated translations (rh #589230) - applet: lock connections with well-known SSIDs to their specific AP
2010-06-26 02:48:14 +00:00
diff -up NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/Makefile.am.buildfix NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/Makefile.am
--- NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/Makefile.am.buildfix 2009-07-27 15:26:53.000000000 -0400
+++ NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/Makefile.am 2009-07-28 11:29:11.686841642 -0400
2009-07-28 16:58:04 +00:00
@@ -2,6 +2,10 @@ SUBDIRS = marshallers utils gconf-helper
2008-07-18 16:22:44 +00:00
bin_PROGRAMS = nm-applet
+INCLUDES = -I${top_srcdir}/../include \
+ -I${top_srcdir}/../libnm-util \
+ -I${top_srcdir}/../libnm-glib
+
nm_applet_CPPFLAGS = \
$(NMA_CFLAGS) \
$(NOTIFY_CFLAGS) \
2009-07-28 16:58:04 +00:00
@@ -54,7 +58,9 @@ nm_applet_LDADD = \
2008-07-18 16:22:44 +00:00
${top_builddir}/src/marshallers/libmarshallers.la \
${top_builddir}/src/utils/libutils.la \
${top_builddir}/src/gconf-helpers/libgconf-helpers.la \
- ${top_builddir}/src/wireless-security/libwireless-security.la
+ ${top_builddir}/src/wireless-security/libwireless-security.la \
+ -L${top_srcdir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \
+ -L${top_srcdir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm-glib.la
2008-07-18 16:22:44 +00:00
gladedir = $(datadir)/nm-applet
glade_DATA = applet.glade keyring.png
- Update to 0.8.1 release candidate - core: fix WWAN hardware enable state tracking (rh #591622) - core: fix Red Hat initscript return value on double-start (rh #584321) - core: add multicast route entry for IPv4 link-local connections - core: fix connection sharing in cases where a dnsmasq config file exists - core: fix handling of Ad-Hoc wifi connections to indicate correct network - core: ensure VPN interface name is passed to dispatcher when VPN goes down - ifcfg-rh: fix handling of ASCII WEP keys - ifcfg-rh: fix double-quoting of some SSIDs (rh #606518) - applet: ensure deleted connections are actually forgotten (rh #618973) - applet: don't crash if the AP's BSSID isn't availabe (rh #603236) - editor: don't crash on PolicyKit events after windows are closed (rh #572466) Wed May 26 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.3 - core: fix nm-online crash (rh #593677) - core: fix failed suspend disables network (rh #589108) - core: print out missing firmware errors (rh #594578) - applet: fix device descriptions for some mobile broadband devices - keyfile: bluetooth fixes - applet: updated translations (rh #589230) Wed May 19 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.2.git20100519 - core: use GIO in local mode only (rh #588745) - core: updated translations (rh #589230) - core: be more lenient in IPv6 RDNSS server expiry (rh #590202) - core: fix headers to be C++ compatible (rh #592783) - applet: updated translations (rh #589230) - applet: lock connections with well-known SSIDs to their specific AP
2010-06-26 02:48:14 +00:00
diff -up NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/utils/Makefile.am.buildfix NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/utils/Makefile.am
--- NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/utils/Makefile.am.buildfix 2009-07-02 16:32:26.000000000 -0400
+++ NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/utils/Makefile.am 2009-07-28 11:29:11.686841642 -0400
@@ -1,5 +1,9 @@
SUBDIRS=. tests
2007-11-19 19:36:15 +00:00
+INCLUDES = -I${top_srcdir}/../include \
+ -I${top_srcdir}/../libnm-util \
+ -I${top_srcdir}/../libnm-glib
+
noinst_LTLIBRARIES = libutils.la
libutils_la_SOURCES = \
2009-07-28 16:58:04 +00:00
@@ -18,4 +22,7 @@ libutils_la_CPPFLAGS = \
-I${top_srcdir}/src/gconf-helpers \
-I${top_srcdir}/src
2007-11-19 19:36:15 +00:00
-libutils_la_LIBADD = $(NMA_LIBS)
+libutils_la_LIBADD = $(NMA_LIBS) \
+ -L${top_builddir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \
+ -L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm-glib.la
2007-11-19 19:36:15 +00:00
+
- Update to 0.8.1 release candidate - core: fix WWAN hardware enable state tracking (rh #591622) - core: fix Red Hat initscript return value on double-start (rh #584321) - core: add multicast route entry for IPv4 link-local connections - core: fix connection sharing in cases where a dnsmasq config file exists - core: fix handling of Ad-Hoc wifi connections to indicate correct network - core: ensure VPN interface name is passed to dispatcher when VPN goes down - ifcfg-rh: fix handling of ASCII WEP keys - ifcfg-rh: fix double-quoting of some SSIDs (rh #606518) - applet: ensure deleted connections are actually forgotten (rh #618973) - applet: don't crash if the AP's BSSID isn't availabe (rh #603236) - editor: don't crash on PolicyKit events after windows are closed (rh #572466) Wed May 26 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.3 - core: fix nm-online crash (rh #593677) - core: fix failed suspend disables network (rh #589108) - core: print out missing firmware errors (rh #594578) - applet: fix device descriptions for some mobile broadband devices - keyfile: bluetooth fixes - applet: updated translations (rh #589230) Wed May 19 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.2.git20100519 - core: use GIO in local mode only (rh #588745) - core: updated translations (rh #589230) - core: be more lenient in IPv6 RDNSS server expiry (rh #590202) - core: fix headers to be C++ compatible (rh #592783) - applet: updated translations (rh #589230) - applet: lock connections with well-known SSIDs to their specific AP
2010-06-26 02:48:14 +00:00
diff -up NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/utils/tests/Makefile.am.buildfix NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/utils/tests/Makefile.am
--- NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/utils/tests/Makefile.am.buildfix 2009-07-02 16:32:26.000000000 -0400
+++ NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/utils/tests/Makefile.am 2009-07-28 11:29:11.686841642 -0400
@@ -1,4 +1,7 @@
-INCLUDES = -I$(top_srcdir)/src/utils
+INCLUDES = -I$(top_srcdir)/src/utils \
+ -I${top_srcdir}/../include \
+ -I${top_srcdir}/../libnm-util \
+ -I${top_srcdir}/../libnm-glib
noinst_PROGRAMS = test-utils
- Update to 0.8.1 release candidate - core: fix WWAN hardware enable state tracking (rh #591622) - core: fix Red Hat initscript return value on double-start (rh #584321) - core: add multicast route entry for IPv4 link-local connections - core: fix connection sharing in cases where a dnsmasq config file exists - core: fix handling of Ad-Hoc wifi connections to indicate correct network - core: ensure VPN interface name is passed to dispatcher when VPN goes down - ifcfg-rh: fix handling of ASCII WEP keys - ifcfg-rh: fix double-quoting of some SSIDs (rh #606518) - applet: ensure deleted connections are actually forgotten (rh #618973) - applet: don't crash if the AP's BSSID isn't availabe (rh #603236) - editor: don't crash on PolicyKit events after windows are closed (rh #572466) Wed May 26 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.3 - core: fix nm-online crash (rh #593677) - core: fix failed suspend disables network (rh #589108) - core: print out missing firmware errors (rh #594578) - applet: fix device descriptions for some mobile broadband devices - keyfile: bluetooth fixes - applet: updated translations (rh #589230) Wed May 19 2010 Dan Williams <dcbw@redhat.com> - 0.8.1-0.2.git20100519 - core: use GIO in local mode only (rh #588745) - core: updated translations (rh #589230) - core: be more lenient in IPv6 RDNSS server expiry (rh #590202) - core: fix headers to be C++ compatible (rh #592783) - applet: updated translations (rh #589230) - applet: lock connections with well-known SSIDs to their specific AP
2010-06-26 02:48:14 +00:00
diff -up NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/wireless-security/Makefile.am.buildfix NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/wireless-security/Makefile.am
--- NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/wireless-security/Makefile.am.buildfix 2009-07-02 16:32:26.000000000 -0400
+++ NetworkManager-0.8.0.999/network-manager-applet-0.8.0.999/src/wireless-security/Makefile.am 2009-07-28 11:29:11.687841490 -0400
@@ -1,5 +1,9 @@
noinst_LTLIBRARIES = libwireless-security.la
+INCLUDES = -I${top_srcdir}/../include \
+ -I${top_srcdir}/../libnm-util \
+ -I${top_srcdir}/../libnm-glib
+
libwireless_security_la_SOURCES = \
wireless-security.h \
wireless-security.c \
2009-07-28 16:58:04 +00:00
@@ -36,5 +40,7 @@ libwireless_security_la_CPPFLAGS = \
libwireless_security_la_LIBADD = \
$(NMA_LIBS) \
${top_builddir}/src/utils/libutils.la \
- ${top_builddir}/src/gconf-helpers/libgconf-helpers.la
+ ${top_builddir}/src/gconf-helpers/libgconf-helpers.la \
+ -L${top_srcdir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \
+ -L${top_srcdir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm-glib.la