diff options
author | Jason Leach <jasonleach@usa.net> | 2001-01-19 18:31:33 +0800 |
---|---|---|
committer | Jacob Leach <jleach@src.gnome.org> | 2001-01-19 18:31:33 +0800 |
commit | 01b71061169c94e7b7d1f3941a59e2bb9af43bd1 (patch) | |
tree | 272d0bffc70b0bfb8f098df96b954e039f50c6d2 | |
parent | d0a44e5ff97895f4561d9476217e2222e54a7985 (diff) | |
download | gsoc2013-evolution-01b71061169c94e7b7d1f3941a59e2bb9af43bd1.tar gsoc2013-evolution-01b71061169c94e7b7d1f3941a59e2bb9af43bd1.tar.gz gsoc2013-evolution-01b71061169c94e7b7d1f3941a59e2bb9af43bd1.tar.bz2 gsoc2013-evolution-01b71061169c94e7b7d1f3941a59e2bb9af43bd1.tar.lz gsoc2013-evolution-01b71061169c94e7b7d1f3941a59e2bb9af43bd1.tar.xz gsoc2013-evolution-01b71061169c94e7b7d1f3941a59e2bb9af43bd1.tar.zst gsoc2013-evolution-01b71061169c94e7b7d1f3941a59e2bb9af43bd1.zip |
Changed a leftover $with_x_mailer to $with_sub_version. Made it so that if
2001-01-19 Jason Leach <jasonleach@usa.net>
* configure.in: Changed a leftover $with_x_mailer to
$with_sub_version. Made it so that if $with_sub_version isn't
specified, we don't try to output it, and also corrected the way
SUB_VERSION is defined.
svn path=/trunk/; revision=7644
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | configure.in | 10 |
2 files changed, 15 insertions, 2 deletions
@@ -1,3 +1,10 @@ +2001-01-19 Jason Leach <jasonleach@usa.net> + + * configure.in: Changed a leftover $with_x_mailer to + $with_sub_version. Made it so that if $with_sub_version isn't + specified, we don't try to output it, and also corrected the way + SUB_VERSION is defined. + 2001-01-18 Federico Mena Quintero <federico@ximian.com> * Makefile.am: Um, why was the doc directory removed from SUBDIRS? diff --git a/configure.in b/configure.in index f541fad410..d68bb712e5 100644 --- a/configure.in +++ b/configure.in @@ -617,7 +617,7 @@ dnl ****************** dnl Sub-version number dnl ****************** AC_ARG_WITH(sub-version, [ --with-sub-version=VERSION Specify a sub-version string]) -AC_DEFINE_UNQUOTED(SUB_VERSION, "$sub_version") +AC_DEFINE_UNQUOTED(SUB_VERSION, "$with_sub_version") dnl ****************************** dnl Makefiles @@ -718,9 +718,15 @@ doc/devel/calendar/cal-util/Makefile doc/devel/importer/Makefile ]) +if test "x$with_sub_version" != "x"; then echo " - Evolution ($with_x_mailer) has been configured as follows: + Evolution ($with_sub_version) has been configured as follows: " +else +echo " + Evolution has been configured as follows: " +fi +echo " Mail Directory: $system_mail_dir LDAP support: $msg_ldap NNTP support: $msg_nntp |