summaryrefslogtreecommitdiff
path: root/docs/docbook/devdoc/packagers.xml
diff options
context:
space:
mode:
authorAlexander Bokovoy <ab@samba.org>2003-04-30 21:17:53 +0000
committerAlexander Bokovoy <ab@samba.org>2003-04-30 21:17:53 +0000
commit64f10096b8bbf47b46a7b9854dd92f9b83852515 (patch)
tree60beafe880010c85ac9f0cecbf4dd07bde5ddfa1 /docs/docbook/devdoc/packagers.xml
parent4e2bd11d3e48c75efa6afd1b1d2c8721f627cbb2 (diff)
downloadsamba-64f10096b8bbf47b46a7b9854dd92f9b83852515.tar.gz
samba-64f10096b8bbf47b46a7b9854dd92f9b83852515.tar.bz2
samba-64f10096b8bbf47b46a7b9854dd92f9b83852515.zip
Docbook XML conversion: devdoc
(This used to be commit 4677d5e11c309b074be2ebb2e22394c5b3c13c58)
Diffstat (limited to 'docs/docbook/devdoc/packagers.xml')
-rw-r--r--docs/docbook/devdoc/packagers.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/docs/docbook/devdoc/packagers.xml b/docs/docbook/devdoc/packagers.xml
new file mode 100644
index 0000000000..fb47c7305c
--- /dev/null
+++ b/docs/docbook/devdoc/packagers.xml
@@ -0,0 +1,40 @@
+<chapter id="Packaging">
+<chapterinfo>
+ <author>
+ <firstname>Jelmer</firstname><surname>Vernooij</surname>
+ </author>
+</chapterinfo>
+
+<title>Notes to packagers</title>
+
+<sect1>
+<title>Versioning</title>
+
+<para>Please, please update the version number in
+<filename>source/include/version.h</filename> to include the versioning of your package. This makes it easier to distinguish standard samba builds
+from custom-build samba builds (distributions often patch packages). For
+example, a good version would be: </para>
+
+<para><programlisting>
+Version 2.999+3.0.alpha21-5 for Debian
+</programlisting></para>
+
+</sect1>
+
+<sect1>
+<title>Modules</title>
+
+<para>Samba now has support for building parts of samba as plugins. This
+makes it possible to, for example, put ldap or mysql support in a seperate
+package, thus making it possible to have a normal samba package not
+depending on ldap or mysql. To build as much parts of samba
+as a plugin, run: </para>
+
+<para><programlisting>
+./configure --with-shared-modules=rpc,vfs,auth,pdb,charset
+</programlisting></para>
+
+</sect1>
+
+
+</chapter>