Hey, Attached the patches for: * the automake portability warnings (0001, 2 versions, one for master and the other for NM_0_8) * the missing U2600 band ID (applicable to both master and NM_0_8)
Cheers -- Aleksander
>From fd8f5f7eee34f7e5eb738af4395aa1d607887079 Mon Sep 17 00:00:00 2001 From: Aleksander Morgado <[email protected]> Date: Thu, 9 Jun 2011 09:35:25 +0200 Subject: [PATCH 2/2] libnm-util: added missing U2600 GSM band enumeration --- libnm-util/nm-setting-gsm.c | 3 ++- libnm-util/nm-setting-gsm.h | 1 + 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/libnm-util/nm-setting-gsm.c b/libnm-util/nm-setting-gsm.c index 0ece448..643702c 100644 --- a/libnm-util/nm-setting-gsm.c +++ b/libnm-util/nm-setting-gsm.c @@ -643,7 +643,8 @@ nm_setting_gsm_class_init (NMSettingGsmClass *setting_class) || NM_SETTING_GSM_BAND_U850 || NM_SETTING_GSM_BAND_U900 || NM_SETTING_GSM_BAND_U17IX - || NM_SETTING_GSM_BAND_U1900, + || NM_SETTING_GSM_BAND_U1900 + || NM_SETTING_GSM_BAND_U2600, NM_SETTING_GSM_BAND_ANY, G_PARAM_READWRITE | G_PARAM_CONSTRUCT | NM_SETTING_PARAM_SERIALIZE)); diff --git a/libnm-util/nm-setting-gsm.h b/libnm-util/nm-setting-gsm.h index 855787c..92aa5f7 100644 --- a/libnm-util/nm-setting-gsm.h +++ b/libnm-util/nm-setting-gsm.h @@ -88,6 +88,7 @@ typedef enum { NM_SETTING_GSM_BAND_U900 = 0x00000400, /* WCDMA 3GPP UMTS 900 MHz (Class VIII) */ NM_SETTING_GSM_BAND_U17IX = 0x00000800, /* WCDMA 3GPP UMTS 1700 MHz (Class IX) */ NM_SETTING_GSM_BAND_U1900 = 0x00001000, /* WCDMA 3GPP UMTS 1900 MHz (Class II) */ + NM_SETTING_GSM_BAND_U2600 = 0x00002000, /* WCDMA 3GPP UMTS 2600 MHz (Class VII, internal) */ } NMSettingGsmNetworkBand; typedef struct { -- 1.7.4.1
>From 77d4032d02b2da700f9751a6bcbb91e231601398 Mon Sep 17 00:00:00 2001 From: Aleksander Morgado <[email protected]> Date: Thu, 9 Jun 2011 09:38:24 +0200 Subject: [PATCH 1/2] build: fix automake portability warnings --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 3767206..2a33ebd 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) -AM_INIT_AUTOMAKE([1.10 subdir-objects tar-ustar no-dist-gzip dist-bzip2]) +AM_INIT_AUTOMAKE([1.10 subdir-objects tar-ustar no-dist-gzip dist-bzip2 -Wno-portability]) AM_MAINTAINER_MODE([enable]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])]) -- 1.7.4.1
>From 8eb611f66c533af126dd1d9bc80439868588236c Mon Sep 17 00:00:00 2001 From: Aleksander Morgado <[email protected]> Date: Thu, 9 Jun 2011 17:09:31 +0200 Subject: [PATCH 1/2] build: fix automake portability warnings --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 1324f83..3caaf82 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ m4_define([nm_version], AC_INIT([NetworkManager], [nm_version], [http://bugzilla.gnome.org/enter_bug.cgi?product=NetworkManager], [NetworkManager]) -AM_INIT_AUTOMAKE([1.9 subdir-objects tar-ustar no-dist-gzip dist-bzip2]) +AM_INIT_AUTOMAKE([1.9 subdir-objects tar-ustar no-dist-gzip dist-bzip2 -Wno-portability]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])]) AM_MAINTAINER_MODE -- 1.7.4.1
_______________________________________________ networkmanager-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/networkmanager-list
