summaryrefslogtreecommitdiffstats
path: root/docs/HACKING
blob: 94a8366ab8f03d124be31023bc52b2a9150fe11e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
Please comply with the following rules when hacking on Avahi:

 * Before commiting check with "git st" that all built files are ignored
   by git. To change the list of ignored files use

       $VISUAL .gitignore

   This is similar to the ".cvsignore" file in CVS times.

 * Don't forget to add the autoconf config.h inclusion to all C source files:

   #ifdef HAVE_CONFIG_H
   #include <config.h>
   #endif

   This needs to be placed in in .c files only. NOT IN HEADER FILES!

 * Don't hardcode any paths in source files. Either use the -D option of gcc
   for C sources or use "sed" to replace them based on a .in file.

 * Never forget that Avahi should be buildable without DBUS, GTK or python!

 * Before commiting, test your code! In case of C consider running it
   a few times through valgrind, to make sure that you got everything
   right.  You have to call libtool explicitly when running valgrind
   on binaries that depend on shared objects. e.g:

       libtool --mode=execute valgrind ./avahi-daemon

   Please note that valgrind can't find you all bugs. Please check
   your code thrice with your brain before committing. Valgrind is
   only a final check.

 * Whenever you add a new Makefile.am, C (.c or .h) source file, shell or
   python script please add this legal blurb to its header:

   For Makefile.am, python and shell code:

<snip>
# This file is part of avahi.
#
# avahi is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# avahi is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
# License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with avahi; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
</snip>

   For C source code:

<snip>
/***
  This file is part of avahi.

  avahi is free software; you can redistribute it and/or modify it
  under the terms of the GNU Lesser General Public License as
  published by the Free Software Foundation; either version 2.1 of the
  License, or (at your option) any later version.

  avahi is distributed in the hope that it will be useful, but WITHOUT
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
  Public License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with avahi; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  USA.
***/
</snip>