[pkg-wpa-devel] r920 - in /wpasupplicant/trunk/debian: changelog patches/30_wpa_gui_const_char_warnings.patch patches/series

kelmo-guest at users.alioth.debian.org kelmo-guest at users.alioth.debian.org
Tue Dec 25 15:09:59 UTC 2007


Author: kelmo-guest
Date: Tue Dec 25 15:09:59 2007
New Revision: 920

URL: http://svn.debian.org/wsvn/pkg-wpa/?sc=1&rev=920
Log:
* Add debian/patches/30_wpa_gui_const_char_warnings.patch to fix warnings
  about deprecated conversions string constant to char* with g++ 4.2 and
  above.

Added:
    wpasupplicant/trunk/debian/patches/30_wpa_gui_const_char_warnings.patch
Modified:
    wpasupplicant/trunk/debian/changelog
    wpasupplicant/trunk/debian/patches/series

Modified: wpasupplicant/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-wpa/wpasupplicant/trunk/debian/changelog?rev=920&op=diff
==============================================================================
--- wpasupplicant/trunk/debian/changelog (original)
+++ wpasupplicant/trunk/debian/changelog Tue Dec 25 15:09:59 2007
@@ -19,8 +19,11 @@
   * Add svn:ignore property for .pc quilt by-product.
   * Ensure src/drivers/driver_madwifi/ directory is purged from source tree in
     clean target of debian/rules.
-
- -- Kel Modderman <kel at otaku42.de>  Wed, 26 Dec 2007 00:55:04 +1000
+  * Add debian/patches/30_wpa_gui_const_char_warnings.patch to fix warnings
+    about deprecated conversions string constant to char* with g++ 4.2 and
+    above.
+
+ -- Kel Modderman <kel at otaku42.de>  Wed, 26 Dec 2007 01:01:56 +1000
 
 wpasupplicant (0.6.1~git20071119-1) unstable; urgency=low
 

Added: wpasupplicant/trunk/debian/patches/30_wpa_gui_const_char_warnings.patch
URL: http://svn.debian.org/wsvn/pkg-wpa/wpasupplicant/trunk/debian/patches/30_wpa_gui_const_char_warnings.patch?rev=920&op=file
==============================================================================
--- wpasupplicant/trunk/debian/patches/30_wpa_gui_const_char_warnings.patch (added)
+++ wpasupplicant/trunk/debian/patches/30_wpa_gui_const_char_warnings.patch Tue Dec 25 15:09:59 2007
@@ -1,0 +1,11 @@
+--- a/wpa_supplicant/wpa_gui/networkconfig.ui.h
++++ b/wpa_supplicant/wpa_gui/networkconfig.ui.h
+@@ -131,7 +131,7 @@
+ 
+     setNetworkParam(id, "ssid", ssidEdit->text().ascii(), true);
+     
+-    char *key_mgmt = NULL, *proto = NULL, *pairwise = NULL;
++    const char *key_mgmt = NULL, *proto = NULL, *pairwise = NULL;
+     switch (auth) {
+     case AUTH_NONE:
+ 	key_mgmt = "NONE";

Modified: wpasupplicant/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-wpa/wpasupplicant/trunk/debian/patches/series?rev=920&op=diff
==============================================================================
--- wpasupplicant/trunk/debian/patches/series (original)
+++ wpasupplicant/trunk/debian/patches/series Tue Dec 25 15:09:59 2007
@@ -2,3 +2,4 @@
 10_dbus_group_policy.patch
 20_madwifi_headers.patch
 21_config_driver_madwifi.patch
+30_wpa_gui_const_char_warnings.patch




More information about the Pkg-wpa-devel mailing list