diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-05-05 22:38:51 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:33 -0500 |
commit | eb2c5fedfaaab62ac84bd7ea4e62b55269d8368d (patch) | |
tree | cbc35b2a1c951e2ba5b5e884b154fc170dd4b4fa /docs/Samba3-Developers-Guide/packagers.xml | |
parent | 406ee13608aca5e587ebf889c2f6b648c4cbe84b (diff) | |
download | samba-eb2c5fedfaaab62ac84bd7ea4e62b55269d8368d.tar.gz samba-eb2c5fedfaaab62ac84bd7ea4e62b55269d8368d.tar.bz2 samba-eb2c5fedfaaab62ac84bd7ea4e62b55269d8368d.zip |
Move existing samba4 documentation to Samba-docs trunk
(This used to be commit ee3dfdcf09d6a657cf7e7325f10aa3154867c351)
Diffstat (limited to 'docs/Samba3-Developers-Guide/packagers.xml')
-rw-r--r-- | docs/Samba3-Developers-Guide/packagers.xml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/docs/Samba3-Developers-Guide/packagers.xml b/docs/Samba3-Developers-Guide/packagers.xml new file mode 100644 index 0000000000..5c834b09fe --- /dev/null +++ b/docs/Samba3-Developers-Guide/packagers.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE chapter PUBLIC "-//Samba-Team//DTD DocBook V4.2-Based Variant V1.0//EN" "http://www.samba.org/samba/DTD/samba-doc"> +<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 separate +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> |