[evolution-patches] Patch to fix libgcc link issues for Solaris



This patch fixes the problem on Solaris of having a missing __eprintf
symbol reference, when using GCC.

-- dobey

? autom4te.cache
? autoregen.sh
? stamp-h1
? addressbook/backend/ebook/Evolution-Composer-common.c
? addressbook/backend/ebook/Evolution-Composer-skels.c
? addressbook/backend/ebook/Evolution-Composer-stubs.c
? addressbook/backend/ebook/Evolution-Composer.h
? help/C/evolution-1.4-C.omf.out
? help/C/omf_timestamp
? shell/ChangeLog.new
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/ChangeLog,v
retrieving revision 1.1196
diff -u -r1.1196 ChangeLog
--- ChangeLog	30 Apr 2003 20:11:11 -0000	1.1196
+++ ChangeLog	15 May 2003 18:18:38 -0000
@@ -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.
Index: configure.in
===================================================================
RCS file: /cvs/gnome/evolution/configure.in,v
retrieving revision 1.579
diff -u -r1.579 configure.in
--- configure.in	30 Apr 2003 20:11:11 -0000	1.579
+++ configure.in	15 May 2003 18:18:38 -0000
@@ -40,6 +40,13 @@
 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
 
Index: addressbook/ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/ChangeLog,v
retrieving revision 1.1407
diff -u -r1.1407 ChangeLog
--- addressbook/ChangeLog	14 May 2003 22:00:43 -0000	1.1407
+++ addressbook/ChangeLog	15 May 2003 18:18:42 -0000
@@ -1,3 +1,7 @@
+2003-05-15  Rodney Dawes  <dobey ximian com>
+
+	* gui/component/Makefile.am: libgcc fix for Solaris __eprintf issue
+	
 2003-05-14  Chris Toshok  <toshok ximian com>
 
 	* gui/contact-editor/e-contact-editor.c (full_addr_clicked):
Index: addressbook/gui/component/Makefile.am
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/gui/component/Makefile.am,v
retrieving revision 1.84
diff -u -r1.84 Makefile.am
--- addressbook/gui/component/Makefile.am	18 Apr 2003 17:44:14 -0000	1.84
+++ addressbook/gui/component/Makefile.am	15 May 2003 18:18:42 -0000
@@ -59,7 +59,8 @@
 	$(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)
 
 
 


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