diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-01-18 01:29:14 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-01-18 01:29:14 +0800 |
commit | 3a51f7793e0a7df908768056da6e60a8e0ae9e51 (patch) | |
tree | 06a30d5852ccccbb75a53f1fa7361978cae48db1 /configure.in | |
parent | 2e8306e07bc705f7e927574d4ef03bb03f9e5e1e (diff) | |
download | gsoc2013-evolution-3a51f7793e0a7df908768056da6e60a8e0ae9e51.tar gsoc2013-evolution-3a51f7793e0a7df908768056da6e60a8e0ae9e51.tar.gz gsoc2013-evolution-3a51f7793e0a7df908768056da6e60a8e0ae9e51.tar.bz2 gsoc2013-evolution-3a51f7793e0a7df908768056da6e60a8e0ae9e51.tar.lz gsoc2013-evolution-3a51f7793e0a7df908768056da6e60a8e0ae9e51.tar.xz gsoc2013-evolution-3a51f7793e0a7df908768056da6e60a8e0ae9e51.tar.zst gsoc2013-evolution-3a51f7793e0a7df908768056da6e60a8e0ae9e51.zip |
Replace `--with-x-mailer' with a more generic `--with-sub-version'.
The value you provide is now also displayed in the shell title bar.
And while I was at it, I changed the title bar so that it displays the
name of the folder first (instead of "Evolution - Inbox" it says
"Inbox - Evolution 0.8 [yaddayadda]").
svn path=/trunk/; revision=7585
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/configure.in b/configure.in index 278a5ace25..e3af996363 100644 --- a/configure.in +++ b/configure.in @@ -613,14 +613,11 @@ else esac fi - -AC_ARG_WITH(x-mailer, [ --with-x-mailer=VERSION Sub-version string for X-Mailer header]) -if test "${with_x_mailer:-no}" = "no"; then - with_x_mailer="$VERSION" -else - with_x_mailer="$VERSION/$with_x_mailer" -fi -AC_DEFINE_UNQUOTED(XMAILER_VERSION, "$with_x_mailer") +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") dnl ****************************** dnl Makefiles |