Age | Commit message (Collapse) | Author | Files | Lines |
|
Makefiles simply need to use this value often, for better or for
worse.
(2) Create a new variable FIX_RPATH that lists variables that should
be cleansed of -R or -rpath values if ${_USE_RPATH} is "no". By
default, FIX_RPATH contains LIBS, X11_LDFLAGS, and LDFLAGS, and
additional variables may be appended from package Makefiles.
|
|
Before using native pthreads per default, we should make sure it is
at least stable enough for the Python selftests and pkgsrc applications.
(in response to PR pkg/20214)
|
|
XXX only python22 pkg is changed this way, since this is the only
XXX one having special case for NetBSD; python15, python20, python21 disable
XXX threads on all pkgsrc operating systems
|
|
|
|
|
|
|
|
Shouldn't affect other uses, just ads a missing feature.
|
|
Mostly bug fixes, a few enhancements, notably in the email package.
|
|
to BUILDLINK_FILES.<pkg>.
|
|
|
|
|
|
|
|
nned for the updated patch in the previous commit) and the empty
"PLIST_SRC+=" was kinda silly.
|
|
package Makefiles to make that decision for themselves.
|
|
instead of trying to parse the PLIST, which may not exist, or may not have
a full list of files installed by the package.
|
|
as to find their headers and libraries. Also allow "-lpython" to resolve
to the versioned libpython (-lpython2.2, etc.).
|
|
files.
|
|
|
|
|
|
assume all of those headers belong to the python package. We use the trick
for kdelibs2 and generate the BUILDLINK_FILES list from the PLIST.
|
|
python/pyversion.mk in particular.
|
|
|
|
Changes:
-Added new builtin function bool() and new builtin constants True and
False to ease backporting of code developed for Python 2.3. In 2.2,
bool() returns 1 or 0, True == 1, and False == 0.
-C API: A type can now inherit its metatype from its base type.
-Fixes
|
|
LDFLAGS to the linker command when linking a python extension. This lets
us pass the right flags to correctly find libraries required for certain
extensions, e.g. zlib.so.
|
|
as suggested by Johnny Lam
-don't try to build the "locale" module - it doesn't work anyway
-pull up a fix from Python CVS to get more consistent math exceptions
(eg pow(1e-200,2) vs. math.pow(1e-200,2))
This will be part of 2.2.1.
|
|
-don't even try to build the curses modules - its failure is detected
during build but this causes a lot of noise
|
|
|