summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2003-03-24 18:47:18 +0000
committerJelmer Vernooij <jelmer@samba.org>2003-03-24 18:47:18 +0000
commit068b1e91419bf95373597ef6cf94e76d1ff5af58 (patch)
tree4a43e8dd75f7fd8cfa50fdbf5d35d99989c7241d /docs
parentf2c1d6895fc50526b9be9a703a76d15dd79d3185 (diff)
downloadsamba-068b1e91419bf95373597ef6cf94e76d1ff5af58.tar.gz
samba-068b1e91419bf95373597ef6cf94e76d1ff5af58.tar.bz2
samba-068b1e91419bf95373597ef6cf94e76d1ff5af58.zip
Add notes for packagers
(This used to be commit 9bec6889047814dc00eea102d6c3368d3942db94)
Diffstat (limited to 'docs')
-rw-r--r--docs/docbook/devdoc/dev-doc.sgml2
-rw-r--r--docs/docbook/devdoc/packagers.sgml40
2 files changed, 42 insertions, 0 deletions
diff --git a/docs/docbook/devdoc/dev-doc.sgml b/docs/docbook/devdoc/dev-doc.sgml
index f10fe72414..5e1af3d3a0 100644
--- a/docs/docbook/devdoc/dev-doc.sgml
+++ b/docs/docbook/devdoc/dev-doc.sgml
@@ -14,6 +14,7 @@
<!ENTITY encryption SYSTEM "encryption.sgml">
<!ENTITY rpc-plugin SYSTEM "rpc_plugin.sgml">
<!ENTITY modules SYSTEM "modules.sgml">
+<!ENTITY packagers SYSTEM "packagers.sgml">
]>
<book id="Samba-Developers-Guide">
@@ -70,5 +71,6 @@ url="http://www.fsf.org/licenses/gpl.txt">http://www.fsf.org/licenses/gpl.txt</u
&encryption;
&modules;
&rpc-plugin;
+&packagers;
</book>
diff --git a/docs/docbook/devdoc/packagers.sgml b/docs/docbook/devdoc/packagers.sgml
new file mode 100644
index 0000000000..5042070d68
--- /dev/null
+++ b/docs/docbook/devdoc/packagers.sgml
@@ -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>
+
+</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>