[evolution] Bug 588277 – Unnecessary special-purpose configure flag



commit 3bd46ea849351345825abbe6412f39e0e625c6c8
Author: Matthew Barnes <mbarnes redhat com>
Date:   Mon Jul 13 14:48:06 2009 -0400

    Bug 588277 â?? Unnecessary special-purpose configure flag

 configure.ac             |   16 ++--------------
 e-util/Makefile.am       |    1 -
 widgets/misc/Makefile.am |    4 +---
 3 files changed, 3 insertions(+), 18 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 770bcfa..254ee9f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -242,18 +242,8 @@ dnl ******************************
 dnl iconv checking
 dnl ******************************
 have_iconv=no
-AC_ARG_WITH([libiconv],
-	AS_HELP_STRING([--with-libiconv=PATH],
-	[Prefix where libiconv is installed]))
-if test -d "$withval"; then
-	ICONV_CFLAGS="-I$withval/include"
-	ICONV_LIBS="-L$withval/lib"
-fi
-
-save_CFLAGS="$CFLAGS"
 save_LIBS="$LIBS"
-CFLAGS="$CFLAGS $ICONV_CFLAGS"
-LIBS="$LIBS $ICONV_LIBS -liconv"
+LIBS="$LIBS -liconv"
 AC_CACHE_CHECK([for iconv in -liconv], [ac_cv_libiconv],
 	AC_LINK_IFELSE([AC_LANG_PROGRAM(
 	[[
@@ -267,7 +257,7 @@ AC_CACHE_CHECK([for iconv in -liconv], [ac_cv_libiconv],
 	)],[ac_cv_libiconv=yes],[ac_cv_libiconv=no]))
 
 if test $ac_cv_libiconv = yes; then
-        ICONV_LIBS="$ICONV_LIBS -liconv"
+        ICONV_LIBS="-liconv"
 	if test $os_win32 = yes; then
 		# Don't pointlessly auto-export the global symbols
 		# from a potentially static libiconv.a
@@ -275,7 +265,6 @@ if test $ac_cv_libiconv = yes; then
 	fi
         have_iconv=yes
 else
-        CFLAGS="$save_CFLAGS"
         LIBS="$save_LIBS"
         AC_CHECK_FUNC(iconv, have_iconv=yes, have_iconv=no)
 fi
@@ -321,7 +310,6 @@ fi
 if test "$have_iconv" = no; then
         AC_MSG_ERROR([You need to install a working iconv implementation, such as ftp://ftp.gnu.org/pub/gnu/libiconv])
 fi
-AC_SUBST(ICONV_CFLAGS)
 AC_SUBST(ICONV_LIBS)
 
 CFLAGS="$CFLAGS -I$srcdir"
diff --git a/e-util/Makefile.am b/e-util/Makefile.am
index f85644b..d723e3b 100644
--- a/e-util/Makefile.am
+++ b/e-util/Makefile.am
@@ -34,7 +34,6 @@ AM_CPPFLAGS =								\
 	-DSEARCH_RULE_DIR=\"$(ruledir)\"				\
 	-DG_LOG_DOMAIN=\"e-utils\"					\
 	$(GNOME_PILOT_CFLAGS)						\
-	$(ICONV_CFLAGS)                        				\
 	$(E_UTIL_CFLAGS)
 
 privsolib_LTLIBRARIES = libeutil.la libeconduit.la
diff --git a/widgets/misc/Makefile.am b/widgets/misc/Makefile.am
index 303efa8..d6689ef 100644
--- a/widgets/misc/Makefile.am
+++ b/widgets/misc/Makefile.am
@@ -10,9 +10,7 @@ AM_CPPFLAGS =								\
 	-DEVOLUTION_GLADEDIR=\""$(gladedir)"\"				\
 	-DG_LOG_DOMAIN=__FILE__						\
 	$(EVOLUTION_MAIL_CFLAGS)					\
-	$(GNOME_PLATFORM_CFLAGS)					\
-	$(ICONV_CFLAGS)
-
+	$(GNOME_PLATFORM_CFLAGS)
 
 privsolib_LTLIBRARIES =		\
 	libemiscwidgets.la	\



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]