[packages] php5: Remove all patched-in pecl modules, prepare for
[packages.git] / lang / php5 / patches / 011-PECL-dio-additional-baudrates.patch
diff --git a/lang/php5/patches/011-PECL-dio-additional-baudrates.patch b/lang/php5/patches/011-PECL-dio-additional-baudrates.patch
deleted file mode 100644 (file)
index fc534d0..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
---- a/ext/dio/dio.c
-+++ b/ext/dio/dio.c
-@@ -501,6 +501,26 @@ PHP_FUNCTION(dio_tcsetattr)
-       /* assign to correct values... */
-       switch (Baud_Rate)  {
-+#ifdef B460800
-+              case 460800:
-+                      BAUD = B460800;
-+                      break;
-+#endif
-+#ifdef B230400
-+              case 230400:
-+                      BAUD = B230400;
-+                      break;
-+#endif
-+#ifdef B115200
-+              case 115200:
-+                      BAUD = B115200;
-+                      break;
-+#endif
-+#ifdef B57600
-+              case 57600:
-+                      BAUD = B57600;
-+                      break;
-+#endif
-               case 38400:
-                       BAUD = B38400;
-                       break;