2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Sat, 4 Sep 2004 06:01:33 +0000 (06:01 -0000)
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Sat, 4 Sep 2004 06:01:33 +0000 (06:01 -0000)
* FAMWatcher.cs: s/fam/libfam.so.0/ so that g_module finds it even
when the development package is not installed.

2004-08-06  Geoff Norton <gnorton@customerdna.com>

* FileSystemWatcher.cs: Use the new KeventWatcher if its supported
* KeventWatcher.cs: Added to cvs

svn path=/branches/mono-1-0/mcs/; revision=33330

mcs/class/System/System.IO/ChangeLog
mcs/class/System/System.IO/FAMWatcher.cs

index 085d366180a6ac9d74b625875e6e3a229b989449..9096cb0309459f00f88e7dd53e2269a86568d9ed 100755 (executable)
@@ -1,3 +1,13 @@
+2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * FAMWatcher.cs: s/fam/libfam.so.0/ so that g_module finds it even
+       when the development package is not installed.
+
+2004-08-06  Geoff Norton <gnorton@customerdna.com>
+
+       * FileSystemWatcher.cs: Use the new KeventWatcher if its supported
+       * KeventWatcher.cs: Added to cvs
+
 2004-06-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
 
        * DefaultWatcher.cs: fixed subdirectories notifications and don't
index 21e9bfeaff6149ff75077b93bf604bac54179c9b..146411b8e91e3650ff3b97dda8c3677c018a1e7a 100644 (file)
@@ -320,24 +320,24 @@ namespace System.IO {
                        }
                }
 
-               [DllImport ("fam")]
+               [DllImport ("libfam.so.0")]
                extern static int FAMOpen (out FAMConnection fc);
 
-               [DllImport ("fam")]
+               [DllImport ("libfam.so.0")]
                extern static int FAMClose (ref FAMConnection fc);
 
-               [DllImport ("fam")]
+               [DllImport ("libfam.so.0")]
                extern static int FAMMonitorDirectory (ref FAMConnection fc, string filename,
                                                        out FAMRequest fr, IntPtr user_data);
 
-               [DllImport ("fam")]
+               [DllImport ("libfam.so.0")]
                extern static int FAMCancelMonitor (ref FAMConnection fc, ref FAMRequest fr);
 
                [MethodImplAttribute(MethodImplOptions.InternalCall)]
                extern static int InternalFAMNextEvent (ref FAMConnection fc, out string filename,
                                                        out int code, out int reqnum);
 
-               [DllImport ("fam")]
+               [DllImport ("libfam.so.0")]
                extern static int FAMPending (ref FAMConnection fc);
        }
 }