Re: [cx-oracle-users] cx_Logging setup.py on AIX
Brought to you by:
atuining
From: Anthony T. <ant...@gm...> - 2010-12-20 17:22:16
|
Hi Tamás, I have checked in this change to cx_Logging. In the future, please contact me directly if you are unable to determine the cx_Logging mailing list, rather than post here. Thanks! BTW, the cx_Logging mailing list can be found here: https://lists.sourceforge.net/lists/listinfo/cx-logging-users I've also included a reference to it in the main page which will be uploaded when I make a new release of cx_Logging shortly. Anthony On Mon, Dec 20, 2010 at 9:56 AM, Tamás Gulácsi <gt...@gt...> wrote: > Hi Anthony, > > Sorry to post it here, but I just cannot find a mailing list/address > for cx_Logging. > On AIX 5.3, install fails - below is a setup.py workaround/fix. > > Tamás Gulácsi > > diff --git a/.external/cx_Logging-2.0/setup.py > b/.external/cx_Logging-2.0/setup.py > index 53c1160..1c58d2a 100644 > --- a/.external/cx_Logging-2.0/setup.py > +++ b/.external/cx_Logging-2.0/setup.py > @@ -63,7 +63,10 @@ class build_ext(distutils.command.build_ext.build_ext): > ext.libraries = ["ole32"] > else: > fileName = self.get_ext_filename(ext.name) > - extraLinkArgs.append("-Wl,-soname,%s" % fileName) > + if sys.platform.startswith("aix"): > + extraLinkArgs.append("-Wl,-so%s" % fileName) > + else: > + extraLinkArgs.append("-Wl,-soname,%s" % fileName) > distutils.command.build_ext.build_ext.build_extension(self, ext) > > def finalize_options(self): > > ------------------------------------------------------------------------------ > Lotusphere 2011 > Register now for Lotusphere 2011 and learn how > to connect the dots, take your collaborative environment > to the next level, and enter the era of Social Business. > http://p.sf.net/sfu/lotusphere-d2d > _______________________________________________ > cx-oracle-users mailing list > cx-...@li... > https://lists.sourceforge.net/lists/listinfo/cx-oracle-users > |