[issue14557] HP-UX libraries not included

2012-04-12 Thread Charles-François Natali
Charles-François Natali added the comment: Committed, thanks! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue14557] HP-UX libraries not included

2012-04-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 807f331f973d by Charles-François Natali in branch '3.2': Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban. http://hg.python.org/cpython/rev/807f331f973d New changeset 9481e801ae7c by Charles-François Natali in branch 'default': Issu

[issue14557] HP-UX libraries not included

2012-04-12 Thread Adi Roiban
Adi Roiban added the comment: Hi, startswith('hp-ux') should also work as in real world it should be synonym with hp-ux11 ... see my reasoning below I used 'hp-ux11' since this was the system I have access to and can test and I was not brave enought to assume that the patch will work on futu

[issue14557] HP-UX libraries not included

2012-04-12 Thread Charles-François Natali
Charles-François Natali added the comment: Hello Adi, Thanks for your patch. Just a detail: """ if platform == 'hp-ux11': lib_dirs += ['/usr/lib/hpux64', '/usr/lib/hpux32'] """ Wouldn't it be more robust as: """ if platform.startswith('hp-ux'): lib

[issue14557] HP-UX libraries not included

2012-04-11 Thread Adi Roiban
New submission from Adi Roiban : Hi, I am trying to build Python on HP-UXiv3. HP-UX also keeps libs in /usr/lib/hpux64 and /usr/lib/hpux32. I have attached a patch for searching these folders. The patch is against the latest version of cpython. I have tests the change on Python 2.5.6.