mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-06 15:30:14 +01:00
* panel-applet/no-networkmanager.png panel-applet/Makefile.am panel-applet/NMWirelessApplet.c - Add a "NetworkManager not running" icon and use it - Use new consolidated GConf keys rather than Preferred/Trusted * TODO: update * info-daemon/NetworkManagerInfo.c info-daemon/NetworkManagerInfoDbus.[ch] info-daemon/NetworkManagerInfoPassphraseDialog.c - There are now no longer two separate lists of wireless networks, but one list where each network is "trusted" or not trusted - Add a "getNetworkTrusted" dbus method - "WirelessNetworkUpdate" signal now sent rather than "PreferredNetworkUpdate/TrustedNetworkUpdate" signals - Start freeing some dbus errors (not completed yet) * info-daemon/passphrase.glade - Remove the "don't show" hints for pager and taskbar - Add a title since its going to be in the taskbar * src/NetworkManager.[ch] src/NetworkManagerAPList.[ch] - There are now no longer two separate lists of wireless networks, but one list where each network is "trusted" or not trusted * src/NetworkManagerAP.[ch] - Add get/set "trusted" accessors and data bit * src/NetworkManagerDbus.[ch] - Add function to get "trusted" status of a network from NetworkManagerInfo - Trap new WirelessNetworkUpdate signal rather than old separate signals * src/NetworkManagerDevice.[ch] - Add per-device config data (ip4 addr, gateway, netmask) and accessors - (nm_device_new): Get device config from backend when initializing devices - (nm_device_activation_worker): Split out device configuration on activation to deal with static/dynamic IP differences, and try encryption fallbacks on a device if the encryption method for the best AP is not good - (nm_device_update_best_ap): convert to new consolidated access point lists from NetworkManagerInfo, and copy over latest NMI info to best_ap when setting it * src/NetworkManagerWireless.c - libgcrypt code wasn't converting the MD5 digest to an ascii string, fix it * src/backends/NetworkManagerRedHat.c src/backends/NetworkManagerSystem.h - (nm_system_device_update_config_info): Add function to get device configuration from system data in ifcfg-* files * src/backends/NetworkManagerDebian.c src/backends/NetworkManagerGentoo.c src/backends/NetworkManagerSlackware.c - Add stub functions for getting device configuration git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@131 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
73 lines
1.5 KiB
Makefile
73 lines
1.5 KiB
Makefile
NULL=
|
|
|
|
INCLUDES = \
|
|
$(NM_CFLAGS) \
|
|
$(GLADE_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
$(DBUS_GLIB_CFLAGS) \
|
|
$(PANEL_APPLET_CFLAGS) \
|
|
-DICONDIR=\""$(datadir)/pixmaps"\" \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
-DGNOME_DISABLE_DEPRECATED \
|
|
-DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
|
|
$(NULL)
|
|
|
|
libexec_PROGRAMS = NMWirelessApplet
|
|
|
|
NMWirelessApplet_SOURCES = \
|
|
NMWirelessApplet.c \
|
|
NMWirelessApplet.h \
|
|
NMWirelessAppletDbus.c \
|
|
NMWirelessAppletDbus.h \
|
|
$(NULL)
|
|
|
|
NMWirelessApplet_LDADD = \
|
|
$(NM_LIBS) \
|
|
$(LIBGLADE_LIBS) \
|
|
$(DBUS_LIBS) \
|
|
$(DBUS_GLIB_LIBS) \
|
|
$(PANEL_APPLET_LIBS) \
|
|
$(NULL)
|
|
|
|
serverdir = $(libdir)/bonobo/servers
|
|
server_in_files = NMWirelessApplet.server.in
|
|
server_DATA = NMWirelessApplet.server
|
|
|
|
$(server_DATA): $(srcdir)/$(server_in_files)
|
|
sed -e "s|\@LIBEXECDIR\@|$(libexecdir)|" $< > $@
|
|
|
|
uidir = $(datadir)/gnome-2.0/ui
|
|
ui_DATA = NMWirelessApplet.xml
|
|
|
|
gladedir = $(datadir)/NMWirelessApplet
|
|
glade_DATA = wireless-applet.glade
|
|
|
|
pixmapdir = $(datadir)/pixmaps/NMWirelessApplet
|
|
pixmap_DATA = \
|
|
no-networkmanager.png \
|
|
no-link-0.png \
|
|
wired.png \
|
|
wireless.png \
|
|
broken-0.png \
|
|
signal-1-40.png \
|
|
signal-41-60.png \
|
|
signal-61-80.png \
|
|
signal-81-100.png \
|
|
wireless-applet.png \
|
|
connect-0.png \
|
|
connect-1.png \
|
|
connect-2.png \
|
|
connect-3.png \
|
|
keyring.png \
|
|
$(NULL)
|
|
|
|
CLEANFILES = $(server_DATA) *.bak *.gladep
|
|
|
|
EXTRA_DIST = \
|
|
$(server_in_files) \
|
|
$(pixmap_DATA) \
|
|
$(ui_DATA) \
|
|
$(glade_DATA) \
|
|
$(NULL)
|
|
|