| Summary: | Patch to allow compile with LDFLAGS="-Wl,--as-needed" | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | David Philippi <david> |
| Component: | Portability-Compilation | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | CC: | rdieter |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 0.9.0 | |
| Sentry Crash Report: | |||
| Attachments: | The actual patch | ||
|
Description
David Philippi
2006-09-30 22:51:23 UTC
Created attachment 17974 [details]
The actual patch
Doesn't ./configure --enable-new-ldflags work for this? SVN commit 591098 by cgilles: digikam from trunk : fix broken compilation under Gentoo. BUG: 134924 M +4 -4 Makefile.am --- trunk/extragear/graphics/digikam/showfoto/Makefile.am #591097:591098 @@ -22,9 +22,7 @@ showfoto_SOURCES = main.cpp showfoto.cpp -showfoto_LDADD = $(LIB_QT) $(LIB_KDECORE) $(LIB_KDEUI) $(LIB_KUTILS) \ - $(LIB_KFILE) $(LIB_KPARTS) $(LIBJPEG) $(LIB_EXIV2) \ - $(top_builddir)/digikam/showfoto/setup/libsetup.la \ +showfoto_LDADD = $(top_builddir)/digikam/showfoto/setup/libsetup.la \ $(top_builddir)/digikam/libs/widgets/libwidgets.la \ $(top_builddir)/digikam/libs/dialogs/libdialog.la \ $(top_builddir)/digikam/libs/imageproperties/libimagepropertiesshowfoto.la \ @@ -33,7 +31,9 @@ $(top_builddir)/digikam/utilities/imageeditor/editor/libdimgeditor.la \ $(top_builddir)/digikam/utilities/imageeditor/editor/libshowfoto.la \ $(top_builddir)/digikam/utilities/splashscreen/libsplashscreen.la \ - $(top_builddir)/digikam/libs/threadimageio/libthreadimageio.la + $(top_builddir)/digikam/libs/threadimageio/libthreadimageio.la \ + $(LIB_QT) $(LIB_KDECORE) $(LIB_KDEUI) $(LIB_KUTILS) \ + $(LIB_KFILE) $(LIB_KPARTS) $(LIBJPEG) $(LIB_EXIV2) showfoto_LDFLAGS = $(KDE_RPATH) $(all_libraries) |