Damjan Jovanovic : widl: Use sysctl instead of /proc/curproc/file on FreeBSD.

Alexandre Julliard julliard at winehq.org
Mon Oct 25 16:30:06 CDT 2021


Module: wine
Branch: master
Commit: 6d67748154df21da9e343feb9d58e28c1ba0a63b
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=6d67748154df21da9e343feb9d58e28c1ba0a63b

Author: Damjan Jovanovic <damjan.jov at gmail.com>
Date:   Sat Oct 23 10:16:57 2021 +0200

widl: Use sysctl instead of /proc/curproc/file on FreeBSD.

Signed-off-by: Damjan Jovanovic <damjan.jov at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 tools/widl/widl.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/tools/widl/widl.c b/tools/widl/widl.c
index e5a772e87bd..79c92e2f338 100644
--- a/tools/widl/widl.c
+++ b/tools/widl/widl.c
@@ -29,6 +29,11 @@
 #include <assert.h>
 #include <ctype.h>
 #include <signal.h>
+#include <limits.h>
+#include <sys/types.h>
+#ifdef HAVE_SYS_SYSCTL_H
+# include <sys/sysctl.h>
+#endif
 
 #include "widl.h"
 #include "utils.h"
@@ -562,7 +567,12 @@ static void init_argv0_dir( const char *argv0 )
 #if defined(__linux__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__)
     dir = realpath( "/proc/self/exe", NULL );
 #elif defined (__FreeBSD__) || defined(__DragonFly__)
-    dir = realpath( "/proc/curproc/file", NULL );
+    static int pathname[] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1 };
+    size_t path_size = PATH_MAX;
+    char *path = malloc( path_size );
+    if (path && !sysctl( pathname, sizeof(pathname)/sizeof(pathname[0]), path, &path_size, NULL, 0 ))
+        dir = realpath( path, NULL );
+    free( path );
 #else
     dir = realpath( argv0, NULL );
 #endif




More information about the wine-cvs mailing list