Merge commit 'origin/master' into dhcp6

This commit is contained in:
Dan Williams
2010-01-20 16:54:12 -08:00
5 changed files with 9 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
AC_PREREQ(2.52)
AC_INIT(NetworkManager, 0.7.998, dcbw@redhat.com, NetworkManager)
AC_INIT(NetworkManager, 0.7.999, dcbw@redhat.com, NetworkManager)
AM_INIT_AUTOMAKE([1.9 subdir-objects tar-ustar no-dist-gzip dist-bzip2])
AM_MAINTAINER_MODE

View File

@@ -6,7 +6,7 @@ includedir=@includedir@
Name: libnm-glib-vpn
Description: Convenience library for NetworkManager VPN plugins
Version: @VERSION@
Requires: NetworkManager >= 0.7.995 glib-2.0 dbus-glib-1
Requires: NetworkManager >= 0.7.999 glib-2.0 dbus-glib-1
Cflags: -I${includedir}/libnm-glib
Libs: -L${libdir} -lnm-glib-vpn

View File

@@ -6,7 +6,7 @@ includedir=@includedir@
Name: libnm-glib
Description: Convenience library for clients of NetworkManager
Version: @VERSION@
Requires: NetworkManager >= 0.7.995 glib-2.0 dbus-glib-1
Requires: NetworkManager >= 0.7.999 glib-2.0 dbus-glib-1
Cflags: -I${includedir}/libnm-glib
Libs: -L${libdir} -lnm-glib

View File

@@ -3,10 +3,10 @@ exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
Name: libnm_util
Name: libnm-util
Description: Convenience library for clients of NetworkManager
Version: @VERSION@
Requires: glib-2.0
Requires: glib-2.0 dbus-glib-1
Cflags: -I${includedir}/NetworkManager
Libs: -L${libdir} -lnm-util

View File

@@ -1206,20 +1206,16 @@ write_ip6_setting (NMConnection *connection, shvarFile *ifcfg, GError **error)
if (!strcmp (value, NM_SETTING_IP6_CONFIG_METHOD_IGNORE)) {
svSetValue (ifcfg, "IPV6INIT", "no", FALSE);
return TRUE;
}
else if (!strcmp (value, NM_SETTING_IP6_CONFIG_METHOD_AUTO)) {
} else if (!strcmp (value, NM_SETTING_IP6_CONFIG_METHOD_AUTO)) {
svSetValue (ifcfg, "IPV6INIT", "yes", FALSE);
svSetValue (ifcfg, "IPV6_AUTOCONF", "yes", FALSE);
}
else if (!strcmp (value, NM_SETTING_IP6_CONFIG_METHOD_MANUAL)) {
} else if (!strcmp (value, NM_SETTING_IP6_CONFIG_METHOD_MANUAL)) {
svSetValue (ifcfg, "IPV6INIT", "yes", FALSE);
svSetValue (ifcfg, "IPV6_AUTOCONF", "no", FALSE);
}
else if (!strcmp (value, NM_SETTING_IP6_CONFIG_METHOD_LINK_LOCAL)) {
} else if (!strcmp (value, NM_SETTING_IP6_CONFIG_METHOD_LINK_LOCAL)) {
svSetValue (ifcfg, "IPV6INIT", "yes", FALSE);
svSetValue (ifcfg, "IPV6_AUTOCONF", "no", FALSE);
}
else if (!strcmp (value, NM_SETTING_IP6_CONFIG_METHOD_SHARED)) {
} else if (!strcmp (value, NM_SETTING_IP6_CONFIG_METHOD_SHARED)) {
svSetValue (ifcfg, "IPV6INIT", "yes", FALSE);
/* TODO */
}