masqmail

changeset 203:45acc5727493

removed --with-glib-static configure option linking glib statically is interesting if no other program uses it on today's systems glib is widely used if one cares on linking statically, he can link everything statically the special case for glib will not get special care anymore
author meillo@marmaro.de
date Fri, 16 Jul 2010 14:48:17 +0200
parents 5cecc214afc9
children 5745edd5b769
files INSTALL configure configure.ac
diffstat 3 files changed, 0 insertions(+), 27 deletions(-) [+]
line diff
     1.1 --- a/INSTALL	Fri Jul 16 14:43:55 2010 +0200
     1.2 +++ b/INSTALL	Fri Jul 16 14:48:17 2010 +0200
     1.3 @@ -97,11 +97,6 @@
     1.4  enabled. Only makes sense if your resources are limited and you have
     1.5  libcrypto installed. Untested.
     1.6  
     1.7 ---with-glib-static=PATH
     1.8 -links with glib statically. This makes the binary larger but if
     1.9 -masqmail is the only binary using glib, you save some space in total,
    1.10 -because you do not need the shared glib library installed.
    1.11 -
    1.12  
    1.13  --disable-debug
    1.14  disables debugging; setting it on the command line or in the
     2.1 --- a/configure	Fri Jul 16 14:43:55 2010 +0200
     2.2 +++ b/configure	Fri Jul 16 14:48:17 2010 +0200
     2.3 @@ -704,7 +704,6 @@
     2.4  with_user
     2.5  with_group
     2.6  enable_debug
     2.7 -with_glib_static
     2.8  enable_smtp_server
     2.9  enable_auth
    2.10  enable_maildir
    2.11 @@ -1358,7 +1357,6 @@
    2.12    --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
    2.13    --with-user=USER        set user mail
    2.14    --with-group=GROUP      set group trusted
    2.15 -  --with-glib-static=path            link glib statically (path mandatory!)
    2.16    --with-libcrypto        use libcrypto
    2.17    --with-liblockfile      use liblock (for Debian)
    2.18    --with-logdir=DIR       set log directory /var/log/masqmail
    2.19 @@ -5150,17 +5148,6 @@
    2.20  
    2.21  
    2.22  
    2.23 -
    2.24 -# Check whether --with-glib_static was given.
    2.25 -if test "${with_glib_static+set}" = set; then :
    2.26 -  withval=$with_glib_static;
    2.27 -fi
    2.28 -
    2.29 -if test "x$with_glib_static" != 'x'; then
    2.30 -	GLIB_LIBS=$with_glib_static
    2.31 -
    2.32 -fi
    2.33 -
    2.34  MD5_LIBS=''
    2.35  BASE64_LIBS=''
    2.36  
     3.1 --- a/configure.ac	Fri Jul 16 14:43:55 2010 +0200
     3.2 +++ b/configure.ac	Fri Jul 16 14:48:17 2010 +0200
     3.3 @@ -118,15 +118,6 @@
     3.4  AC_DEFINE_UNQUOTED(DEF_MAIL_GROUP, "${with_group}", [The mail group])
     3.5  AC_SUBST(with_group)
     3.6  
     3.7 -dnl link glib statically?
     3.8 -AC_ARG_WITH(glib_static,
     3.9 -	[  --with-glib-static=path            link glib statically (path mandatory!)],
    3.10 -	)
    3.11 -if test "x$with_glib_static" != 'x'; then
    3.12 -	GLIB_LIBS=$with_glib_static
    3.13 -	AC_SUBST(GLIB_LIBS)
    3.14 -fi
    3.15 -
    3.16  dnl optional features
    3.17  MD5_LIBS=''
    3.18  BASE64_LIBS=''