# HG changeset patch # User meillo@marmaro.de # Date 1279284497 -7200 # Node ID 45acc57274939f811bad1260d9f0d772e4bed7bb # Parent 5cecc214afc954fb25cfd82df3c73f8285c1cc27 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 diff -r 5cecc214afc9 -r 45acc5727493 INSTALL --- a/INSTALL Fri Jul 16 14:43:55 2010 +0200 +++ b/INSTALL Fri Jul 16 14:48:17 2010 +0200 @@ -97,11 +97,6 @@ enabled. Only makes sense if your resources are limited and you have libcrypto installed. Untested. ---with-glib-static=PATH -links with glib statically. This makes the binary larger but if -masqmail is the only binary using glib, you save some space in total, -because you do not need the shared glib library installed. - --disable-debug disables debugging; setting it on the command line or in the diff -r 5cecc214afc9 -r 45acc5727493 configure --- a/configure Fri Jul 16 14:43:55 2010 +0200 +++ b/configure Fri Jul 16 14:48:17 2010 +0200 @@ -704,7 +704,6 @@ with_user with_group enable_debug -with_glib_static enable_smtp_server enable_auth enable_maildir @@ -1358,7 +1357,6 @@ --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 @@ -5150,17 +5148,6 @@ - -# Check whether --with-glib_static was given. -if test "${with_glib_static+set}" = set; then : - withval=$with_glib_static; -fi - -if test "x$with_glib_static" != 'x'; then - GLIB_LIBS=$with_glib_static - -fi - MD5_LIBS='' BASE64_LIBS='' diff -r 5cecc214afc9 -r 45acc5727493 configure.ac --- a/configure.ac Fri Jul 16 14:43:55 2010 +0200 +++ b/configure.ac Fri Jul 16 14:48:17 2010 +0200 @@ -118,15 +118,6 @@ AC_DEFINE_UNQUOTED(DEF_MAIL_GROUP, "${with_group}", [The mail group]) AC_SUBST(with_group) -dnl link glib statically? -AC_ARG_WITH(glib_static, - [ --with-glib-static=path link glib statically (path mandatory!)], - ) -if test "x$with_glib_static" != 'x'; then - GLIB_LIBS=$with_glib_static - AC_SUBST(GLIB_LIBS) -fi - dnl optional features MD5_LIBS='' BASE64_LIBS=''