Check what the _POSIX_C_SOURCE is defined to. >From qfiledialog.cpp #if defined(Q_OS_SOLARIS) && (_POSIX_C_SOURCE - 0 < 199506L) tmpPw = getpwnam_r(userName.toLocal8Bit().constData(), &pw, buf, bufSize); #else err = getpwnam_r(userName.toLocal8Bit().constData(), &pw, buf, bufSize, &tmpPw); #endif it is clear that the older version of getpwnam_r() is called.
Konstantin 2012/9/17 Geoffrey Gowey <gjgo...@gjgowey.com>: > Hello, > > Just an update. I fixed the originally reported problem by changing: > #define QT_SOCKLEN_T int > to > #define QT_SOCKLEN_T unsigned > > in mkspecs/solaris-cc/qplatformdefs.h > > However, now I've run head long in to a new compile error: > /opt/solarisstudio12.3/bin/CC -c -D_REENTRANT -D_PTHREADS > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -D_REENTRANT > -D_POSIX_PTHREAD_SEMANTICS -D_PTHREADS -I/usr/include/gtk-2.0 > -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo > -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 > -I/usr/include/freetype2 -I/usr/include/libpng12 -O2 -mt > -I/usr/include/freetype2 -KPIC -DQT_SHARED -DQT_BUILD_GUI_LIB > -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS > -DQT3_SUPPORT -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_NO_OPENTYPE > -DQT_NO_STYLE_MAC -DQT_NO_STYLE_WINDOWSVISTA -DQT_NO_STYLE_WINDOWSXP > -DQT_NO_STYLE_WINDOWSCE -DQT_NO_STYLE_WINDOWSMOBILE -DQT_NO_STYLE_S60 > -DQ_INTERNAL_QAPP_SRC -DQT_NO_DEBUG -DQT_CORE_LIB -D_LARGEFILE64_SOURCE > -D_LARGEFILE_SOURCE -I../../mkspecs/solaris-cc -I. -I../../include/QtCore > -I../../include -I../../include/QtGui -I.rcc/release-shared > -I../3rdparty/xorg -Iimage -I/usr/include/freetype2 > -I../3rdparty/harfbuzz/src -Idialogs -I.moc/release-shared > -I/usr/X11/include -I.uic/release-shared -I/usr/sfw/include -o > .obj/release-shared/qprintdialog_unix.o dialogs/qprintdialog_unix.cpp > /opt/solarisstudio12.3/bin/CC -c -D_REENTRANT -D_PTHREADS > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -D_REENTRANT > -D_POSIX_PTHREAD_SEMANTICS -D_PTHREADS -I/usr/include/gtk-2.0 > -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo > -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 > -I/usr/include/freetype2 -I/usr/include/libpng12 -O2 -mt > -I/usr/include/freetype2 -KPIC -DQT_SHARED -DQT_BUILD_GUI_LIB > -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS > -DQT3_SUPPORT -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_NO_OPENTYPE > -DQT_NO_STYLE_MAC -DQT_NO_STYLE_WINDOWSVISTA -DQT_NO_STYLE_WINDOWSXP > -DQT_NO_STYLE_WINDOWSCE -DQT_NO_STYLE_WINDOWSMOBILE -DQT_NO_STYLE_S60 > -DQ_INTERNAL_QAPP_SRC -DQT_NO_DEBUG -DQT_CORE_LIB -D_LARGEFILE64_SOURCE > -D_LARGEFILE_SOURCE -I../../mkspecs/solaris-cc -I. -I../../include/QtCore > -I../../include -I../../include/QtGui -I.rcc/release-shared > -I../3rdparty/xorg -Iimage -I/usr/include/freetype2 > -I../3rdparty/harfbuzz/src -Idialogs -I.moc/release-shared > -I/usr/X11/include -I.uic/release-shared -I/usr/sfw/include -o > .obj/release-shared/qfiledialog.o dialogs/qfiledialog.cpp > /opt/solarisstudio12.3/bin/CC -c -D_REENTRANT -D_PTHREADS > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -D_REENTRANT > -D_POSIX_PTHREAD_SEMANTICS -D_PTHREADS -I/usr/include/gtk-2.0 > -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo > -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 > -I/usr/include/freetype2 -I/usr/include/libpng12 -O2 -mt > -I/usr/include/freetype2 -KPIC -DQT_SHARED -DQT_BUILD_GUI_LIB > -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS > -DQT3_SUPPORT -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_NO_OPENTYPE > -DQT_NO_STYLE_MAC -DQT_NO_STYLE_WINDOWSVISTA -DQT_NO_STYLE_WINDOWSXP > -DQT_NO_STYLE_WINDOWSCE -DQT_NO_STYLE_WINDOWSMOBILE -DQT_NO_STYLE_S60 > -DQ_INTERNAL_QAPP_SRC -DQT_NO_DEBUG -DQT_CORE_LIB -D_LARGEFILE64_SOURCE > -D_LARGEFILE_SOURCE -I../../mkspecs/solaris-cc -I. -I../../include/QtCore > -I../../include -I../../include/QtGui -I.rcc/release-shared > -I../3rdparty/xorg -Iimage -I/usr/include/freetype2 > -I../3rdparty/harfbuzz/src -Idialogs -I.moc/release-shared > -I/usr/X11/include -I.uic/release-shared -I/usr/sfw/include -o > .obj/release-shared/qabstractitemview.o itemviews/qabstractitemview.cpp > /opt/solarisstudio12.3/bin/CC -c -D_REENTRANT -D_PTHREADS > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -D_REENTRANT > -D_POSIX_PTHREAD_SEMANTICS -D_PTHREADS -I/usr/include/gtk-2.0 > -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo > -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 > -I/usr/include/freetype2 -I/usr/include/libpng12 -O2 -mt > -I/usr/include/freetype2 -KPIC -DQT_SHARED -DQT_BUILD_GUI_LIB > -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS > -DQT3_SUPPORT -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_NO_OPENTYPE > -DQT_NO_STYLE_MAC -DQT_NO_STYLE_WINDOWSVISTA -DQT_NO_STYLE_WINDOWSXP > -DQT_NO_STYLE_WINDOWSCE -DQT_NO_STYLE_WINDOWSMOBILE -DQT_NO_STYLE_S60 > -DQ_INTERNAL_QAPP_SRC -DQT_NO_DEBUG -DQT_CORE_LIB -D_LARGEFILE64_SOURCE > -D_LARGEFILE_SOURCE -I../../mkspecs/solaris-cc -I. -I../../include/QtCore > -I../../include -I../../include/QtGui -I.rcc/release-shared > -I../3rdparty/xorg -Iimage -I/usr/include/freetype2 > -I../3rdparty/harfbuzz/src -Idialogs -I.moc/release-shared > -I/usr/X11/include -I.uic/release-shared -I/usr/sfw/include -o > .obj/release-shared/qheaderview.o itemviews/qheaderview.cpp > /opt/solarisstudio12.3/bin/CC -c -D_REENTRANT -D_PTHREADS > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -D_REENTRANT > -D_POSIX_PTHREAD_SEMANTICS -D_PTHREADS -I/usr/include/gtk-2.0 > -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo > -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 > -I/usr/include/freetype2 -I/usr/include/libpng12 -O2 -mt > -I/usr/include/freetype2 -KPIC -DQT_SHARED -DQT_BUILD_GUI_LIB > -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS > -DQT3_SUPPORT -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_NO_OPENTYPE > -DQT_NO_STYLE_MAC -DQT_NO_STYLE_WINDOWSVISTA -DQT_NO_STYLE_WINDOWSXP > -DQT_NO_STYLE_WINDOWSCE -DQT_NO_STYLE_WINDOWSMOBILE -DQT_NO_STYLE_S60 > -DQ_INTERNAL_QAPP_SRC -DQT_NO_DEBUG -DQT_CORE_LIB -D_LARGEFILE64_SOURCE > -D_LARGEFILE_SOURCE -I../../mkspecs/solaris-cc -I. -I../../include/QtCore > -I../../include -I../../include/QtGui -I.rcc/release-shared > -I../3rdparty/xorg -Iimage -I/usr/include/freetype2 > -I../3rdparty/harfbuzz/src -Idialogs -I.moc/release-shared > -I/usr/X11/include -I.uic/release-shared -I/usr/sfw/include -o > .obj/release-shared/qidentityproxymodel.o itemviews/qidentityproxymodel.cpp > /home/gjgowey/qt/bin/moc -DQT_SHARED -DQT_BUILD_GUI_LIB > -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS > -DQT3_SUPPORT -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_NO_OPENTYPE > -DQT_NO_STYLE_MAC -DQT_NO_STYLE_WINDOWSVISTA -DQT_NO_STYLE_WINDOWSXP > -DQT_NO_STYLE_WINDOWSCE -DQT_NO_STYLE_WINDOWSMOBILE -DQT_NO_STYLE_S60 > -DQ_INTERNAL_QAPP_SRC -DQT_NO_DEBUG -DQT_CORE_LIB -D_LARGEFILE64_SOURCE > -D_LARGEFILE_SOURCE -I../../mkspecs/solaris-cc -I. -I../../include/QtCore > -I../../include -I../../include/QtGui -I.rcc/release-shared > -I../3rdparty/xorg -Iimage -I/usr/include/freetype2 > -I../3rdparty/harfbuzz/src -Idialogs -I.moc/release-shared > -I/usr/X11/include -I.uic/release-shared -I/usr/sfw/include > itemviews/qtableview.cpp -o .moc/release-shared/qtableview.moc > /opt/solarisstudio12.3/bin/CC -c -D_REENTRANT -D_PTHREADS > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -D_REENTRANT > -D_POSIX_PTHREAD_SEMANTICS -D_PTHREADS -I/usr/include/gtk-2.0 > -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo > -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 > -I/usr/include/freetype2 -I/usr/include/libpng12 -O2 -mt > -I/usr/include/freetype2 -KPIC -DQT_SHARED -DQT_BUILD_GUI_LIB > -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS > -DQT3_SUPPORT -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_NO_OPENTYPE > -DQT_NO_STYLE_MAC -DQT_NO_STYLE_WINDOWSVISTA -DQT_NO_STYLE_WINDOWSXP > -DQT_NO_STYLE_WINDOWSCE -DQT_NO_STYLE_WINDOWSMOBILE -DQT_NO_STYLE_S60 > -DQ_INTERNAL_QAPP_SRC -DQT_NO_DEBUG -DQT_CORE_LIB -D_LARGEFILE64_SOURCE > -D_LARGEFILE_SOURCE -I../../mkspecs/solaris-cc -I. -I../../include/QtCore > -I../../include -I../../include/QtGui -I.rcc/release-shared > -I../3rdparty/xorg -Iimage -I/usr/include/freetype2 > -I../3rdparty/harfbuzz/src -Idialogs -I.moc/release-shared > -I/usr/X11/include -I.uic/release-shared -I/usr/sfw/include -o > .obj/release-shared/qtreeview.o itemviews/qtreeview.cpp > /opt/solarisstudio12.3/bin/CC -c -D_REENTRANT -D_PTHREADS > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -D_REENTRANT > -D_POSIX_PTHREAD_SEMANTICS -D_PTHREADS -I/usr/include/gtk-2.0 > -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo > -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 > -I/usr/include/freetype2 -I/usr/include/libpng12 -O2 -mt > -I/usr/include/freetype2 -KPIC -DQT_SHARED -DQT_BUILD_GUI_LIB > -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS > -DQT3_SUPPORT -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_NO_OPENTYPE > -DQT_NO_STYLE_MAC -DQT_NO_STYLE_WINDOWSVISTA -DQT_NO_STYLE_WINDOWSXP > -DQT_NO_STYLE_WINDOWSCE -DQT_NO_STYLE_WINDOWSMOBILE -DQT_NO_STYLE_S60 > -DQ_INTERNAL_QAPP_SRC -DQT_NO_DEBUG -DQT_CORE_LIB -D_LARGEFILE64_SOURCE > -D_LARGEFILE_SOURCE -I../../mkspecs/solaris-cc -I. -I../../include/QtCore > -I../../include -I../../include/QtGui -I.rcc/release-shared > -I../3rdparty/xorg -Iimage -I/usr/include/freetype2 > -I../3rdparty/harfbuzz/src -Idialogs -I.moc/release-shared > -I/usr/X11/include -I.uic/release-shared -I/usr/sfw/include -o > .obj/release-shared/qitemdelegate.o itemviews/qitemdelegate.cpp > /opt/solarisstudio12.3/bin/CC -c -D_REENTRANT -D_PTHREADS > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -D_REENTRANT > -D_POSIX_PTHREAD_SEMANTICS -D_PTHREADS -I/usr/include/gtk-2.0 > -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo > -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 > -I/usr/include/freetype2 -I/usr/include/libpng12 -O2 -mt > -I/usr/include/freetype2 -KPIC -DQT_SHARED -DQT_BUILD_GUI_LIB > -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS > -DQT3_SUPPORT -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_NO_OPENTYPE > -DQT_NO_STYLE_MAC -DQT_NO_STYLE_WINDOWSVISTA -DQT_NO_STYLE_WINDOWSXP > -DQT_NO_STYLE_WINDOWSCE -DQT_NO_STYLE_WINDOWSMOBILE -DQT_NO_STYLE_S60 > -DQ_INTERNAL_QAPP_SRC -DQT_NO_DEBUG -DQT_CORE_LIB -D_LARGEFILE64_SOURCE > -D_LARGEFILE_SOURCE -I../../mkspecs/solaris-cc -I. -I../../include/QtCore > -I../../include -I../../include/QtGui -I.rcc/release-shared > -I../3rdparty/xorg -Iimage -I/usr/include/freetype2 > -I../3rdparty/harfbuzz/src -Idialogs -I.moc/release-shared > -I/usr/X11/include -I.uic/release-shared -I/usr/sfw/include -o > .obj/release-shared/qitemselectionmodel.o itemviews/qitemselectionmodel.cpp > "itemviews/qidentityproxymodel.cpp", line 412: Warning: parent hides > QObjectData::parent. > "itemviews/qidentityproxymodel.cpp", line 427: Warning: parent hides > QObjectData::parent. > "itemviews/qidentityproxymodel.cpp", line 434: Warning: parent hides > QObjectData::parent. > "itemviews/qidentityproxymodel.cpp", line 457: Warning: parent hides > QObjectData::parent. > "itemviews/qidentityproxymodel.cpp", line 528: Warning: parent hides > QObjectData::parent. > "itemviews/qidentityproxymodel.cpp", line 543: Warning: parent hides > QObjectData::parent. > "itemviews/qidentityproxymodel.cpp", line 550: Warning: parent hides > QObjectData::parent. > "itemviews/qidentityproxymodel.cpp", line 573: Warning: parent hides > QObjectData::parent. > 8 Warning(s) detected. > /opt/solarisstudio12.3/bin/CC -c -D_REENTRANT -D_PTHREADS > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -D_REENTRANT > -D_POSIX_PTHREAD_SEMANTICS -D_PTHREADS -I/usr/include/gtk-2.0 > -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo > -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 > -I/usr/include/freetype2 -I/usr/include/libpng12 -O2 -mt > -I/usr/include/freetype2 -KPIC -DQT_SHARED -DQT_BUILD_GUI_LIB > -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS > -DQT3_SUPPORT -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_NO_OPENTYPE > -DQT_NO_STYLE_MAC -DQT_NO_STYLE_WINDOWSVISTA -DQT_NO_STYLE_WINDOWSXP > -DQT_NO_STYLE_WINDOWSCE -DQT_NO_STYLE_WINDOWSMOBILE -DQT_NO_STYLE_S60 > -DQ_INTERNAL_QAPP_SRC -DQT_NO_DEBUG -DQT_CORE_LIB -D_LARGEFILE64_SOURCE > -D_LARGEFILE_SOURCE -I../../mkspecs/solaris-cc -I. -I../../include/QtCore > -I../../include -I../../include/QtGui -I.rcc/release-shared > -I../3rdparty/xorg -Iimage -I/usr/include/freetype2 > -I../3rdparty/harfbuzz/src -Idialogs -I.moc/release-shared > -I/usr/X11/include -I.uic/release-shared -I/usr/sfw/include -o > .obj/release-shared/qdirmodel.o itemviews/qdirmodel.cpp > "itemviews/qitemselectionmodel.cpp", line 553: Warning: model hides > QItemSelectionModelPrivate::model. > "itemviews/qitemselectionmodel.cpp", line 591: Warning: parent hides > QObjectData::parent. > "itemviews/qitemselectionmodel.cpp", line 601: Warning: parent hides > QObjectData::parent. > "itemviews/qitemselectionmodel.cpp", line 615: Warning: parent hides > QObjectData::parent. > "itemviews/qitemselectionmodel.cpp", line 686: Warning: parent hides > QObjectData::parent. > "itemviews/qitemselectionmodel.cpp", line 719: Warning: parent hides > QObjectData::parent. > "itemviews/qitemselectionmodel.cpp", line 748: Warning: parent hides > QObjectData::parent. > "itemviews/qitemselectionmodel.cpp", line 788: Warning: parent hides > QObjectData::parent. > 8 Warning(s) detected. > "../../include/QtGui/private/../../../src/gui/text/qtextengine_p.h", line > 427: Warning: Identifier expected instead of "}". > 1 Warning(s) detected. > "dialogs/qfilesystemmodel_p.h", line 243: Warning: parent hides > QObjectData::parent. > "dialogs/qfiledialog.cpp", line 417: Warning: data hides QWidget::data. > "dialogs/qfiledialog.cpp", line 573: Warning: actions hides > QWidgetPrivate::actions. > "dialogs/qfiledialog.cpp", line 897: Error: Too few arguments in call to > "getpwnam_r(const char*, passwd*, char*, int, passwd**)". > "dialogs/qfiledialog.cpp", line 2697: Warning: parent hides > QObjectData::parent. > "dialogs/qfiledialog.cpp", line 3136: Warning: parent hides > QObjectData::parent. > 1 Error(s) and 5 Warning(s) detected. > gmake[1]: *** [.obj/release-shared/qfiledialog.o] Error 2 > > gmake[1]: *** Waiting for unfinished jobs.... > "itemviews/qheaderview.cpp", line 1507: Warning: data hides QWidget::data. > "itemviews/qheaderview.cpp", line 1528: Warning: data hides QWidget::data. > "itemviews/qheaderview.cpp", line 1775: Warning: parent hides > QObjectData::parent. > "itemviews/qheaderview.cpp", line 2855: Warning: section hides > QHeaderViewPrivate::section. > "itemviews/qheaderview.cpp", line 2886: Warning: section hides > QHeaderViewPrivate::section. > "itemviews/qheaderview.cpp", line 2924: Warning: section hides > QHeaderViewPrivate::section. > "itemviews/qheaderview.cpp", line 3285: Warning: section hides > QHeaderViewPrivate::section. > 7 Warning(s) detected. > "itemviews/qdirmodel.cpp", line 159: Warning: parent hides > QObjectData::parent. > "itemviews/qdirmodel.cpp", line 166: Warning: parent hides > QObjectData::parent. > "itemviews/qdirmodel.cpp", line 1180: Warning: parent hides > QObjectData::parent. > "itemviews/qdirmodel.cpp", line 1198: Warning: parent hides > QObjectData::parent. > "itemviews/qdirmodel.cpp", line 1359: Warning: parent hides > QObjectData::parent. > 5 Warning(s) detected. > "itemviews/qtreeview.cpp", line 1282: Warning: bottom hides > QAbstractScrollAreaPrivate::bottom. > "itemviews/qtreeview.cpp", line 1358: Warning: current hides > QTreeViewPrivate::current. > "itemviews/qtreeview.cpp", line 1370: Warning: spanning hides > QTreeViewPrivate::spanning. > "itemviews/qtreeview.cpp", line 1371: Warning: left hides > QAbstractScrollAreaPrivate::left. > "itemviews/qtreeview.cpp", line 1372: Warning: right hides > QAbstractScrollAreaPrivate::right. > "itemviews/qtreeview.cpp", line 1471: Warning: left hides > QAbstractScrollAreaPrivate::left. > "itemviews/qtreeview.cpp", line 1471: Warning: right hides > QAbstractScrollAreaPrivate::right. > "itemviews/qtreeview.cpp", line 2866: Warning: header hides > QTreeViewPrivate::header. > "itemviews/qtreeview.cpp", line 3010: Warning: top hides > QAbstractScrollAreaPrivate::top. > "itemviews/qtreeview.cpp", line 3054: Warning: current hides > QTreeViewPrivate::current. > "itemviews/qtreeview.cpp", line 3056: Warning: top hides > QAbstractScrollAreaPrivate::top. > "itemviews/qtreeview.cpp", line 3058: Warning: bottom hides > QAbstractScrollAreaPrivate::bottom. > "itemviews/qtreeview.cpp", line 3114: Warning: parent hides > QObjectData::parent. > "itemviews/qtreeview.cpp", line 3121: Warning: parent hides > QObjectData::parent. > "itemviews/qtreeview.cpp", line 3138: Warning: current hides > QTreeViewPrivate::current. > "itemviews/qtreeview.cpp", line 3139: Warning: parent hides > QObjectData::parent. > "itemviews/qtreeview.cpp", line 3176: Warning: children hides > QObjectData::children. > "itemviews/qtreeview.cpp", line 3603: Warning: current hides > QTreeViewPrivate::current. > "itemviews/qtreeview.cpp", line 3633: Warning: top hides > QAbstractScrollAreaPrivate::top. > "itemviews/qtreeview.cpp", line 3634: Warning: bottom hides > QAbstractScrollAreaPrivate::bottom. > "itemviews/qtreeview.cpp", line 3639: Warning: left hides > QAbstractScrollAreaPrivate::left. > "itemviews/qtreeview.cpp", line 3640: Warning: right hides > QAbstractScrollAreaPrivate::right. > "itemviews/qtreeview.cpp", line 3647: Warning: parent hides > QObjectData::parent. > "itemviews/qtreeview.cpp", line 3703: Warning: parent hides > QObjectData::parent. > 24 Warning(s) detected. > "itemviews/qabstractitemview.cpp", line 3310: Warning: parent hides > QObjectData::parent. > "itemviews/qabstractitemview.cpp", line 3525: Warning: data hides > QWidget::data. > "itemviews/qabstractitemview.cpp", line 4054: Warning: parent hides > QObjectData::parent. > "itemviews/qabstractitemview.cpp", line 4090: Warning: parent hides > QObjectData::parent. > 4 Warning(s) detected. > "../3rdparty/harfbuzz/src/harfbuzz-impl.h", line 108: Warning (Anachronism): > Attempt to redefine ERR without using #undef. > "../../include/QtGui/private/../../../src/gui/text/qtextengine_p.h", line > 427: Warning: Identifier expected instead of "}". > "../../include/QtGui/private/../../../src/gui/text/qfontengine_p.h", line > 387: Warning: QFontEngineBox::boundingBox hides the virtual function > QFontEngine::boundingBox(unsigned, const QTransform&). > "../../include/QtGui/private/../../../src/gui/text/qfontengine_p.h", line > 387: Warning: QFontEngineBox::alphaMapForGlyph hides the virtual function > QFontEngine::alphaMapForGlyph(unsigned, QFixed, const QTransform&). > "../../include/QtGui/private/../../../src/gui/text/qfontengine_p.h", line > 387: Warning: QFontEngineBox::alphaMapForGlyph hides the virtual function > QFontEngine::alphaMapForGlyph(unsigned, const QTransform&). > "../../include/QtGui/private/../../../src/gui/text/qfontengine_p.h", line > 387: Warning: QFontEngineBox::alphaMapForGlyph hides the virtual function > QFontEngine::alphaMapForGlyph(unsigned, QFixed). > "../../include/QtGui/private/../../../src/gui/text/qfontengine_p.h", line > 436: Warning: QFontEngineMulti::boundingBox hides the virtual function > QFontEngine::boundingBox(unsigned, const QTransform&). > "../../include/QtGui/private/../../../src/gui/text/qfontengine_p.h", line > 436: Warning: QFontEngineMulti::alphaMapForGlyph hides the virtual function > QFontEngine::alphaMapForGlyph(unsigned, QFixed, const QTransform&). > "../../include/QtGui/private/../../../src/gui/text/qfontengine_p.h", line > 436: Warning: QFontEngineMulti::alphaMapForGlyph hides the virtual function > QFontEngine::alphaMapForGlyph(unsigned, const QTransform&). > "../../include/QtGui/private/../../../src/gui/text/qfontengine_p.h", line > 436: Warning: QFontEngineMulti::alphaMapForGlyph hides the virtual function > QFontEngine::alphaMapForGlyph(unsigned, QFixed). > "../../include/QtGui/private/../../../src/gui/painting/qpaintengine_alpha_p.h", > line 89: Warning: QAlphaPaintEngine::drawPolygon hides the virtual function > QPaintEngine::drawPolygon(const QPoint*, int, > QPaintEngine::PolygonDrawMode). > "../../include/QtGui/private/../../../src/gui/painting/qpaintengine_alpha_p.h", > line 89: Warning: QAlphaPaintEngine::drawImage hides the virtual function > QPaintEngine::drawImage(const QRectF&, const QImage&, const QRectF&, > QFlags<Qt::ImageConversionFlag>). > "../../include/QtGui/private/../../../src/gui/painting/qpdf_p.h", line 217: > Warning: QPdfBaseEngine::drawPoints hides the virtual function > QPaintEngine::drawPoints(const QPoint*, int). > "../../include/QtGui/private/../../../src/gui/painting/qpdf_p.h", line 217: > Warning: QPdfBaseEngine::drawLines hides the virtual function > QPaintEngine::drawLines(const QLine*, int). > "../../include/QtGui/private/../../../src/gui/painting/qpdf_p.h", line 217: > Warning: QPdfBaseEngine::drawRects hides the virtual function > QPaintEngine::drawRects(const QRect*, int). > "dialogs/qprintdialog_unix.cpp", line 900: Warning: printer hides > QUnixPrintWidgetPrivate::printer. > 16 Warning(s) detected. > gmake[1]: Leaving directory `/home/gjgowey/qt/src/gui' > gmake: *** [sub-gui-make_default-ordered] Error 2 > > On Sat, Sep 15, 2012 at 2:58 AM, Thiago Macieira <thiago.macie...@intel.com> > wrote: >> >> QT_SOCKLEN_T > > > > > -- > Kindest Regards, > > Geoff > ---- > To see what my availability is today or to schedule a meeting please use my > Tungle page: http://tungle.me/gjgowey > > > _______________________________________________ > Development mailing list > Development@qt-project.org > http://lists.qt-project.org/mailman/listinfo/development > _______________________________________________ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development