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
This commit is contained in:
committed by
Rodney Dawes
parent
4870933205
commit
98204f8997
@ -1,3 +1,7 @@
|
||||
2003-05-15 Rodney Dawes <dobey@ximian.com>
|
||||
|
||||
* configure.in: Check for libgcc stuff to make solaris happy
|
||||
|
||||
2003-04-30 Ettore Perazzoli <ettore@ximian.com>
|
||||
|
||||
* configure.in: Bump version number to 1.3.3.99.
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
2003-05-15 Rodney Dawes <dobey@ximian.com>
|
||||
|
||||
* gui/component/Makefile.am: libgcc fix for Solaris __eprintf issue
|
||||
|
||||
2003-05-15 Chris Toshok <toshok@ximian.com>
|
||||
|
||||
* gui/component/addressbook.c (book_open_cb): backing out a tiny
|
||||
|
||||
@ -59,7 +59,8 @@ libevolution_addressbook_la_LIBADD = \
|
||||
$(top_builddir)/widgets/misc/libemiscwidgets.la \
|
||||
$(top_builddir)/addressbook/gui/merging/libecardmerging.la \
|
||||
$(top_builddir)/widgets/menus/libmenus.la \
|
||||
$(EVOLUTION_ADDRESSBOOK_LIBS) $(LDAP_LIBS)
|
||||
$(EVOLUTION_ADDRESSBOOK_LIBS) $(LDAP_LIBS) \
|
||||
$(LIBGCC_A_FILENAME)
|
||||
|
||||
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user