summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
Commit message (Collapse)AuthorAgeFilesLines
...
* | install tkinter and ttk testsBenjamin Peterson2010-03-181-1/+2
| |
* | remove installation of deleted test/output dirBenjamin Peterson2010-03-181-1/+1
| |
* | don't try to compile anything in lib2to3/tests/data #8169Benjamin Peterson2010-03-181-2/+2
| |
* | Move the xml test data to their own directory.Florent Xicluna2010-03-131-1/+1
| |
* | taking sysconfig out of distutilsTarek Ziadé2010-01-231-1/+1
| |
* | Issue #7622: Improve the split(), rsplit(), splitlines() and replace()Antoine Pitrou2010-01-131-0/+1
| | | | | | | | | | methods of bytes, bytearray and unicode objects by using a common implementation based on stringlib's fast search. Patch by Florent Xicluna.
* | use pkg-config to find the libffi headers when --with-system-ffi is used #6943Benjamin Peterson2010-01-011-0/+2
| |
* | Fix for issue #7541: python-config --ldflags doesn't pick up libpython2.5.aRonald Oussoren2009-12-241-0/+1
| |
* | Issue #6834: replace the implementation for the 'python' and 'pythonw' ↵Ronald Oussoren2009-12-241-9/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | executables on OSX. The previous implementation used execv(2) to run the real interpreter, which means that you cannot use the arch(1) tool to select the architecture you want to use for a universal build because that only affects the python/pythonw wrapper and not the actual interpreter. The new version uses posix_spawnv with a number of OSX-specific options that ensure that the real interpreter is started using the same CPU architecture as the wrapper, and that means that 'arch -ppc python' now actually works. I've also changed the way that the wrapper looks for the framework: it is now linked to the framework rather than hardcoding the framework path. This should make it easier to provide pythonw support in tools like virtualenv.
* | Add a regrtest option to re-run in verbose mode immediately after a test ↵Georg Brandl2009-10-271-1/+1
| | | | | | | | fails, and use that option on the buildbots.
* | Issue #7117: Prepare for backport of py3k float repr.Mark Dickinson2009-10-241-0/+2
| | | | | | | | | | | | | | Add the Python/dtoa.c file containing the main algorithms; add corresponding include file and include in Python.h; include license information for Python/dtoa.c; add dtoa.c and dtoa.h to Makefile.
* | Issue #6982: Add generated Lib/lib2to3/*.pickle files to 'make clean' target.Mark Dickinson2009-09-241-1/+2
| | | | | | | | Thanks egreen.
* | Fix build issues on OSX 10.6 (issue 6802)Ronald Oussoren2009-09-061-0/+1
| |
* | Issue #6297: Add autogenerated Misc/python.pc file to make distclean target. ↵Mark Dickinson2009-08-311-1/+2
| | | | | | | | Thanks Jerry Chen.
* | install unittest as a packageBenjamin Peterson2009-07-211-0/+1
| |
* | put downloaded test support files in Lib/test/data instead of the cwdBenjamin Peterson2009-07-111-0/+1
| |
* | make ast.c depend on the grammarBenjamin Peterson2009-06-091-1/+1
| |
* | This checkin adds a symlink to the lib directory of a framework installRonald Oussoren2009-06-081-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | of Python (on OSX), and the end result of that is that the combination of ``python-config --ldflags`` and ``python-config --libs`` refers to an actually existing location. I've done this in preference to changing python-config to specify '-framework Python' for linking because that doesn't work when you have multiple versions of python installed (because '-framework Python' will always link to the 'Current' version of the framework, without a possibility to specify a specific version).
* | Issue #3585: Add pkg-config support.Antoine Pitrou2009-05-241-1/+8
| | | | | | | | | | It creates a python-2.7.pc file and a python.pc symlink in the $(LIBDIR)/pkgconfig directory. Patch by Clinton Roy.
* | support building with subversion 1.7 #6094Benjamin Peterson2009-05-231-1/+1
| |
* | This patch ensures that the pydoc_data package gets installed. This is neededRonald Oussoren2009-05-191-1/+1
| | | | | | | | | | | | | | | | to make it possible to use pydoc to get access to the language reference. That is, without this patch the folllowing won't work: >>> help('if')
* | Fixed Issue 5900: distutils.command.build_ext - Ensure RUNPATH is added to ↵Tarek Ziadé2009-05-091-0/+2
| | | | | | | | extension modules with RPATH if GNU ld is used
* | Fixed #5941: added ARFLAGS for the archiver command.Tarek Ziadé2009-05-071-6/+7
| |
* | Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to ↵Eric Smith2009-04-271-0/+2
| | | | | | | | py3k. Should fix Windows buildbot errors.
* | Issue #5161: wrong paths for ctypes cleanup when Python is built in aThomas Heller2009-04-241-2/+2
| | | | | | | | directory other than the source directory.
* | fix typoBenjamin Peterson2009-04-191-1/+1
| |
* | ignore py3_test_grammar when compiling the libraryBenjamin Peterson2009-04-111-2/+4
| |
* | fix syntaxBenjamin Peterson2009-04-081-1/+1
| |
* | these must be installed to correctly run testsBenjamin Peterson2009-04-081-1/+2
| |
* | Issue #2396: backport the memoryview object.Antoine Pitrou2009-04-021-0/+2
| |
* | Update quicktest to match Python 3 branchJeremy Hylton2009-03-311-3/+4
| |
* | - Link the shared python library with $(MODLIBS).Matthias Klose2009-02-221-3/+3
| |
* | Make importlib a package. This allows using svn:externals in the sandbox toBrett Cannon2009-02-031-1/+1
| | | | | | | | package up the code for separate distribution.
* | de-spacifyBenjamin Peterson2009-01-131-2/+2
| |
* | add bytearrayobject.h to PYTHON_HEADERSBenjamin Peterson2009-01-131-0/+1
| |
* | make bytearrayobject.o depend on the stringlib #4936Benjamin Peterson2009-01-131-0/+3
| |
* | Issue #4817: Remove unused function PyOS_GetLastModificationTime.Martin v. Löwis2009-01-031-1/+0
| |
* | Fix for issue 4472 is incompatible with Cygwin, this patchRonald Oussoren2009-01-021-2/+2
| | | | | | | | should fix that.
* | Fix for issue4780Ronald Oussoren2009-01-021-1/+1
| |
* | Fix for issue4472: "configure --enable-shared doesn't work on OSX"Ronald Oussoren2009-01-021-6/+10
| |
* | Issue 4692: bogus 'Make' in Makefile.pre.in; replace with '$MAKE'.Mark Dickinson2008-12-181-1/+1
| | | | | | | | Thanks Ned Deily.
* | - install versioned manpageMatthias Klose2008-10-211-1/+1
| |
* | - Makefile.pre.in(PROFILE_TASK): search files in srcdirMatthias Klose2008-10-101-2/+2
| |
* | Add the 'patchcheck' build target to .PHONY.Brett Cannon2008-10-061-1/+1
|/ | | | Re-closes issue 3758. Thanks to Ralph Corderoy for the catch.
* GNU coding guidelines say that ``make check`` should verify the build. ThatBrett Cannon2008-09-051-1/+1
| | | | | | | | clashes with what Python's build target did. Rename the target to 'patchcheck' to avoid the culture clash. Closes issue 3758. Reviewed by Benjamin Peterson.
* Issue #3678: Correctly pass LDFLAGS and LDLAST to the linker on sharedGregory P. Smith2008-09-021-5/+5
| | | | library targets in the Makefile.
* Generate the PatternGrammar pickle during "make install".Martin v. Löwis2008-08-011-1/+1
| | | | Fixes part of #3131.
* add multiprocessing to the MakefileBenjamin Peterson2008-06-201-0/+1
|
* Rename bytesobject.c back to stringobject.c to keep with the PyString theme.Gregory P. Smith2008-06-101-4/+2
| | | | Part of reverting most of r63675 per the mailing list discussion.
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-1/+0
| | | | | | | http://mail.python.org/pipermail/python-dev/2008-June/079988.html Python 2.6 should stick with PyString_* in its codebase. The PyBytes_* names in the spirit of 3.0 are available via a #define only. See the email thread.