diff options
Diffstat (limited to 'pytdeconfig.py')
-rw-r--r-- | pytdeconfig.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pytdeconfig.py b/pytdeconfig.py index 9b2af0f..96b06fe 100644 --- a/pytdeconfig.py +++ b/pytdeconfig.py @@ -38,7 +38,7 @@ _pkg_config = { 'libdir': 'lib', 'pytde_kde_sip_flags': '-t ALL -x TQt_STYLE_WINDOWSXP -x TQt_STYLE_INTERLACE -x TQt_STYLE_WINDOWSXP -x TQt_SIP_PRE_4_7_2 -x VendorID -t WS_X11 -t TQt_3_3_6 -t KDE_3_5_3', 'pytde_mod_dir': '/usr/lib/python2.5/site-packages', - 'pytde_modules': 'dcop tdecore tdefx tdeui kio tderesources kabc tdeutils tdefile tdeparts tdehtml tdespell tdeprint tdemdi', + 'pytde_modules': 'dcop tdecore tdefx tdeui tdeio tderesources kabc tdeutils tdefile tdeparts tdehtml tdespell tdeprint tdemdi', 'pytde_sip_dir': '/usr/share/sip', 'pytde_version': 0x031000, 'pytde_version_str': '3.16.0' @@ -141,7 +141,7 @@ class KdeuiModuleMakefile(KdefxModuleMakefile): KdefxModuleMakefile.finalise(self) class KioModuleMakefile(KdeuiModuleMakefile): - """The Makefile class for modules that %Import kio. + """The Makefile class for modules that %Import tdeio. """ def finalise(self): """Finalise the macros. @@ -150,7 +150,7 @@ class KioModuleMakefile(KdeuiModuleMakefile): # Note that we don't use self.extra_lib_dirs because we don't want # it to be added to the rpath. self.LIBDIR.append(self.config.pyqt_mod_dir) - self.extra_libs.append(self.module_as_lib("kio")) + self.extra_libs.append(self.module_as_lib("tdeio")) KdeuiModuleMakefile.finalise(self) |