[issue19732] python fails to build when configured with --with-system-libmpdec

2014-01-05 Thread Stefan Krah
Stefan Krah added the comment: I’ve released mpdecimal-2.4.0: http://www.bytereef.org/mpdecimal/download.html sha256sum: == 996c73b63868699c4f86694671bd7ff3d1a8a88d8af2c22a5abe0c9a5845cf75 mpdecimal-2.4.0.tar.gz On obscure architectures I would recommend to run `make check`

[issue19732] python fails to build when configured with --with-system-libmpdec

2014-01-05 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- resolution: - fixed stage: - committed/rejected status: open - closed type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19732

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-12-30 Thread Stefan Krah
Stefan Krah added the comment: I wanted to force people to link explicitly with -l:libmpdec.so.2 in order to avoid picking up a wrong version. But indeed that won't work since the GNU linker happily picks up the static lib with -lmpdec if libmpdec.so is missing. The docs are part of my website

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-12-29 Thread Matthias Klose
Matthias Klose added the comment: your current repo doesn't create and install the .so symlink, and thus won't be used for linking. Also the sphinx docs are missing, which were included in 2.3. -- ___ Python tracker rep...@bugs.python.org

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-12-11 Thread Stefan Krah
Stefan Krah added the comment: Antoine, could you add --with-system-libmpdec to my FreeBSD and Fedora bots? Sorry for bothering you with all these obscure options. :) -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-12-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: Antoine, could you add --with-system-libmpdec to my FreeBSD and Fedora bots? Sorry for bothering you with all these obscure options. :) Should be done now. Can you check they work fine? -- ___ Python tracker

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-12-11 Thread Stefan Krah
Stefan Krah added the comment: Antoine Pitrou rep...@bugs.python.org wrote: Should be done now. Can you check they work fine? Thank you! Works OK. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19732

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-12-11 Thread Stefan Krah
Stefan Krah added the comment: Matthias, my target is to release mpdecimal-2.4 on January 9th 2014. I saw that you started to package mpdecimal-2.3: http://packages.debian.org/pt/source/sid/misc/mpdecimal I hope that it can be changed to 2.4: Packaging 2.3 would create some confusion,

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-11-25 Thread Stefan Krah
Stefan Krah added the comment: Matthias Klose rep...@bugs.python.org wrote: 2.4~rc1: - configure.ac should call AC_CANONICAL_HOST, config,guess and config.sub should be included. Hmm. configure.ac doesn't use any of the variables set by that macro, and this appears to work: ./configure

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-11-25 Thread Matthias Klose
Matthias Klose added the comment: Am 25.11.2013 12:42, schrieb Stefan Krah: Stefan Krah added the comment: Matthias Klose rep...@bugs.python.org wrote: 2.4~rc1: - configure.ac should call AC_CANONICAL_HOST, config,guess and config.sub should be included. Hmm. configure.ac doesn't

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-11-25 Thread Stefan Krah
Stefan Krah added the comment: Matthias Klose rep...@bugs.python.org wrote: ./configure --host=arm CC=arm-linux-gnueabi-gcc-4.7 sure, but this should work without explicitly setting CC. I can't get it to work without passing CC even with config.guess and config.sub. If you want it to

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-11-25 Thread Stefan Krah
Stefan Krah added the comment: Apparently the build failed because only arm-linux-gnueabi-gcc-4.7 was installed but not arm-linux-gnueabi-gcc. But the cross build succeeds with the original 2.4-rc1, except that arm-linux-gnueabi-ar isn't picked up: $ ./configure --host=arm-linux-gnueabi

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-11-25 Thread Stefan Krah
Stefan Krah added the comment: I've fixed cross-compiling and a couple of small issues in the repo from msg20434. Cross-compiling seems to work also without config-guess, but I've included it anyway. -- ___ Python tracker rep...@bugs.python.org

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-11-24 Thread Stefan Krah
Stefan Krah added the comment: Development of libmpdec has effectively happened on hg.python.org since I included _decimal. That's also one of the reasons why there isn't any public VCS. The mailing list isn't archived because I'm using ezmlm and ezmlm's retrieval system caused excessive

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-11-24 Thread Matthias Klose
Matthias Klose added the comment: Am 24.11.2013 18:42, schrieb Stefan Krah: _decimal should only be built against the upcoming mpdecimal-2.4. is there a schedule for this version? -- ___ Python tracker rep...@bugs.python.org

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-11-24 Thread Stefan Krah
Stefan Krah added the comment: I have prepared Python-3.3+ for use with libmpdec.so.2: cbd78679080b 9d07b3eb34e3 Here is a prerelease for mpdecimal: http://www.bytereef.org/software/mpdecimal/releases/mpdecimal-2.4-rc1.tar.gz sha256sum:

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-11-24 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19732 ___ ___ Python-bugs-list

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-11-24 Thread Matthias Klose
Matthias Klose added the comment: 2.4~rc1: - configure.ac should call AC_CANONICAL_HOST, config,guess and config.sub should be included. - there are still symbols which exists only for 32/64 bit archs. intended? (arch=@64@)mpd_qsset_i64@Base 2.3 (arch=@64@)mpd_qsset_u64@Base 2.3

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-11-23 Thread Matthias Klose
New submission from Matthias Klose: using the only mpdecimal release (2.3): building '_decimal' extension creating build/temp.linux-x86_64-3.3/scratch/packages/python/3.3/python3.3-3.3.3/Modules/_decimal x86_64-linux-gnu-gcc -pthread -fPIC -D_FORTIFY_SOURCE=2 -Wno-unused-result -DNDEBUG -g

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-11-23 Thread Matthias Klose
Matthias Klose added the comment: also, there is no VCS repository and no ML archive for mpdecimal publically available. -- nosy: +skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19732