diff options
author | Rodney Dawes <dobey@ximian.com> | 2003-05-16 23:39:16 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2003-05-16 23:39:16 +0800 |
commit | 98204f8997f7ed8ad2b02432e758cde9cd67fa5e (patch) | |
tree | f028275a858dec4da7f51c9c8d74d6479ea831cb /configure.in | |
parent | 487093320532dc68dd89e4878850a5d55d2a6cbb (diff) | |
download | gsoc2013-evolution-98204f8997f7ed8ad2b02432e758cde9cd67fa5e.tar.gz gsoc2013-evolution-98204f8997f7ed8ad2b02432e758cde9cd67fa5e.tar.zst gsoc2013-evolution-98204f8997f7ed8ad2b02432e758cde9cd67fa5e.zip |
Check for libgcc stuff to make solaris happy
2003-05-15 Rodney Dawes <dobey@ximian.com>
* configure.in: Check for libgcc stuff to make solaris happy
* gui/component/Makefile.am: libgcc fix for Solaris __eprintf issue
svn path=/trunk/; revision=21212
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index ef425e904b..ea60e83736 100644 --- a/configure.in +++ b/configure.in @@ -40,6 +40,13 @@ fi AM_CONDITIONAL(HAVE_JW, test "x$HAVE_JW" = "xyes") AC_SUBST(HAVE_JW) +if test -n "${GCC}"; then + LIBGCC_A_FILENAME=`${CC} -print-libgcc-file-name`; +else + LIBGCC_A_FILENAME=""; +fi +AC_SUBST(LIBGCC_A_FILENAME) + dnl I18N stuff AC_PROG_INTLTOOL |