File: Packaging.html

package info (click to toggle)
samba 2%3A3.6.6-6%2Bdeb7u7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 160,976 kB
  • sloc: ansic: 1,764,536; xml: 114,867; python: 78,119; perl: 27,633; sh: 13,802; makefile: 4,704; asm: 3,281; cpp: 2,281; yacc: 1,949; exp: 1,784; ada: 1,681; pascal: 1,089; cs: 879; awk: 756; lex: 566; csh: 58; sed: 45; php: 6
file content (21 lines) | stat: -rw-r--r-- 3,544 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter16.Notes to packagers</title><link rel="stylesheet" href="../samba.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.75.2"><link rel="home" href="index.html" title="SAMBA Developers Guide"><link rel="up" href="pt05.html" title="PartV.Appendices"><link rel="prev" href="pt05.html" title="PartV.Appendices"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter16.Notes to packagers</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="pt05.html">Prev</a></td><th width="60%" align="center">PartV.Appendices</th><td width="20%" align="right"></td></tr></table><hr></div><div class="chapter" title="Chapter16.Notes to packagers"><div class="titlepage"><div><div><h2 class="title"><a name="Packaging"></a>Chapter16.Notes to packagers</h2></div><div><div class="author"><h3 class="author"><span class="firstname">Jelmer</span> <span class="surname">Vernooij</span></h3></div></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="Packaging.html#id333244">Versioning</a></span></dt><dt><span class="sect1"><a href="Packaging.html#id333274">Modules</a></span></dt></dl></div><div class="sect1" title="Versioning"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="id333244"></a>Versioning</h2></div></div></div><p>
Please, please set the vendor version suffix and number in <code class="filename">source/VERSION</code> and call
<code class="filename">source/script/mkvesion.sh</code> to include the versioning of your package. There is also
the possibility to set a function to create the vendor version. 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:
</p><pre class="programlisting">
Version 2.999+3.0.alpha21-5 for Debian
</pre></div><div class="sect1" title="Modules"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="id333274"></a>Modules</h2></div></div></div><p>
Samba3 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:
</p><p>
The option <code class="literal">--with-shared-modules</code> is maintained to support specific modules such as
idmap_XXX and vfs_XXX. For example, <code class="literal">--with-shared-modules=idmap_ad</code>. Use of this parameter
to the <code class="literal">configure</code> command as not been supported in official releases.
</p><p>
</p><pre class="programlisting">
./configure --with-shared-modules=rpc,vfs,auth,pdb,charset
</pre><p>
</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="pt05.html">Prev</a></td><td width="20%" align="center"><a accesskey="u" href="pt05.html">Up</a></td><td width="40%" align="right"></td></tr><tr><td width="40%" align="left" valign="top">PartV.Appendices</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"></td></tr></table></div></body></html>