~ubuntu-branches/ubuntu/trusty/schroot/trusty

« back to all changes in this revision

Viewing changes to bin/schroot-releaselock/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Roger Leigh
  • Date: 2011-05-15 16:22:36 UTC
  • mfrom: (1.1.30 upstream) (2.2.24 sid)
  • Revision ID: james.westby@ubuntu.com-20110515162236-cfpzkanx65sexo8c
* New upstream stable release.
* Large file support is enabled by default.  This enables the use
  of files over 2 GiB in size on 32 bit architectures
  (Closes: #619825).
* dchroot-dsa: Use current interface for loading dchroot.conf,
  rather than the old, which caused a fatal exception
  (Closes: #626503).
* schroot: Don't use rbind when mounting filesystems in the chroot
  (Closes: #622756).  Recursive bind mounting of /proc, /dev and
  /sys caused breakage with systemd due to its use of autofs mounts.
  autofs interacts badly with bind mounting, leading to unmountable
  mount points.  While rbind is still possible, it is not done by
  default, and instead only specific filesystems are mounted;
  additional mounts required must be added to the profile fstab file.
* man: Add missing newline for run-exec-scripts (Closes: #624303).
  Fix incorrectly terminated underlining of /proc (Closes: #624302).
  Also document the chroot types implementing specific additional
  options (Closes: #626221).  Thanks to Marc Haber and Brian May.
* Session metadata includes the original chroot name.  This is
  available in the user environment as SCHROOT_CHROOT_NAME and
  in the setup scripts as CHROOT_NAME (Closes: #623828).
* Include buildd profile.  This was previously included in the buildd
  and sbuild packages, but was not built for the specific host
  architecture due to the package being arch: all.  We therefore
  Replace: buildd and sbuild for versions prior to 0.62.3-1.
  This also involved moving some parts of the base "all" profile
  template into other profile templates in order to keep it
  sufficiently minimal for buildd, and a simplification of
  nssdatabases for the minimal and sbuild profiles.
* Drop obsolete Replaces: from schroot-common.

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
CXXFLAGS = @CXXFLAGS@
183
183
CYGPATH_W = @CYGPATH_W@
184
184
DCHROOT_CONF = @DCHROOT_CONF@
185
 
DEFS = -DLOCALEDIR=\"$(localedir)\" -D_GNU_SOURCE
 
185
DEFS = $(LOCAL_DEFS) -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
186
186
DEPDIR = @DEPDIR@
 
187
DLLTOOL = @DLLTOOL@
187
188
DOXYGEN = @DOXYGEN@
188
189
DSYMUTIL = @DSYMUTIL@
189
190
DUMPBIN = @DUMPBIN@
221
222
LVCREATE = @LVCREATE@
222
223
LVREMOVE = @LVREMOVE@
223
224
MAKEINFO = @MAKEINFO@
 
225
MANIFEST_TOOL = @MANIFEST_TOOL@
224
226
MKDIR_P = @MKDIR_P@
225
227
MSGFMT = @MSGFMT@
226
228
MSGFMT_015 = @MSGFMT_015@
282
284
abs_srcdir = @abs_srcdir@
283
285
abs_top_builddir = @abs_top_builddir@
284
286
abs_top_srcdir = @abs_top_srcdir@
 
287
ac_ct_AR = @ac_ct_AR@
285
288
ac_ct_CC = @ac_ct_CC@
286
289
ac_ct_CXX = @ac_ct_CXX@
287
290
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
317
320
libexecdir = @libexecdir@
318
321
localedir = @localedir@
319
322
localstatedir = @localstatedir@
320
 
lt_ECHO = @lt_ECHO@
321
323
mandir = @mandir@
322
324
mkdir_p = @mkdir_p@
323
325
oldincludedir = @oldincludedir@
338
340
AM_CXXFLAGS = -I$(top_srcdir) $(LOCAL_CXXFLAGS) $(PTHREAD_CFLAGS) -pedantic -Wall -Wcast-align -Wwrite-strings -Wswitch-default -Wcast-qual -Wunused-variable -Wredundant-decls -Wctor-dtor-privacy -Wnon-virtual-dtor -Wreorder -Wold-style-cast -Woverloaded-virtual -fstrict-aliasing
339
341
AM_LDFLAGS = $(LOCAL_LDFLAGS) $(PTHREAD_LIBS)
340
342
LOCAL_CXXFLAGS = $(SCHROOT_CFLAGS) -I$(top_srcdir)/bin
 
343
LOCAL_DEFS = -DLOCALEDIR=\"$(localedir)\"
341
344
schroot_releaselock_SOURCES = \
342
345
        schroot-releaselock-main.h      \
343
346
        schroot-releaselock-main.cc     \