diff options
author | Dan Winship <danw@src.gnome.org> | 2001-01-17 03:47:56 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-01-17 03:47:56 +0800 |
commit | 4363b68c1c9140c4063c786926608ad58ff52f6d (patch) | |
tree | ab62604fa80cc7fabb765528d8a4450176823c28 | |
parent | 83f1dbfe4daa588f9167daeac11ec68f611df1c2 (diff) | |
download | gsoc2013-evolution-4363b68c1c9140c4063c786926608ad58ff52f6d.tar gsoc2013-evolution-4363b68c1c9140c4063c786926608ad58ff52f6d.tar.gz gsoc2013-evolution-4363b68c1c9140c4063c786926608ad58ff52f6d.tar.bz2 gsoc2013-evolution-4363b68c1c9140c4063c786926608ad58ff52f6d.tar.lz gsoc2013-evolution-4363b68c1c9140c4063c786926608ad58ff52f6d.tar.xz gsoc2013-evolution-4363b68c1c9140c4063c786926608ad58ff52f6d.tar.zst gsoc2013-evolution-4363b68c1c9140c4063c786926608ad58ff52f6d.zip |
tweak the --with-x-mailer flag a bit
svn path=/trunk/; revision=7541
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 79bc3791d7..081d1d6714 100644 --- a/configure.in +++ b/configure.in @@ -601,9 +601,11 @@ else fi -AC_ARG_WITH(x-mailer, [ --with-x-mailer=VERSION Version string for X-Mailer header]) +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") |