Fix several cases of forgetting to include libstdc++ in the libs. This allows a successful build of Haiku on gcc4 Haiku, though it's presently unclear to me why this didn't prevent linking on any other platform (gcc2 haiku, and gcc2/4 cross compilers from FBSD had no issues here).

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29957 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent 2009-04-05 22:33:53 +00:00
parent f57313518e
commit 0f617d4476
9 changed files with 9 additions and 9 deletions

View File

@ -25,7 +25,7 @@ Addon SMTP :
smtp.cpp
md5c.c ;
LinkAgainst SMTP : be libmail.so $(TARGET_NETWORK_LIBS) ;
LinkAgainst SMTP : be libmail.so $(TARGET_NETWORK_LIBS) $(TARGET_LIBSTDC++) ;
if $(USE_SSL) {
LinkAgainst SMTP : $(sslDir)/lib/libssl.so $(sslDir)/lib/libcrypto.so ;

View File

@ -10,7 +10,7 @@ Addon avi_reader :
avi_reader.cpp
:
libopendml.a
be libmedia.so
be libmedia.so $(TARGET_LIBSTDC++)
;
SubInclude HAIKU_TOP src add-ons media plugins avi_reader libOpenDML ;

View File

@ -92,7 +92,7 @@ Translator JPEGTranslator :
exif_parser.cpp
JPEGTranslator.cpp
: be translation libjpeg.a
: be translation libjpeg.a $(TARGET_LIBSTDC++)
: true
;

View File

@ -297,7 +297,7 @@ Application Icon-O-Matic :
MainWindow.cpp
Util.cpp
: be tracker translation libshared.a libagg.a libexpat.a
: be tracker translation libshared.a libagg.a libexpat.a $(TARGET_LIBSTDC++)
: Icon-O-Matic.rdef
;

View File

@ -14,5 +14,5 @@ Application Installer :
InstallerWindow.cpp
PackageViews.cpp
PartitionMenuItem.cpp
: be tracker translation
: be tracker translation $(TARGET_LIBSTDC++)
: Installer.rdef ;

View File

@ -93,7 +93,7 @@ SharedLibrary libtracker.so :
VolumeWindow.cpp
WidgetAttributeText.cpp
: be translation $(vector_icon_libs)
: be translation $(vector_icon_libs) $(TARGET_LIBSTDC++)
;

View File

@ -22,7 +22,7 @@ Preference Appearance :
#FontMenu.cpp
#MenuView.cpp
: be
: be $(TARGET_LIBSTDC++)
: Appearance.rdef
;

View File

@ -13,6 +13,6 @@ Preference Keymap :
KeymapMessageFilter.cpp
KeymapWindow.cpp
: be tracker
: be tracker $(TARGET_LIBSTDC++)
: Keymap.rdef
;

View File

@ -63,7 +63,7 @@ Server app_server :
:
libtranslation.so libbe.so
libasdrawing.a libpainter.a libagg.a libfreetype.so
libtextencoding.so libshared.a
libtextencoding.so libshared.a $(TARGET_LIBSTDC++)
: app_server.rdef
;