changeset 193:bd9704417d49

typographic fix: alignments in configure -h
author meillo@marmaro.de
date Thu, 15 Jul 2010 14:37:49 +0200
parents 89f951be358f
children 346955794084
files configure configure.ac
diffstat 2 files changed, 28 insertions(+), 28 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Thu Jul 15 14:24:40 2010 +0200
+++ b/configure	Thu Jul 15 14:37:49 2010 +0200
@@ -1346,24 +1346,24 @@
   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
   --disable-dependency-tracking  speeds up one-time build
   --enable-dependency-tracking   do not reject slow dependency extractors
-  --disable-resolver       disable resolver support
-  --disable-debug          disable debugging
-  --disable-smtp-server    disable smtp server support
-  --enable-auth            enable AUTH (RFC 2554) client support
-  --enable-maildir            enable qmail style maildir support
-  --enable-ident           enable ident (RFC 1413) support
+  --disable-resolver      disable resolver support
+  --disable-debug         disable debugging
+  --disable-smtp-server   disable smtp server support
+  --enable-auth           enable AUTH (RFC 2554) client support
+  --enable-maildir        enable qmail style maildir support
+  --enable-ident          enable ident (RFC 1413) support
 
 Optional Packages:
   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
-  --with-user=USER         set user mail
-  --with-group=GROUP       set group trusted
-  --with-glib-static=path  link glib statically (path mandatory!)
-  --with-libcrypto         use libcrypto
-  --with-liblockfile       use liblock (for Debian)
-  --with-logdir=DIR        set log directory /var/log/masqmail
-  --with-spooldir=DIR      set spool directory /var/spool/masqmail
-  --with-confdir           directory for configuration /etc/masqmail
+  --with-user=USER        set user mail
+  --with-group=GROUP      set group trusted
+  --with-glib-static=path            link glib statically (path mandatory!)
+  --with-libcrypto        use libcrypto
+  --with-liblockfile      use liblock (for Debian)
+  --with-logdir=DIR       set log directory /var/log/masqmail
+  --with-spooldir=DIR     set spool directory /var/spool/masqmail
+  --with-confdir          directory for configuration /etc/masqmail
 
 Some influential environment variables:
   CC          C compiler command
--- a/configure.ac	Thu Jul 15 14:24:40 2010 +0200
+++ b/configure.ac	Thu Jul 15 14:37:49 2010 +0200
@@ -25,7 +25,7 @@
 
 dnl resolver support (default is use it)
 AC_ARG_ENABLE(resolver,
-	[  --disable-resolver       disable resolver support],
+	[  --disable-resolver      disable resolver support],
 	if test "$enable_resolver" != 'no'; then
 		resolver_enabled='yes'
 	fi,
@@ -88,14 +88,14 @@
 
 dnl user and group configuration
 AC_ARG_WITH(user,
-	[  --with-user=USER         set user [mail]],
+	[  --with-user=USER        set user [mail]],
 	)
 if test "x$with_user" = 'x'; then
 	with_user='mail'
 fi
 
 AC_ARG_WITH(group,
-	[  --with-group=GROUP       set group [trusted]],
+	[  --with-group=GROUP      set group [trusted]],
 	)
 if test "x$with_group" = 'x'; then
 	with_group='trusted'
@@ -103,7 +103,7 @@
 
 dnl debugging support (default is use it)
 AC_ARG_ENABLE(debug,
-	[  --disable-debug          disable debugging],
+	[  --disable-debug         disable debugging],
 	if test "x$enable_debug" != 'xno'; then
 		debug_enabled='yes'
 	fi,
@@ -120,7 +120,7 @@
 
 dnl link glib statically?
 AC_ARG_WITH(glib_static,
-	[  --with-glib-static=path  link glib statically (path mandatory!)],
+	[  --with-glib-static=path            link glib statically (path mandatory!)],
 	)
 if test "x$with_glib_static" != 'x'; then
 	GLIB_LIBS=$with_glib_static
@@ -133,7 +133,7 @@
 
 dnl smtp server support (default is use it)
 AC_ARG_ENABLE(smtp_server,
-	[  --disable-smtp-server    disable smtp server support],
+	[  --disable-smtp-server   disable smtp server support],
 	if test "x$enable_smtp_server" != 'xno'; then
 		smtp_server_enabled='yes'
 	fi,
@@ -145,7 +145,7 @@
 
 dnl auth support (default is to not use it)
 AC_ARG_ENABLE(auth,
-	[  --enable-auth            enable AUTH (RFC 2554) client support],
+	[  --enable-auth           enable AUTH (RFC 2554) client support],
 	if test "x$enable_auth" != 'xno'; then
 		auth_enabled='yes'
 	fi,
@@ -160,7 +160,7 @@
 
 dnl maildir support (default is to not use it)
 AC_ARG_ENABLE(maildir,
-	[  --enable-maildir            enable qmail style maildir support],
+	[  --enable-maildir        enable qmail style maildir support],
 	if test "x$enable_maildir" != 'xno'; then
 		maildir_enabled='yes'
 	fi,
@@ -171,7 +171,7 @@
 
 dnl libcrypto
 AC_ARG_WITH(libcrypto,
-	[  --with-libcrypto         use libcrypto],
+	[  --with-libcrypto        use libcrypto],
 	)
 if test "x$with_libcrypto" != 'xyes'; then
 	with_libcrypto='no'
@@ -194,7 +194,7 @@
 dnl ident support (default is to not use it)
 IDENT_LIBS=''
 AC_ARG_ENABLE(ident,
-	[  --enable-ident           enable ident (RFC 1413) support],
+	[  --enable-ident          enable ident (RFC 1413) support],
 	if test "x$enable_ident" != 'xno'; then
 		ident_enabled='yes'
 	fi,
@@ -208,7 +208,7 @@
 
 dnl liblockfile
 AC_ARG_WITH(liblockfile,
-	[  --with-liblockfile       use liblock (for Debian)],
+	[  --with-liblockfile      use liblock (for Debian)],
 	)
 if test "x$with_liblockfile" = 'xno'; then
 	with_liblockfile=''
@@ -228,7 +228,7 @@
 
 dnl log and spool directories
 AC_ARG_WITH(logdir,
-	[  --with-logdir=DIR        set log directory [/var/log/masqmail]],
+	[  --with-logdir=DIR       set log directory [/var/log/masqmail]],
 	,
         with_logdir='/var/log/masqmail/'
 	)
@@ -236,7 +236,7 @@
 AC_SUBST(with_logdir)
 
 AC_ARG_WITH(spooldir,
-	[  --with-spooldir=DIR      set spool directory [/var/spool/masqmail]],
+	[  --with-spooldir=DIR     set spool directory [/var/spool/masqmail]],
 	,
 	with_spooldir='/var/spool/masqmail/'
 	)
@@ -245,7 +245,7 @@
 
 dnl configuration file
 AC_ARG_WITH(confdir,
-	[  --with-confdir           directory for configuration [/etc/masqmail]],
+	[  --with-confdir          directory for configuration [/etc/masqmail]],
 	,
 	with_confdir='/etc/masqmail'
 	)