diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-09-02 10:55:24 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-09-09 09:52:32 +0200 |
commit | 96f54b8bc892bc6feee6b9a3878b23e8dcbb2004 (patch) | |
tree | 7c2e2a41edf3255ce0c0b474052a7316b8f42654 /config.make.in | |
parent | c3a70032aa37e72adea05f03f5f8555e0991b560 (diff) |
mount: handle -t auto
Use libblkid to detect the filesystem type if "auto" is given as
type. Remove the translator localization from main, this is also done
in do_mount and any errors are propagated properly. This way "auto" is
handled correctly if given on the command line or used as filesystem
type in the fstab.
* configure.ac: Add check for libblkid.
* config.make.in: Make libblkid specific values available.
* utils/Makefile: Use libblkid specific values.
* utils/mount.c (DEFAULT_FSTYPE): Use "auto" as default type.
(do_mount): Detect type using libblkid.
(main): Drop translator localization.
Diffstat (limited to 'config.make.in')
-rw-r--r-- | config.make.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config.make.in b/config.make.in index edb74c07..4d2abcca 100644 --- a/config.make.in +++ b/config.make.in @@ -85,6 +85,11 @@ HAVE_DAEMON = @HAVE_DAEMON@ libdaemon_CFLAGS = @libdaemon_CFLAGS@ libdaemon_LIBS = @libdaemon_LIBS@ +# How to compile and link against libblkid. +HAVE_BLKID = @HAVE_BLKID@ +libblkid_CFLAGS = @libblkid_CFLAGS@ +libblkid_LIBS = @libblkid_LIBS@ + # Whether Sun RPC support is available. HAVE_SUN_RPC = @HAVE_SUN_RPC@ |