summaryrefslogtreecommitdiff
path: root/doc/README.maintaining
blob: cbcbd77d2d32f0bfcacd34d39ff82b05f89e8111 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
BUILD SCRIPTS: how they work and how to modify them
===================================================

A guide to the GIMP-Print build system.


Introduction
------------

GIMP-Print uses GNU autoconf and automake to generate the scripts that build
the software.  It also uses libtool to create shared libraries.  This file
describes how they work together.  It also discusses the thinking behind how
they are used in GIMP-Print, and how to modify the GIMP-Print build scripts
without breaking other things.  If you have used autoconf and automake before,
there will be little that is new in this file, but you should note the
conventions used in GIMP-Print.

This file is split into the following sections:

	o Integration of the autotools
	o Normal use of the tools
	  - Using CVS
	  - Setting up the build scripts from CVS
	  - Building the package
	o configure.in.in
	  - Layout
	  - AC_SUBST
	  - AC_DEFINE and AC_DEFINE_UNQUOTED
	  - AM_CONDITIONAL
	o Makefile.am
	  - Automake basics
	  - Make and subdirectories
	  - Conditional compilation
	  - When automake is not enough...
	    + Rule syntax
	    + Correctly referencing files
	o aclocal
	o config.h
	o libgimpprint and libprintut
	o automake subtleties
	o libtool tricks
	o Testing changes to the build scripts
	o Further information
	o Known problems

I hope you find this useful. If any part was not clear, or there was something
that you would like covering, please let me know!

 -- Roger Leigh <roger@whinlatter.uklinux.net>

 $Id: README.maintaining,v 1.8.2.1 2004/04/19 00:01:48 rlk Exp $


1. Integration of the autotools
-------------------------------

Each directory has a Makefile.am file which is processed by automake to produce
a Makefile.in.  In the root directory there is a configure.in.in which is
processed by autogen.sh to produce configure.in.  configure.in is processed by
autoconf to make a script called configure.  When run, configure does various
tests and checks, and then reads each Makefile.in to make a Makefile, and also
generates a header called config.h from config.h.in.  config.h.in is produced
with autoheader from configure.in and acconfig.h.  autoconf also requires a
file aclocal.m4 which is generated by aclocal.

All these files are generated simply by running `./autogen.sh' in the top
directory.  If you are using a distributed version of GIMP-Print, as opposed to
CVS, then they will already be present and the following will not be necessary.

This is probably best demonstrated graphically.  The relationships between the
files are as follows:

During package setup (from CVS), running autogen.sh:

	                           autogen.sh
	          configure.in.in ------------> configure.in

	gettext files added
	libtool files added
	                           aclocal
	             configure.in ------------> aclocal.m4

	                           autoheader
	acconfig.h + configure.in ------------> config.h.in

	                           automake
	              Makefile.am ------------> Makefile.in

	                           autoconf
	aclocal.m4 + configure.in ------------> configure

Running configure:
	                           configure
	              Makefile.in ------------> Makefile
	              config.h.in ------------> config.h
	             headers.h.in ------------> headers.h
	             manpage.n.in ------------> manpage.n


2. Normal use of the tools
--------------------------

This section describes how to use the scripts for basic day-to-day working.

2.1 Using CVS
-------------
The latest working copy of GIMP-Print (HEAD) and all prior releases are
available from CVS either anonymously (read-only with CVS pserver) or
authenticated (read-write with SSH).  The modulename for GIMP-Print is 'print'.

Anonymous CVS access:
The module you wish to check out must be specified as the modulename.  When
prompted for a password for anonymous, simply press the Enter key.

	$ cvs -d:pserver:anonymous@cvs.gimp-print.sourceforge.net:/cvsroot/gimp-
	print login
	$ cvs -z3
	-d:pserver:anonymous@cvs.gimp-print.sourceforge.net:/cvsroot/gimp-print
	co modulename

Developer CVS access via SSH:
Only project developers can access the CVS tree via this method.  SSH1 must be
installed on your client machine.  Substitute modulename and developername with
the proper values.  Enter your site password when prompted.  See the sourceforge
documentation for more details, including how to use RSA keys for
authentication.

	$ export CVS_RSH=ssh
	$ cvs -z3
	-ddevelopername@cvs.gimp-print.sourceforge.net:/cvsroot/gimp-print
	co modulename

The CVS info documentation has very detailed explanations of everything that
can be done with CVS.

2.2 Setting up the build scripts from CVS
-----------------------------------------
After initially getting a copy of GIMP-Print from CVS, or if any of the scripts
have changed, simply run autogen.sh:

	$ ./autogen.sh [options]

Note that one can pass any options to autogen.sh that one would normally pass
to configure.  './configure --help' will give a complete list of options one
can use.

2.3 Building the package
------------------------
The normal method is to run the `configure' script, and then `make'.  The
package can then be installed with 'make install':

	$ ./configure
	$ make
	$ make [DESTDIR=... VAR1=val1 VARn=valn] install

If the build scripts have been modified, it will not normally be necessary to
re-run autogen.sh: the Makefiles will notice and regenerate themselves, running
autoconf, automake, aclocal and configure again if needed.  If configure.in.in
has been modified, re-run autogen.sh manually to regenerate configure.in.

The build is only guaranteed to work if make is run from the top level.  It
should be possible to make individual subdirectories, but sometimes this will
cause problems e.g. if it depends on some other directory that should have
been built first.

A common problem is getting errors about a non-existent file called
`doc/version.texi'.  This file is automatically generated.  It will
be generated if you run make after running './autogen.sh' or
'./configure --enable-maintainer-mode'.  It is only generated if
`maintainer-mode' is enabled.

Other packages (including the extra development packages on some systems) must
be installed on your system to build correctly.  These include:  autoconf,
automake, libtool, gtk, gdk, gimp 1.2, cups, foomatic, makeinfo, readline
texi2html.  Not all these need to be installed, depending on the configure
options used.  It might be necessary to get the latest releases of some of
these packages, as critical bugs present in easrlier releases have been fixed.
The latest gettext and texi2html are strongly suggested.

2.4 Extra make targets
----------------------
The Makefiles can do much more than build the package.  `targets' can be
given to make, which do various things.  They are used as follows:

	$ make target1 target2 ...

Some of the targets available are:

	all			same as make with no targets
	clean			remove everything generated by 'make all'
	distclean		as clean, and everything generated by configure
	maintainer-clean	as distclean, and everything generated by
				autogen.sh
	install			install the package
	uninstall		uninstall the package
	tags			make tags tables
	dist			make a distribution
	distcheck		as dist, but test it as well
	gimp-dist		package the for inclusion in the GIMP tree

Other targets are available. See Makefile.in for details.


3. configure.in.in
------------------

This file is a Bourne shell script with m4 macros embedded in it.  It is parsed
with sed to produce configure.in, which has hard-coded release dates in it.
autoconf expands the m4 macros to produce configure.

3.1 Layout
----------
The file is split into mostly discrete sections:
i.    Versioning details (including library versioning)
ii.   autoconf and automake initialisation
iii.  libtool setup
iv.   Default settings
v.    configure --with and --enable options
vi.   Checks for programs
vii.  Compiler flags
viii. Checks for libraries
ix.   Checks for headers
x.    Checks for typedefs, structures, and compiler characteristics
xi.   Define what has to be built (conditional compilation of things)
xii.  CUPS path settings
xiii. Definitions and substitutions
xiv.  Parse and output files

The ordering of sections is based solely on that some checks depend on checks
being performed previously.  There is sometimes some overlap between sections,
but any additions should go into the appropriate section, if at all possible.
A new section may be created if there is no suitable section.

3.2 AC_SUBST
------------
The main use of the configure script is to produce customised Makefiles, and
other files too.  This is done through the use of AC_SUBST, which makes a
variable get substituted in a file:

	ESCPUTIL_BIN="escputil"
	AC_SUBST(ESCPUTIL_BIN)

will replace any instance of @ESCPUTIL_BIN@ in a template file (ending in
.in'). E.g.

	bin_PROGRAMS = @ESCPUTIL_BIN@

3.3 AC_DEFINE and AC_DEFINE_UNQUOTED
------------------------------------
These macros are used to insert a #define in config.h.

	AC_DEFINE(MACRO)

will cause '#define MACRO 1' to appear in config.h (this will be of the form
'#undef MACRO' in config.h.in)

AC_DEFINE_UNQUOTED is the same as AC_DEFINE, except that a second option
can be used to define a string literal.

3.4 AM_CONDITIONAL
------------------
This is used to make certain parts of a Makefile conditional depending on
what happens in configure. It is used in the form:

	AM_CONDITIONAL(NAME, test)
	where name is the name of the conditional you define, and test
	is a check that must return true for the conditional to be
	defined.

This is used in a Makefile.am as follows:

	if NAME
	[do stuff]
	endif

Not that only one line can be made conditional, and that you cannot also use
normal make conditionals.  Its main use is to define macros, or to make a
rule conditional.


4. Makefile.am
--------------

There is a Makefile.am in each directory, apart from a few where the Makefile
the next level up handles things.  Each Makefile.am is split into several
sections:
i.    Macros common to every Makefile.am
ii.   Path macros
iii.  Compiler macros
iv.   Build dependencies.  This is further split into a) binaries and b) data.
      Each of these sections has
      1. list of objects to build (if applicable)
      2. EXTRA_ objects (if applicable)
      3. Dependencies for each object (e.g. sources)
v.    Rules
vi.   Cleaning macros
vii.  EXTRA_DIST

Keeping everything in this logical order keeps them neat and readable.  Not
every Makefile.am will have all these sections, but those that are present
should be ordered in this way.

4.1 Automake basics
-------------------
Automake parses Makefile.am, and generates rules in Makefile.in depending on
what it finds.  There are `primary' variables, such as PROGRAMS, SCRIPTS,
MANS, HEADERS and DATA that describe the type of source one is defining.  These
are coupled with a location to install into.  For example, these are a few
standard locations: bindir, sbindir, mandir, datadir, pkgdatadir.  You can
define your own quite easily.  They are used together as follows:

	bin_PROGRAMS = myprog 	[where bindir=$(prefix)/bin]
	pkgdata_DATA = datafile1 datafile2
				[where pkgdatadir=$(prefix)/share/$(PACKAGE)]

Note! the 'dir' postfix is stripped off the location. I.e. bindir -> bin.
That is all there is to it! You can use these simple variables to describe
everything in your source, and where is gets installed to.
    In the case of PROGRAMS, one also has to specify the SOURCES as well.
E.g. in the example above, a binary called `myprog' was defined.  The sources
for this program are defined as follows:

	myprog_SOURCES = myprog.c myprog.h

automake will create all of the rules needed to build and install everything.
An extra point is that suppose one doesn't want to install something?  For this
there is a 'noinst' macro, so that noinst_PROGRAMS will not ever be installed.
One might also want noinst_HEADERS. If one wanted to install headers, one would
define

	includedir=$(prefix)/include
and then
	pkgincludedir=$(includedir)/$(PACKAGE).
Now
	pkginclude_HEADERS = myheader.h

will install the header into the correct location. Some of the locations in the
above examples are defined by default. The others must be defined by hand.
    There are also some macros with specific functions.  Any file that is not
mentioned in a macro, and also and MANS, will have to be put in an EXTRA_DIST
macro, so that automake knows to distribute them.
    Also, some files might not be automatically cleaned. There are CLEANFILES,
DISTCLEANFILES and MAINTAINERCLEANFILES macros for use with the 'clean',
'distclean' and 'maintainer-clean' make targets respectively. Use with caution!
One does not want to clean things that cannot be recreated!  CLEANFILES should
be regenerated with 'make' as part of the build process, DISTCLEANFILES by
configure (e.g. Makefiles) and MAINTAINERCLEANFILES should be created by
'autogen.sh' and the programs it calls (e.g. Makefile.in's which are created by
automake).

4.2 Make and subdirectories
---------------------------
If a Makefile.am has a SUBDIRS macro, make will recurse through these
subdirectories, running make in each one.  e.g. in the top-level Makefile.am:

	SUBDIRS = intl lib man src test po

In this case the order of directories is critical: lib, src and test depend on
intl being built and src and test depend on lib being built.  Also, test depends
on libgimpprint in src and po must be run after all the source has been built
(as it parses all C source, possibly including dynamically generated code).  The
same applies in src/Makefile.am: most directories require libgimpprint for
linking with, and libgimpprint requires printdef.
    Therefore the order of building is critical!  It should be technically
possible to run make in any subdirectory and have all the dependencies
satisfied by rules in that Makefile.  Unfortunately, this requires complex rules
in each directory, and this cannot be done as the source tree gets bigger and
more complex.  As a result, one should only run make from the top level, as
only this is certain to satisfy all dependencies.

4.3 Conditional compilation
---------------------------
Most of the source is conditionally compiled according to the defaults in
configure.in.in, which may be overridden by passing options to configure,
or possibly by the results of configure checks.  Depending on the result,
configure may substitute what to build into the generated Makefile, e.g.:

	bin_PROGRAMS = @ESCPUTIL_BIN@
	EXTRA_PROGRAMS = escputil

It is important to have the EXTRA_ macro, as otherwise the source will
not get distributed.

4.4 When automake is not enough...
----------------------------------
When one wants to do something that is not within the scope of the facilities
automake provides, one can write one's own rules, just like in any other
Makefile.

4.4.1 Rule syntax
Make rules take the following form:

	target ... : prerequisites ...
		commands
		...
		...
where
	target is the name of a file (or files) to create
	prerequisites are files that are needed to make the target
	commands are commands to make the target

The target will only be made if it does not exist or the timestamp on any of the
prerequisites is newer, indicating that it is out of date.
    make is a complex program, and this is just the bare basic operation. See
the GNU make info documentation for a detailed explanation.

4.4.2 Correctly referencing files
A file may be present either in the _source_ or _build_ directory, which may or
may not be the same.  The source directory contains the unchanging source files,
whereas the build directory contains all the generated files, such as
Makefiles, object code, libraries and executables and also generated headers, C
source and manual pages.  The macros to use are:

	$(srcdir)	The equivalent directory in the source tree
	.		The build directory (which is the current directory)
	$(top_srcdir)	The highest level of the source tree
	$(top_builddir)	The highest level of the build tree


5. aclocal
----------

aclocal contains all the macros that are needed by autoconf to generate
configure from configure.in.  It is created by running 'aclocal'. If any of the
macros are not present on your system, you can point out where the macros
distributed with GIMP-Print are by using '-I macrodir' with aclocal.  E.g. if
AM_PATH_GIMPPRINT is missing, you can make it use src/main/gimpprint.m4 with
'aclocal -I src/main'.


6. config.h
-----------

config.h is created by configure and included by all of the C source files in
the distribution.  It is created from config.h.in by 'configure'.  config.h.in
is created from configure.in and acconfig.h by 'autoheader'.  If you add any
AC_DEFINE, or AC_DEFINE_UNQUOTED macros to configure.in.in, you may be required
to add entries to acconfig.h.  If you defined 'HAVE_FOO_H' you would add
something like:
	/* Define if foo.h is present */
	#undef HAVE_FOO_H
to acconfig.h


7. libgimpprint and libprintut

Any source that is to link with libgimpprint should include the gimp-print.h
header. The right way to do this is as follows:

	#ifdef INCLUDE_GIMP_PRINT_H
	#  include INCLUDE_GIMP_PRINT_H
	#else
	#  include <gimp-print.h>
	#endif

This is so that an installed version of libgimpprint can be linked against.
    To ensure proper linking, the Makefile.am should have the following:

	program_LDADD = $(LIBGIMPPRINT_LIBS)

The Makefile.am should also include any necessary CFLAGS with:

	INCLUDES = @INCLUDES@ $(LIBGIMPPRINT_CFLAGS)

It is used with INCLUDES and not CFLAGS because is usually is used to specify
header locations.
    If a program uses the utility library libprintut, it must include
libprintut.h:

	#include "../../lib/libprintut.h"

To link, the library must be specified in the same way as for libgimpprint:

	program_LDADD = ../../lib/libprintut.la $(INTLLIBS) ../../lib/libprintut.la

Note that if it is using gettext, then you have to specify it _twice_. If every
binary is to link with it, then use LIBS instead:

	LIBS = @LIBS@ ../../lib/libprintut.la $(INTLLIBS) ../../lib/libprintut.la


8. automake subtleties
----------------------

Automake parses Makefile.am to produce Makefile.in.  Makefile.am looks much like
a normal Makefile, e.g. you can write your own rules in it.  However, it is not
entirely like a normal Makefile.  In particular, automake conditionals are not
the same as make conditionals in that they only work for single lines, not
whole blocks of lines.  Therefore if you want to make a rule conditional, just
surround the 'target: dependencies' line:

	if BUILD_CUPS
	install-data-local: ppd
	endif
		$(mkinstalldirs) $(DESTDIR)$(cups_modeldir)
		cd ppd ; \
		for ppdfile in * ; do \
		  $(INSTALL_DATA) $$ppdfile $(DESTDIR)$(cups_modeldir) ; \
		done

Another gotcha is that automake adds rules of its own, so you must make sure
that the names do not clash, or you may get obscure problems occurring.


9. libtool tricks
-----------------

libtool is used to create shared libraries.  One gotcha with libtool is that if
a program is linked with a libtool shared library in the build tree, then it is
actually created in '.libs/program', and not 'program'.  However, if it is
statically linked (e.g. the platform does not support shared libraries, or you
used --disable-shared with configure, perhaps to make the build faster), then
it will be created as 'program'.  This is so that you can run the program
before you install it.  If it is linked with shared libraries, a wrapper script
does some magic with LD_LIBRARY_PATH.  However, this means that your install
rules must take this into account by checking that '.libs/program exists', and
installing it if it is present, but otherwise installing 'program'.  Automake
install rules do this automatically, but it you write your own, you must take
this into consideration.


10. Testing changes to the build scripts
---------------------------------------

If you make a change to one of the scripts, simply running autogen.sh and
seeing if 'make' and 'make install' work is not enough.  In particular, you
must check that it does not break 'VPATH' builds where the source and build
directories are not the same.
To do this:

	$ mkdir /var/tmp/tmp-build
	$ cd /var/tmp/tmp-build
	$ ~roger/gimp-print/current/configure --with-cups
	$ make
	$ make DESTDIR=/var/tmp/tmp-inst install

You should also test that 'make install' works with and without DESTDIR set.
Note that the current stable gettext release does not support DESTDIR, but the
CVS version does.  The current gettext also breaks in VPATH due to
MKINSTALLDIRS being wrongly defined. This is also fixed in CVS.


11. Further information
-----------------------

autoconf: autoconf.info
automake: automake.info
CVS:      cvs.info
gettext:  gettext.info (but it's not very comprehensive)
libtool:  libtool.info
make:     make.info


12. Known problems
------------------

If you have a version of the Gimp older than about 1.1.27, your
gimp.m4 (in /usr/share/aclocal or equivalent) will be incorrect.  You
should install the version of gimp.m4 from scripts/ prior to use.
This should only be a problem when building from CVS; the configure
script included in released versions will not have this problem.


13. Updating PO files

wget -r -np -nH --cut-dirs=3 --accept '.po' --cache=off http://www.iro.umontreal.ca/translation/maint/gimp-print/