Updated GC patch, bug 171791

This commit is contained in:
Denis Leroy 2006-01-17 00:40:50 +00:00
parent 2ea9654edd
commit b1b4c5bb2a
2 changed files with 6 additions and 21 deletions

View File

@ -1,39 +1,21 @@
diff -Nur inkscape-0.42-orig/configure inkscape-0.42/configure
--- inkscape-0.42-orig/configure 2005-07-25 07:25:35.000000000 +0200
+++ inkscape-0.42/configure 2005-08-18 23:55:52.000000000 +0200
@@ -22931,7 +22931,7 @@
# desired function name. They're all in libgc.
# The "break" will exit from the top level
# AC_CHECK_HEADERS.
- gc_libs=""
+ gc_libs="-lpthread -ldl"
echo "$as_me:$LINENO: checking for GC_init in -lgc" >&5
echo $ECHO_N "checking for GC_init in -lgc... $ECHO_C" >&6
if test "${ac_cv_lib_gc_GC_init+set}" = set; then
@@ -23003,7 +23003,7 @@
gc_ok=no
fi
- gc_libs="-lpthread"
+ gc_libs="-lpthread -ldl"
+ gc_libs=""
echo "$as_me:$LINENO: checking for GC_malloc in -lgc" >&5
echo $ECHO_N "checking for GC_malloc in -lgc... $ECHO_C" >&6
if test "${ac_cv_lib_gc_GC_malloc+set}" = set; then
@@ -23075,7 +23075,7 @@
gc_ok=no
fi
- gc_libs="$lt_cv_dlopen_libs"
+ gc_libs="-lpthread -ldl"
echo "$as_me:$LINENO: checking for GC_realloc in -lgc" >&5
echo $ECHO_N "checking for GC_realloc in -lgc... $ECHO_C" >&6
if test "${ac_cv_lib_gc_GC_realloc+set}" = set; then
@@ -23147,7 +23147,7 @@
gc_ok=no
fi
- gc_libs="-lpthread $lt_cv_dlopen_libs"
+ gc_libs="-lpthread -ldl"
+ gc_libs="$lt_cv_dlopen_libs"
echo "$as_me:$LINENO: checking for GC_free in -lgc" >&5
echo $ECHO_N "checking for GC_free in -lgc... $ECHO_C" >&6
if test "${ac_cv_lib_gc_GC_free+set}" = set; then

View File

@ -1,6 +1,6 @@
Name: inkscape
Version: 0.43
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Vector-based drawing program using SVG
Group: Applications/Productivity
@ -106,6 +106,9 @@ update-desktop-database %{_datadir}/applications > /dev/null 2>&1 || :
%changelog
* Mon Jan 16 2006 Denis Leroy <denis@poolshark.org> - 0.43-2
- Updated GC patch, bug 171791
* Sat Dec 17 2005 Denis Leroy <denis@poolshark.org> - 0.43-1
- Update to 0.43
- Added 2 patches to fix g++ 4.1 compilation issues