Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2002-06-26 16:20:55 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-06-26 16:20:55 +0400
commit49a60e26336d02eb8b5b943f27d7d2375335d211 (patch)
tree0adf0c307f9d605bb3525cbb6244aa5038fea874 /man
parentfc7aec7bc06dc70d2c24a4669170bcc58ae3a2fc (diff)
Add manual page for mono configuration
svn path=/trunk/mono/; revision=5464
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.am2
-rw-r--r--man/mono-config.536
-rw-r--r--man/mono.17
3 files changed, 43 insertions, 2 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index bb1642c1177..c5ac9027d77 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -1,4 +1,4 @@
-man_MANS = mcs.1 mono.1 monostyle.1
+man_MANS = mcs.1 mono.1 monostyle.1 mono-config.5
EXTRA_DIST = $(man_MANS)
diff --git a/man/mono-config.5 b/man/mono-config.5
new file mode 100644
index 00000000000..1800f42b8d2
--- /dev/null
+++ b/man/mono-config.5
@@ -0,0 +1,36 @@
+.\"
+.\" mono configuration page.
+.\" (C) Ximian, Inc.
+.\" Author:
+.\" Miguel de Icaza (miguel@gnu.org)
+.\"
+.TH Mono "Mono 1.0"
+.SH NAME
+mono-config \- Mono runtime file format configuration
+.SH DESCRIPTION
+The Mono runtime will load configuration data from the
+installation prefix /etc/mono/config file, the ~/.mono/config or from
+the file pointed by the MONO_CONFIG environment variable.
+.PP
+This file controls the behavior of the runtime.
+.PP
+The file contains an XML-like file with various sections, all of them
+contained inside a
+.B<configuration>
+section (It actually uses GMarkup
+to parse the file).
+.SH <dllmap> directive
+You use the dllmap directive to map shared libraries referenced by
+P/Invoke in your assemblies to a different shared library.
+.PP
+This is typically used to map Windows libraries to Unix library names.
+.SH EXAMPLES
+The following example maps references to the `cygwin1.dll' shared
+library to the `libc.so.6' file.
+.nf
+<configuration>
+ <dllmap dll="cygwin1.dll" target="libc.so.6"/>
+</configuration>
+.fi
+.SH SEE ALSO
+.BR mono(1), monodis(1), mint(1) \ No newline at end of file
diff --git a/man/mono.1 b/man/mono.1
index 0d6dc2f20b7..45589749a8a 100644
--- a/man/mono.1
+++ b/man/mono.1
@@ -138,11 +138,16 @@ Don't fallback to normal dwarf2 if the symbol file cannot be found.
.SH FILES
Assemblies are lodaed from the installation lib directory. If you set
`prefix' to /usr, the assemblies will be located in /usr/lib.
+.PP
+/etc/mono/config, ~/.mono/config
+.IP
+Mono runtime configuration file. See the mono-config(5) manual page
+for more information.
.SH MAILING LISTS
Visit http://mail.ximian.com/mailman/mono-list for details.
.SH WEB SITE
Visit: http://www.go-mono.com for details
.SH SEE ALSO
-.BR mint(1), monodis(1)
+.BR mcs(1), mint(1), monodis(1), mono-config(5)