~ubuntu-branches/ubuntu/precise/util-linux/precise-proposed

« back to all changes in this revision

Viewing changes to shlibs/mount/docs/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2011-06-20 22:31:50 UTC
  • mfrom: (1.6.3 upstream) (4.5.1 sid)
  • Revision ID: james.westby@ubuntu.com-20110620223150-lz8wrv0946ihcz3z
Tags: 2.19.1-2ubuntu1
* Merge from Debian unstable, remaining changes:
  - Build for multiarch.
  - Add pre-depends on multiarch-support.
  - configure.ac: don't try to be clever about extracting a path name from
    $libdir to append to /usr in a way that's not overridable; instead,
    reuse the built-in configurable libexecdir.
  - Fix up the .pc.in files to know about libexecdir, so our substitutions
    don't leave us with unusable pkg-config files.
  - Install custom blkid.conf to use /dev/.blkid.tab since we don't
    expect device names to survive a reboot
  - Mention mountall(8) in fstab(5) manpages, along with its special
    options.
  - Since upstart is required in Ubuntu, the hwclock.sh init script is not
    called on startup and the hwclockfirst.sh init script is removed.
  - Drop depends on initscripts for the above.
  - Replace hwclock udev rule with an Upstart job.
  - For the case where mount is called with a directory to mount, look
    that directory up in mountall's /lib/init/fstab if we couldn't find
    it mentioned anywhere else.  This means "mount /proc", "mount /sys",
    etc. work.
  - mount.8 points to the cifs-utils package, not the obsolete smbfs one. 
* Dropped changes:
  - mount.preinst: lsb_release has been fixed in lucid and above to be
    usable without configuration, so we don't have to diverge from Debian
    here anymore.
* Changes merged upstream:
  - sfdisk support for '+' with '-N'
  - mount/umount.c: fix a segfault on umount with empty mtab entry
  - Fix arbitrary unmount with fuse security issue

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(top_srcdir)/config/include-Makefile.am
 
2
 
 
3
## Process this file with automake to produce Makefile.in
 
4
 
 
5
# We require automake 1.10 at least.
 
6
AUTOMAKE_OPTIONS = 1.10
 
7
 
 
8
# This is a blank Makefile.am for using gtk-doc.
 
9
# Copy this to your project's API docs directory and modify the variables to
 
10
# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
 
11
# of using the various options.
 
12
 
 
13
# The name of the module, e.g. 'glib'.
 
14
DOC_MODULE=libmount
 
15
 
 
16
# Uncomment for versioned docs and specify the version of the module, e.g. '2'.
 
17
#DOC_MODULE_VERSION=2
 
18
 
 
19
# The top-level SGML file. You can change this if you want to.
 
20
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.xml
 
21
 
 
22
# The directory containing the source code. Relative to $(srcdir).
 
23
# gtk-doc will search all .c & .h files beneath here for inline comments
 
24
# documenting the functions and macros.
 
25
# e.g. DOC_SOURCE_DIR=../../../gtk
 
26
DOC_SOURCE_DIR=../src
 
27
 
 
28
# Extra options to pass to gtkdoc-scangobj. Not normally needed.
 
29
SCANGOBJ_OPTIONS=
 
30
 
 
31
# Extra options to supply to gtkdoc-scan.
 
32
# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
 
33
SCAN_OPTIONS=
 
34
 
 
35
# Extra options to supply to gtkdoc-mkdb.
 
36
# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
 
37
MKDB_OPTIONS=--sgml-mode --output-format=xml --name-space mount
 
38
 
 
39
# Extra options to supply to gtkdoc-mktmpl
 
40
# e.g. MKTMPL_OPTIONS=--only-section-tmpl
 
41
MKTMPL_OPTIONS=
 
42
 
 
43
# Extra options to supply to gtkdoc-mkhtml
 
44
MKHTML_OPTIONS=
 
45
 
 
46
# Extra options to supply to gtkdoc-fixref. Not normally needed.
 
47
# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
 
48
FIXXREF_OPTIONS=
 
49
 
 
50
# Used for dependencies. The docs will be rebuilt if any of these change.
 
51
# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
 
52
# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
 
53
HFILE_GLOB=$(ul_libmount_incdir)/libmount.h
 
54
CFILE_GLOB=$(ul_libmount_srcdir)/*.c
 
55
 
 
56
# Extra header to include when scanning, which are not under DOC_SOURCE_DIR
 
57
# e.g. EXTRA_HFILES=$(top_srcdir}/contrib/extra.h
 
58
EXTRA_HFILES=
 
59
 
 
60
# Header files to ignore when scanning. Use base file name, no paths
 
61
# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
 
62
IGNORE_HFILES=mountP.h
 
63
 
 
64
# Images to copy into HTML directory.
 
65
# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
 
66
HTML_IMAGES=
 
67
 
 
68
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
 
69
# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
 
70
content_files = $(builddir)/version.xml
 
71
 
 
72
# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
 
73
# These files must be listed here *and* in content_files
 
74
# e.g. expand_content_files=running.sgml
 
75
expand_content_files=
 
76
 
 
77
# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
 
78
# Only needed if you are using gtkdoc-scangobj to dynamically query widget
 
79
# signals and properties.
 
80
# e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
 
81
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
 
82
GTKDOC_CFLAGS=
 
83
GTKDOC_LIBS=
 
84
 
 
85
# This includes the standard gtk-doc make rules, copied by gtkdocize.
 
86
include $(top_srcdir)/config/gtk-doc.make
 
87
 
 
88
# Other files to distribute
 
89
# e.g. EXTRA_DIST += version.xml.in
 
90
EXTRA_DIST += version.xml.in
 
91
 
 
92
# Files not to distribute
 
93
# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
 
94
# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
 
95
#DISTCLEANFILES +=
 
96
 
 
97
# Comment this out if you want your docs-status tested during 'make check'
 
98
if ENABLE_GTK_DOC
 
99
#TESTS_ENVIRONMENT = cd $(srcsrc)
 
100
#TESTS = $(GTKDOC_CHECK)
 
101
endif