I'm learning how to create RPMs. A simple tutorial has served me well, but now I'm trying to package Qt apps. rpmbuild automatically detected these dependencies:

Qt Code:
  1. rpmlib(PayloadFilesHavePrefix) <= 4.0-1
  2. rpmlib(CompressedFileNames) <= 3.0.4-1
  3. libc.so.6()(64bit)
  4. libc.so.6(GLIBC_2.2.5)(64bit)
  5. libgcc_s.so.1()(64bit)
  6. libgcc_s.so.1(GCC_3.0)(64bit)
  7. libm.so.6()(64bit)
  8. libpthread.so.0()(64bit)
  9. libpthread.so.0(GLIBC_2.2.5)(64bit)
  10. libQtCore.so.4()(64bit)
  11. libQtGui.so.4()(64bit)
  12. libstdc++.so.6()(64bit)
  13. libstdc++.so.6(CXXABI_1.3)(64bit)
  14. libstdc++.so.6(GLIBCXX_3.4)(64bit)
  15. libstdc++.so.6(GLIBCXX_3.4.9)(64bit)
  16. rpmlib(PayloadIsLzma) <= 4.4.6-1
To copy to clipboard, switch view to plain text mode 
How do I find out which other dependencies should be added?