Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#2052 closed defect (fixed)

[patch] freebsd, mysql, threading

Reported by: scott@… Owned by: Adrian Holovaty
Component: Database layer (models, ORM) Version:
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

(see #2036)
There are a few more changes required to get django working on freebsd5.1 with mysql4.1 on the system I'm using...
firstly, libmysqlclient needs compiling with -DWITH_LINUXTHREADS (with pthreads, it complains about missing symbol "pthread_getschedparam")
secondly, more changes to the django.db stuff as in #2036 (diff attached - includes the code change from #2036)

Attachments (1)

thread_stuff.diff (1.4 KB ) - added by scott@… 18 years ago.
alterations to django/db/transaction.py, django/utils/autoreload.py, django/utils/_threading_local.py

Download all attachments as: .zip

Change History (2)

by scott@…, 18 years ago

Attachment: thread_stuff.diff added

alterations to django/db/transaction.py, django/utils/autoreload.py, django/utils/_threading_local.py

comment:1 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [3045]) Fixed #2052 -- Fixed some threading issues for FreeBSD. Thanks, scott@…

Note: See TracTickets for help on using tickets.
Back to Top