From owner-freebsd-mono@FreeBSD.ORG Fri Sep 19 15:03:30 2014 Return-Path: Delivered-To: freebsd-mono@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 01DED502 for ; Fri, 19 Sep 2014 15:03:30 +0000 (UTC) Received: from mail-wg0-x232.google.com (mail-wg0-x232.google.com [IPv6:2a00:1450:400c:c00::232]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 91A99F1E for ; Fri, 19 Sep 2014 15:03:29 +0000 (UTC) Received: by mail-wg0-f50.google.com with SMTP id x13so2586219wgg.9 for ; Fri, 19 Sep 2014 08:03:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=F3Hb7g0CRfthPyAmXjCivWDJ650sncxT6DAOu4HPbZY=; b=IdsNmoYRc77FSU/1gf6+y5j0nN7FbgNkYOy+ijuh2Lqgq2p4PDG11LsVNR62+6S58b E1KY0PXlmdBCHlXKEIBKyfoPZQPqtfUeo0MUCSRy5wWeOcnLN3FnuaTsMnIZf2OtHJKk CQNz/Kz0qcWzbgymJ1rb8l/j01IX4yK/TANnB8wyJhGqihMCtvZdx5yGqyzItbiVc0n+ iYnas0/CAdMufjgLjOJKPlF7S8jzYjaaDAWP2j4xeDJqAlf05liBSxwPQYVf/G/2EnSK S827kW1QWcJueBejqgZJ3TQ0gflDnvqVBk05adsCjQNZtBw1tgZBuNeAI1NE/2ktKWac XaEg== MIME-Version: 1.0 X-Received: by 10.180.91.70 with SMTP id cc6mr6888535wib.66.1411139007733; Fri, 19 Sep 2014 08:03:27 -0700 (PDT) Received: by 10.194.190.78 with HTTP; Fri, 19 Sep 2014 08:03:27 -0700 (PDT) Date: Fri, 19 Sep 2014 23:03:27 +0800 Message-ID: Subject: Mono expecting /proc/net/route From: Ben Woods To: freebsd-mono@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-mono@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Mono and C# applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Sep 2014 15:03:30 -0000 In the process of trying to get http://mediabrowser.tv/ to work on FreeBSD, I have come across a bug in the port of mono to FreeBSD where it expects to be able to use /proc/net/route to find the IP address of the computer. Reviewing the mono code it appears it expects a few other things from /proc which don't exist in FreeBSD, even with linprocfs (e.g. /proc/net/snmp). https://github.com/mono/mono/search?utf8=%E2%9C%93&q=%22proc%2Fnet%22&type=Code Any ideas about the best way to resolve this? More details with my specific issues relating to MediaBrowser can be found here: http://mediabrowser.tv/community/index.php?/topic/2636-mb3-on-freenas-plugin/page-4 -- From: Benjamin Woods woodsb02@gmail.com