]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blobdiff - isdn4k-utils/patches/006-isdn4k-utils-CVS-2010-05-01-capi-soname.patch
Remove support for ISDN
[people/ms/ipfire-3.x.git] / isdn4k-utils / patches / 006-isdn4k-utils-CVS-2010-05-01-capi-soname.patch
diff --git a/isdn4k-utils/patches/006-isdn4k-utils-CVS-2010-05-01-capi-soname.patch b/isdn4k-utils/patches/006-isdn4k-utils-CVS-2010-05-01-capi-soname.patch
deleted file mode 100644 (file)
index a22f79a..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-*** isdn4k-utils/capi20.new/capi20.c.org       2010-05-07 20:56:21.000000000 +0200
---- isdn4k-utils/capi20.new/capi20.c   2010-05-07 22:01:45.000000000 +0200
-***************
-*** 590,598 ****
-       psDir = opendir( pnModuleDir );
-       if ( psDir != NULL ) {
-               /* read entry by entry */
-               while ( ( psEntry = readdir( psDir ) ) != NULL )  {
-!                      /* skip ".", ".." and files which do not end with "so" */
-                       nLen = strlen( psEntry -> d_name );
-  
-                       switch ( nLen ) {
-                               case 1:
---- 590,598 ----
-       psDir = opendir( pnModuleDir );
-       if ( psDir != NULL ) {
-               /* read entry by entry */
-               while ( ( psEntry = readdir( psDir ) ) != NULL )  {
-!                      /* skip ".", ".." and files which do not end with "so.?" */
-                       nLen = strlen( psEntry -> d_name );
-  
-                       switch ( nLen ) {
-                               case 1:
-***************
-*** 605,613 ****
-                                               continue;
-                                       }
-                                       break;
-                               default:
-!                                      if ( strncmp( psEntry -> d_name + nLen - 3, ".so", nLen ) ) {
-                                               continue;
-                                       }
-                                       break;
-                       }
---- 605,613 ----
-                                               continue;
-                                       }
-                                       break;
-                               default:
-!                                      if ( strncmp( psEntry -> d_name + nLen - 5, ".so.0", 4 ) ) {
-                                               continue;
-                                       }
-                                       break;
-                       }