comparison configure.ac @ 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 bd9704417d49
children 5745edd5b769
comparison
equal deleted inserted replaced
202:5cecc214afc9 203:45acc5727493
116 AC_DEFINE_UNQUOTED(DEF_MAIL_USER, "${with_user}", [The mail user]) 116 AC_DEFINE_UNQUOTED(DEF_MAIL_USER, "${with_user}", [The mail user])
117 AC_SUBST(with_user) 117 AC_SUBST(with_user)
118 AC_DEFINE_UNQUOTED(DEF_MAIL_GROUP, "${with_group}", [The mail group]) 118 AC_DEFINE_UNQUOTED(DEF_MAIL_GROUP, "${with_group}", [The mail group])
119 AC_SUBST(with_group) 119 AC_SUBST(with_group)
120 120
121 dnl link glib statically?
122 AC_ARG_WITH(glib_static,
123 [ --with-glib-static=path link glib statically (path mandatory!)],
124 )
125 if test "x$with_glib_static" != 'x'; then
126 GLIB_LIBS=$with_glib_static
127 AC_SUBST(GLIB_LIBS)
128 fi
129
130 dnl optional features 121 dnl optional features
131 MD5_LIBS='' 122 MD5_LIBS=''
132 BASE64_LIBS='' 123 BASE64_LIBS=''
133 124
134 dnl smtp server support (default is use it) 125 dnl smtp server support (default is use it)