rdb
|
5437a3e5a9
|
Allow const variables with initializers to be used in expressions (like enum definitions). Also fix compiler warning.
|
2014-09-14 22:02:16 +00:00 |
rdb
|
a044561be5
|
*Always* check for exceptions in C++ methods, otherwise we miss important exceptions thrown in Python code called by C++ methods (like SystemExit!)
|
2014-08-26 21:01:12 +00:00 |
rdb
|
e468b293d1
|
Fix a longstanding memory leak in certain interrogate exception handlers.
Raise MemoryError when constructor returns NULL.
Properly check argument count of constructors that take no arguments.
|
2014-08-26 17:17:37 +00:00 |
rdb
|
ab5e4f496b
|
Fix cmath includes on GNU
|
2014-08-21 17:00:57 +00:00 |
rdb
|
4db966f431
|
GNU needs #include <limits> for numeric_limits
|
2014-08-21 16:54:44 +00:00 |
rdb
|
a7f2f50236
|
Move string_utils.* to from putil to dtoolutil
|
2014-08-20 19:33:55 +00:00 |
rdb
|
515f93a0b8
|
Better handling of nan/infinity. Previously, these weren't working on Windows in config strings.
|
2014-08-20 19:32:11 +00:00 |
rdb
|
24d705b031
|
The "null" ButtonHandle and TypeHandle now evaluate to false
|
2014-07-29 11:15:12 +00:00 |
rdb
|
3e974abf5d
|
Fix silly bug with longs
|
2014-07-23 17:41:22 +00:00 |
rdb
|
f02662d4e0
|
Improve interrogate code readability, use METH_STATIC for static methods, support anonymous enums
|
2014-07-22 20:06:59 +00:00 |
rdb
|
e98618b105
|
Only use constexpr when the compiler conforms to C++11
|
2014-07-21 15:41:31 +00:00 |
rdb
|
c257ce624e
|
Interrogate overhaul that dramatically increases performance for the simpler methods
|
2014-07-18 13:54:38 +00:00 |
rdb
|
dba717fe83
|
GCC 4.7 enables constexpr, not 4.6
|
2014-07-17 16:18:04 +00:00 |
rdb
|
1be0fb5169
|
Add atomic adjust impl that uses GCC intrinsics. Also, make use of "constexpr" when available.
|
2014-07-17 13:11:06 +00:00 |
rdb
|
cba254d0bc
|
Add wstring type handle. Also add some useful MAKE_SEQs.
|
2014-06-26 20:06:04 +00:00 |
rdb
|
c33ef307d6
|
Delete MesaGL renderer, it seems not to be used any more
|
2014-06-18 14:59:11 +00:00 |
rdb
|
5dae464394
|
Add integer vectors. Also add __pow__ operator to vectors.
|
2014-06-11 18:01:50 +00:00 |
rdb
|
634190281d
|
Support __pow__ in interrogate
|
2014-06-11 17:17:45 +00:00 |
rdb
|
5b967671fa
|
Fix Python 3 build issue with iterator extensions
|
2014-05-23 13:42:26 +00:00 |
rdb
|
d5d5de1d7e
|
Make iterators work with interrogate by mapping None to NULL for the iternext method. Not the best solution, but is easy and fits most use cases.
|
2014-03-27 15:15:58 +00:00 |
rdb
|
31a192f27b
|
Fix interrogate understanding of PY_VERSION_HEX
|
2014-03-09 11:43:08 +00:00 |
rdb
|
ae4bddd7f7
|
Fix Python 3 compile issue
|
2014-03-09 01:00:23 +00:00 |
rdb
|
c213712600
|
fix windows build when the module is in different dll than the library defs
|
2014-02-20 18:38:35 +00:00 |
rdb
|
5f2c0a6e04
|
Big commit aiding in separation of Python bindings:
* Most extension functions have been moved to C++.
* In makepanda, Python bindings are compiled into panda3d/<module>.pyd.
|
2014-02-20 13:33:26 +00:00 |
rdb
|
3070f18c24
|
Add assertion in a case where I've seen an occasional crash
|
2014-02-19 08:38:57 +00:00 |
rdb
|
a10bbe9c9e
|
One more pystub symbol for Python 3 that's used in direct
|
2013-12-23 21:06:20 +00:00 |
rdb
|
4944d7cd7b
|
use compare_to and get_class_type instead of compareTo and getClassType
|
2013-12-18 10:24:00 +00:00 |
rdb
|
708e8dc513
|
Remove HAVE_GETTIMEOFDAY which we aren't using
|
2013-12-17 18:01:54 +00:00 |
rdb
|
f29c4681e1
|
Fix broken Python 3 support.
|
2013-12-17 17:42:16 +00:00 |
rdb
|
634c3c5a0a
|
Stubs for Python 3 functions
|
2013-12-17 15:03:30 +00:00 |
rdb
|
b4714bcdf1
|
no place in the source uses HAVE_GETTIMEOFDAY, and it conflicts with Python, so let's simply not define it
|
2013-12-12 17:20:14 +00:00 |
rdb
|
5b1ea47fee
|
add F_operator flag
|
2013-11-18 18:37:27 +00:00 |
rdb
|
52e4acc0ce
|
fix a crash with the python-obj, python and c interface makers
|
2013-11-08 10:30:27 +00:00 |
rdb
|
c3e862a842
|
Add is_double and is_short
|
2013-11-08 10:25:45 +00:00 |
rdb
|
7926a5fa7b
|
backward compatibility with Python 2.7
|
2013-10-27 18:51:20 +00:00 |
rdb
|
0d656a6848
|
fix typo. thanks to heek_
|
2013-09-19 08:04:15 +00:00 |
rdb
|
b7b9adfd35
|
compile fixes
|
2013-09-18 23:35:15 +00:00 |
rdb
|
d2720d4365
|
fix line endings
|
2013-09-17 15:23:14 +00:00 |
rdb
|
cc3bae7e76
|
Big interrogate cleanup, new extension system, add __iter__ support, add buffer protocol support
|
2013-09-17 10:11:43 +00:00 |
rdb
|
8fff339477
|
A lot of code cleanup
|
2013-09-01 15:05:43 +00:00 |
David Rose
|
0ea9b5e224
|
update ffmpeg libraries
|
2013-08-26 23:09:00 +00:00 |
David Rose
|
a16238932a
|
looks like we had a long-term confusion for LFLAGS as a set of linker flags and as a set of flex flags. Renamed LFLAGS to FLEXFLAGS for flex input.
|
2013-08-26 22:44:22 +00:00 |
rdb
|
c0d78d57d4
|
Can we just use streamoff instead of ssize_t?
|
2013-08-26 15:45:14 +00:00 |
rdb
|
461fdfdddc
|
fix compile error on MSVC, where ssize_t doesn't exist (but SSIZE_T does)
|
2013-08-26 14:38:55 +00:00 |
rdb
|
4b2c64d73f
|
Add libp3vrpn to genpycode list.
|
2013-08-26 12:18:38 +00:00 |
rdb
|
30f1f50e78
|
Add vorbis package definition in ppremake in anticipation of ogg vorbis support. Also, remove unnecessary HAVE_VORBIS from dtool_config.h.
|
2013-08-25 17:38:45 +00:00 |
rdb
|
41d851db86
|
for some reason ppremake needs these files to be here
|
2013-08-25 17:30:29 +00:00 |
rdb
|
d58924c280
|
add OculusVR and ogg/vorbis headers in anticipation of their support
|
2013-08-25 17:18:02 +00:00 |
rdb
|
abc5c381be
|
fix interrogate compile error when a function takes a non-const char pointer
|
2013-08-24 19:26:06 +00:00 |
David Rose
|
93afeb40f2
|
By interrogate conventions, char * means a string, while unsigned char * means a data buffer.
|
2013-08-23 22:26:17 +00:00 |
rdb
|
266890c86a
|
Add version of extract_bytes that extracts into character buffer
|
2013-08-23 15:03:01 +00:00 |
rdb
|
03e96d8c4a
|
Uff, this should bring Panda up to date with the latest version of ffmpeg. We now use AVIOContext instead of URLProtocol, avcodec_decode_audio4 instead of 3, and add support for libswresample to resample the input data to 16-bits signed int since some codecs now give float data. If this breaks anyone's build, please, just consider updating your ffmpeg version.
|
2013-08-22 18:20:10 +00:00 |
rdb
|
90770727c0
|
Add LONGLONG
|
2013-08-21 06:44:41 +00:00 |
rdb
|
2c8dc6ac31
|
explicitly specify /MANIFEST for MSVC9x64 as well
|
2013-08-18 19:10:32 +00:00 |
enn0x
|
a343eef6b1
|
Adding minkowski sum shape.
|
2013-08-14 23:31:42 +00:00 |
David Rose
|
dba661253a
|
Fix handling of large (>2GB) files on Windows. Egad, off_t is 32 bits on Windows, even in 64-bit Windows. Ridiculous.
|
2013-08-01 00:10:20 +00:00 |
enn0x
|
1e28f892be
|
Support for driving Bullet soft body joints.
|
2013-05-22 09:50:55 +00:00 |
rdb
|
cbbe02f879
|
fix 64-bit bullet lib location on windows
|
2013-05-14 21:15:08 +00:00 |
rdb
|
fec189c225
|
_WIN32 should also be defined on 64-bits Windows
|
2013-05-06 11:23:26 +00:00 |
David Rose
|
67770fa3dc
|
whoops, nan() and nanf() require a parameter
|
2013-05-04 01:10:42 +00:00 |
David Rose
|
e0238675f3
|
make_nan()
|
2013-05-03 18:05:28 +00:00 |
David Rose
|
c32becb2a1
|
rename_to() and copy_to() are heavy operations and should be BLOCKING
|
2013-04-12 03:36:49 +00:00 |
rdb
|
b1d397a58a
|
regenerate the file to avoid future confusion
|
2013-04-01 21:50:40 +00:00 |
enn0x
|
8deb2f40b1
|
Name of Python init function should match library filename.
|
2013-04-01 16:58:58 +00:00 |
rdb
|
40cddd6280
|
Fixes for Python 3.2
|
2013-03-27 15:48:24 +00:00 |
enn0x
|
6bb5fdc5e0
|
Support for Bullet v2.81
|
2013-03-26 09:35:30 +00:00 |
David Rose
|
5178fb9523
|
fix problem with infinite recursion on coercion within constructors
|
2013-03-25 15:15:08 +00:00 |
rdb
|
d4d93c5d3f
|
Add PyExc_Exception
|
2013-03-07 11:04:19 +00:00 |
rdb
|
e1fda64ad3
|
add PyObject_RichCompareBool
|
2013-03-06 18:15:12 +00:00 |
enn0x
|
65b698217f
|
Added angular/linear motors for 6DOF constraint.
|
2013-03-03 22:29:11 +00:00 |
rdb
|
a9014cf933
|
reenable tp_richcompare (thanks David)
|
2013-02-20 10:44:48 +00:00 |
David Rose
|
53b472756b
|
fix rich compare
|
2013-02-20 00:37:12 +00:00 |
rdb
|
c5bc7790ae
|
Add PyLong_AsSsize_t
|
2013-02-19 22:41:38 +00:00 |
rdb
|
dc20f793b6
|
Support Python 2.5
|
2013-02-19 22:24:40 +00:00 |
rdb
|
da44b3ae3b
|
oops, disable broken rich compare for now
|
2013-02-19 19:21:41 +00:00 |
rdb
|
f3c2b51084
|
Add PyUnicode_FromStringAndSize
|
2013-02-19 19:01:43 +00:00 |
rdb
|
0f8361d730
|
Fix compile errors with Python 2
|
2013-02-18 12:28:52 +00:00 |
rdb
|
0925d9265f
|
fix oops
|
2013-02-18 11:35:20 +00:00 |
rdb
|
eb6eeb6d02
|
fix compile error
|
2013-02-17 22:53:48 +00:00 |
rdb
|
192d10b937
|
Experimental Python 3 support to the C++ code including interrogate. Also adds support for rich comparison in interrogate.
|
2013-02-16 19:22:26 +00:00 |
rdb
|
441666fb79
|
Compile with Python 3.3
|
2013-02-15 07:57:20 +00:00 |
rdb
|
c26c0e6a97
|
Android support, part 1
|
2013-01-24 17:54:56 +00:00 |
rdb
|
56f7c3edf2
|
fix for Android compile
|
2013-01-07 12:45:59 +00:00 |
David Rose
|
474e26e951
|
fix set_case_sensitive() and match_files()
|
2012-11-16 02:22:20 +00:00 |
rdb
|
21c922c7cd
|
Some fixes for ppremake+bullet
|
2012-10-25 22:03:04 +00:00 |
rdb
|
91e305789a
|
Add ppremake package for bullet
|
2012-10-25 10:03:55 +00:00 |
rdb
|
0d7773d30a
|
Fix typo
|
2012-10-19 13:06:01 +00:00 |
David Rose
|
0b585cff0b
|
add get_systems()
|
2012-10-03 21:58:48 +00:00 |
David Rose
|
88ef2618eb
|
use win_amd64 instead of win64, and win_i386 instead of win32
|
2012-10-02 00:00:50 +00:00 |
David Rose
|
c88c480b6f
|
expose more "environment" variables on Windows
|
2012-09-17 19:29:06 +00:00 |
David Rose
|
9daf081364
|
p3d supports win64
|
2012-08-13 23:13:23 +00:00 |
rdb
|
916f5ff2f7
|
bump version to 1.9.0
|
2012-08-11 15:17:31 +00:00 |
David Rose
|
5ae679ccc9
|
build issue
|
2012-08-08 00:31:12 +00:00 |
rdb
|
30872b617e
|
somewhat experimental support for 64-bits OS X and OS X Lion
|
2012-08-06 09:57:34 +00:00 |
rdb
|
05aa20ee3f
|
force pystub to be linked into interrogate and interrogate_module
|
2012-07-20 10:10:38 +00:00 |
David Rose
|
bf03940bcb
|
opencv 2.3
|
2012-07-08 20:04:33 +00:00 |
David Rose
|
243339c080
|
opencv might require QuickTime.framework
|
2012-06-29 01:03:44 +00:00 |
David Rose
|
97f805b24a
|
pystub should be a static library for better portability, especially for dynamic loaders that aren't so awesome.
|
2012-06-20 21:41:49 +00:00 |
enn0x
|
ad54aff016
|
Exposed CCD for PhysX.
|
2012-04-30 22:45:12 +00:00 |
rdb
|
608643da5a
|
another fix for .this -> T_ULONG
|
2012-03-09 22:26:59 +00:00 |
rdb
|
a96c08b5c8
|
this should fix obj.this on 64-bits architectures
|
2012-03-09 21:32:47 +00:00 |
enn0x
|
4546fb9e77
|
(Perhaps) fixing BulletContact crashes on Linux
|
2012-02-27 22:46:42 +00:00 |
David Rose
|
a572d1a413
|
shouldn't automatically build a dependency on Windows 7
|
2012-02-22 18:43:56 +00:00 |
rdb
|
562296e694
|
add support for the libRocket debugger
|
2012-02-19 12:20:16 +00:00 |
enn0x
|
1d5b7d4c55
|
Exposing btWheelInfo::RaycastInfo.
|
2012-02-17 21:37:05 +00:00 |
David Rose
|
646f12f625
|
squelch backtrace on SystemExit
|
2012-02-16 00:19:09 +00:00 |
David Rose
|
4820b4a2db
|
fix more static-init ordering issues caused by new alignment code
|
2012-02-12 19:55:52 +00:00 |
rdb
|
d290a193ad
|
Fix static init ordering issue with the runtime build
|
2012-02-10 09:19:12 +00:00 |
David Rose
|
876956defb
|
ConfigVariableFilename::get_value() should return a concrete, not a reference
|
2012-02-06 23:18:49 +00:00 |
David Rose
|
e893b91a17
|
unify mayapath.cxx and mayaWrapper.cxx
|
2012-02-02 17:45:48 +00:00 |
rdb
|
c76d2cd226
|
it's p3dtoolconfig in ppremake too now, David
|
2012-02-01 15:13:07 +00:00 |
David Rose
|
903569a729
|
don't build glx if no x11
|
2012-01-09 14:58:18 +00:00 |
rdb
|
11189c99b7
|
Add libRocket compilation instructions to Config.prc. Will commit actual Rocket integration soon
|
2012-01-06 12:28:31 +00:00 |
enn0x
|
e68cb77e4a
|
Added wrapper for btMultiSphereShape.
|
2012-01-05 13:07:38 +00:00 |
David Rose
|
f666607adc
|
expose match_files() to python usefully
|
2011-12-29 18:05:12 +00:00 |
David Rose
|
a06fd5521f
|
found a reason to use dlmalloc if 16-byte alignment is required
|
2011-12-22 22:44:31 +00:00 |
David Rose
|
f6a32897ba
|
build correctly without DO_MEMORY_USAGE
|
2011-12-21 02:31:37 +00:00 |
David Rose
|
9326f5be54
|
compiler warnings
|
2011-12-21 01:39:47 +00:00 |
David Rose
|
6e5dd2cc63
|
fix memory crashes on win32/Eigen build
|
2011-12-21 01:25:38 +00:00 |
David Rose
|
e04c446b1c
|
add eigen to makepanda
|
2011-12-19 17:36:40 +00:00 |
David Rose
|
1cf7a1fd79
|
define epvector
|
2011-12-19 15:14:29 +00:00 |
David Rose
|
66a52cb6a3
|
fix MemoryHook internal memory alignment issues
|
2011-12-18 19:20:18 +00:00 |
David Rose
|
c5c21a566a
|
UnalignedLVecBase etc, remove lerp etc, moving towards Eigen on win32
|
2011-12-18 16:30:31 +00:00 |
David Rose
|
787742c93e
|
LINMATH_VECTORIZE -> LINMATH_ALIGN
|
2011-12-18 02:00:31 +00:00 |
David Rose
|
56fb33bf00
|
enforce alignment policies even when malloc() doesn't.
|
2011-12-18 01:55:22 +00:00 |
David Rose
|
702045608d
|
report allocation attempt when out of memory
|
2011-12-17 01:57:05 +00:00 |
David Rose
|
5933da3f05
|
auto-detect Eigen
|
2011-12-16 14:20:25 +00:00 |
David Rose
|
33b9a1e1cf
|
integrate Eigen
|
2011-12-16 14:17:48 +00:00 |
David Rose
|
71a2acd208
|
openssl is standard these days
|
2011-12-13 02:18:49 +00:00 |
David Rose
|
f9658303e7
|
ah, *this* is the proper fix to recent interrogate bug.
|
2011-12-09 05:56:27 +00:00 |
David Rose
|
dfe16c64f6
|
rename all Panda-built libraries to begin with libp3 or libpanda
|
2011-12-06 02:39:21 +00:00 |
David Rose
|
483928ff8b
|
pystub must trail the link line
|
2011-12-04 03:50:19 +00:00 |
David Rose
|
9294ea77f7
|
interrogate supports wchar_t * and L"foo"
|
2011-11-29 23:25:23 +00:00 |
enn0x
|
1a8eb0710b
|
Forgot to commit this a week ago...
|
2011-11-28 14:55:36 +00:00 |
rdb
|
0703e32d6f
|
add some stdint definitions
|
2011-11-25 09:46:23 +00:00 |
David Rose
|
a9fc6e59ae
|
fix windows globbing to support embedded quote marks
|
2011-11-21 21:13:30 +00:00 |
David Rose
|
82a33fad3e
|
huh, InterlockedAdd only exists on win64, weird.
|
2011-11-18 22:33:34 +00:00 |
David Rose
|
dca824b5de
|
hey, this time I really found the ffmpeg crash.
|
2011-11-18 19:40:40 +00:00 |
David Rose
|
b421b037fe
|
support OPTIMIZE 1 on win64 too
|
2011-11-18 19:21:46 +00:00 |
David Rose
|
99c0a4ec50
|
posix build errors
|
2011-11-17 23:34:12 +00:00 |
David Rose
|
539b61571c
|
guarantee word alignment for AtomicAdjust stuff
|
2011-11-17 23:31:31 +00:00 |
David Rose
|
19ff5a0d7f
|
oops, this causes problems with buildbot, fix later
|
2011-11-11 23:33:09 +00:00 |
David Rose
|
c0b7ca96b8
|
perform shell-style filename globbing on Win32 too
|
2011-11-09 01:35:19 +00:00 |
David Rose
|
370a9886b7
|
stringstream_hack
|
2011-11-07 20:15:57 +00:00 |
David Rose
|
cebecba2fc
|
add interrogate -noangles
|
2011-11-06 18:02:17 +00:00 |
David Rose
|
003aa9e3dd
|
PNMImage::gamma_correct()
|
2011-11-05 01:37:36 +00:00 |
David Rose
|
633e697d54
|
allow typename keyword in lieu of class, in template declarations
|
2011-11-04 16:58:39 +00:00 |
David Rose
|
594f1e32d7
|
remove experimental disclaimer
|
2011-11-03 00:13:41 +00:00 |
David Rose
|
165fa85a4e
|
add stdfloat-double
|
2011-11-02 20:50:25 +00:00 |
David Rose
|
17cc1bd0a3
|
fix 64-bit problem with memory tracking
|
2011-11-01 17:18:55 +00:00 |
David Rose
|
c16875f104
|
use Posix longs
|
2011-10-31 22:50:28 +00:00 |
David Rose
|
eacd4cfefb
|
missing include
|
2011-10-11 01:37:25 +00:00 |
David Rose
|
134e9a9e92
|
dual names for interrogate
|
2011-10-11 00:45:51 +00:00 |
David Rose
|
501470169f
|
stdfloat_double
|
2011-10-10 05:25:10 +00:00 |
David Rose
|
d156c4a1d5
|
publish more prc stuff
|
2011-09-30 23:57:34 +00:00 |
David Rose
|
c7adc6246f
|
build on msvs2010
|
2011-09-28 23:56:59 +00:00 |
David Rose
|
6bed0cf394
|
bool should return a bool
|
2011-09-28 17:42:46 +00:00 |
David Rose
|
5496c4a9ec
|
more writable vfs stuff
|
2011-09-27 16:10:19 +00:00 |
rdb
|
3414a4ff1c
|
add PyBool_FromLong to pystub, apparently it's needed to compile on FreeBSD 8.2
|
2011-09-19 17:23:13 +00:00 |
David Rose
|
57b42fbfe1
|
clean up some read-write operations
|
2011-09-16 23:10:27 +00:00 |
David Rose
|
e986614cfc
|
writable vfs
|
2011-09-16 20:13:08 +00:00 |
David Rose
|
e0323969a5
|
maybe we're ready to build with DO_PIPELINE enabled in general
|
2011-09-12 23:03:05 +00:00 |
David Rose
|
c6296add0b
|
fix python crash at loader.load_sync()
|
2011-09-09 17:16:40 +00:00 |
David Rose
|
43cbd0f106
|
unneeded tau_cflags
|
2011-09-09 00:14:52 +00:00 |
David Rose
|
0c2ab823d3
|
robustify low-level Python accessors
|
2011-09-07 16:03:01 +00:00 |
David Rose
|
59ec701a26
|
build once more with the Tau profiler
|
2011-09-06 17:29:30 +00:00 |
David Rose
|
6b3cc48bb6
|
fix static init crash
|
2011-09-01 22:33:08 +00:00 |
David Rose
|
42764ffee5
|
add ConfigPage.setSort()
|
2011-09-01 22:12:00 +00:00 |
David Rose
|
4496febc73
|
seems we should default to utf-8 these days
|
2011-08-30 15:57:11 +00:00 |
David Rose
|
1acf84fcfe
|
build errors
|
2011-08-30 05:09:49 +00:00 |
David Rose
|
2c7f1498b3
|
typo
|
2011-08-29 18:57:29 +00:00 |
David Rose
|
7667709357
|
support windows unicode filenames
|
2011-08-29 18:56:32 +00:00 |
David Rose
|
a5dbe8ad61
|
need expcl
|
2011-08-29 16:35:01 +00:00 |
David Rose
|
6ecf2fed29
|
preparing for unicode filenames
|
2011-08-29 04:33:00 +00:00 |
David Rose
|
858a7ef9d0
|
no longer use the old 'chromium' package; it would be confused with the browser project today
|
2011-08-27 03:51:30 +00:00 |
David Rose
|
8a079d5857
|
comment
|
2011-08-27 02:54:56 +00:00 |
David Rose
|
397bcbdddf
|
default to SIMPLE_THREADS
|
2011-08-27 00:58:25 +00:00 |
David Rose
|
81b832a50f
|
bump plugin version number
|
2011-08-26 23:36:30 +00:00 |
David Rose
|
bc95f94618
|
minor fix
|
2011-08-26 02:25:06 +00:00 |
David Rose
|
9d5325e05a
|
replace gnu_getopt with new Panda-licensed implementation
|
2011-08-03 23:37:43 +00:00 |
David Rose
|
657c0ebaf6
|
HAVE_SPEEDTREE should be added to dtool_config.h
|
2011-07-27 18:09:29 +00:00 |
David Rose
|
79abbda035
|
add INSTALL_EGG_FILES
|
2011-07-27 18:08:53 +00:00 |
David Rose
|
5fd6d60f40
|
add Filename::is_binary_or_text()
|
2011-07-27 18:07:57 +00:00 |
rdb
|
6c79733735
|
fix for ffmpeg
|
2011-07-01 17:47:03 +00:00 |
rdb
|
dc628bacbc
|
update this avio, too
|
2011-06-30 11:16:46 +00:00 |
David Rose
|
0cf03bc158
|
untabify
|
2011-06-29 22:09:10 +00:00 |
David Rose
|
b00edc02d4
|
need another symbol
|
2011-06-29 20:32:58 +00:00 |
David Rose
|
4785161374
|
squelch some more compiler warnings
|
2011-06-18 00:16:48 +00:00 |
David Rose
|
9b2665b539
|
speedtree also wants glu
|
2011-05-17 20:44:30 +00:00 |
enn0x
|
10a64db343
|
Adding bullet physics.
|
2011-05-14 07:00:02 +00:00 |
rdb
|
fc801b8568
|
add assimp library to ppremake
|
2011-05-04 15:55:46 +00:00 |
rdb
|
8f41f7ac7a
|
include stdint.h from avio.h
|
2011-04-16 20:25:17 +00:00 |
rdb
|
43f0305538
|
lets not use the system stdint.h in case it has different definitions than we use in our parser-inc implementation
|
2011-04-15 19:11:08 +00:00 |
rdb
|
a4d1e06471
|
bump to 1.8.0
|
2011-04-15 10:04:47 +00:00 |
rdb
|
776baf7c15
|
Basically functional collada loader that uses the COLLADA DOM. Can load scene graph and geometry.
|
2011-04-04 20:56:50 +00:00 |
rdb
|
e24397f494
|
Add COLLADA DOM library
|
2011-04-04 19:24:10 +00:00 |
David Rose
|
d715a331e3
|
"long int" isn't necessarily 64 bits on a 64-bit architecture, but "long long int" usually is.
|
2011-04-03 21:07:32 +00:00 |
rdb
|
54c692330a
|
rewrite p3dcert to FLTK
|
2011-03-09 11:16:20 +00:00 |
rdb
|
12ef0e108a
|
X11 is not only available on Linux
|
2011-03-08 15:58:55 +00:00 |
rdb
|
c7bf95c53a
|
include dlfcn.h on FreeBSD for dlopen
|
2011-03-02 20:35:09 +00:00 |
rdb
|
20f97e47d5
|
protect code in docstring from doxygen formatting
|
2011-02-25 12:31:11 +00:00 |
Ken Patel
|
c868edce8e
|
plugin - bump P3D_PLUGIN_VERSION to 1 0 3 and P3D_COREAPI_VERSION to 1 0 3 3
|
2011-02-15 23:10:25 +00:00 |
Ken Patel
|
9c1c10ea4b
|
dtool - compilerSettings.pp - explicitly specify /MANIFEST in linker flags
|
2011-02-14 22:54:06 +00:00 |
Ken Patel
|
003483f294
|
dtool - fix ordering issue with manifest embedding in .gmsvc template
|
2011-02-11 00:21:23 +00:00 |
rdb
|
71ddd9de3b
|
Add missing PyList_Type
|
2011-01-23 19:33:42 +00:00 |
rdb
|
319b8c4cb1
|
More stuff related to extensions
|
2011-01-03 08:25:13 +00:00 |
rdb
|
c740c43f4c
|
Update prebuilt bison files
|
2011-01-02 15:17:22 +00:00 |
rdb
|
beb90c565f
|
Add functionality allowing extension functions to interrogate
|
2011-01-02 15:14:02 +00:00 |
rdb
|
b18fd7d192
|
Add missing symbols to pystub hopefully to stop the buildbots' error diarrhoea
|
2010-12-24 19:57:26 +00:00 |
rdb
|
7f9b94df54
|
Fix copy&paste error (xcursor doesn't add resolution switching support, hehe)
|
2010-12-21 13:00:30 +00:00 |
Maxwell J. Koo
|
40b487d3fa
|
Apply patch from launchpad user mjkoo to add custom mouse cursor support on X11
|
2010-12-21 12:36:11 +00:00 |
rdb
|
124942a13b
|
Finally fix those darn Maya crashes
|
2010-12-19 07:56:41 +00:00 |
rdb
|
0ea72a4712
|
Remove GLU dependency from Panda3D. Yes. That's right, folks.
And now I shall make myself some coffee and wake up, in that order.
|
2010-12-19 07:03:49 +00:00 |
rdb
|
304dd37afa
|
Don't return if /proc couldn't be read
|
2010-11-26 21:55:57 +00:00 |
rdb
|
6fab399549
|
Much better FreeBSD support, bugfix for Linux, and restructuring of the code
|
2010-11-26 21:36:00 +00:00 |
rdb
|
8371786fb9
|
commit suggestion from forum user catshow
|
2010-11-24 15:46:16 +00:00 |
rdb
|
804a72b716
|
Partially apply typo fix patch I found somewhere on the web, by someone named Christoph Korn
|
2010-11-16 08:58:45 +00:00 |
David Rose
|
36635a00b9
|
MAKE_BAT_SCRIPTS
|
2010-11-09 20:06:19 +00:00 |
rdb
|
760839789e
|
Let's try and rely less on procfs
|
2010-11-06 14:22:50 +00:00 |
rdb
|
09f6436745
|
Use realpath() in make_canonical to properly resolve symlinks
|
2010-10-25 18:32:38 +00:00 |
David Rose
|
593393dd64
|
speedtree win64
|
2010-10-14 16:57:00 +00:00 |
David Rose
|
60769396aa
|
speedtree stuff
|
2010-10-12 23:56:26 +00:00 |
David Rose
|
2f317d8652
|
cfrac
|
2010-10-12 23:13:27 +00:00 |
David Rose
|
a93d8a54c5
|
missing declarations
|
2010-10-09 00:16:08 +00:00 |
David Rose
|
0596c3990d
|
speedtree dx9
|
2010-10-08 21:32:15 +00:00 |
David Rose
|
910e71660e
|
speedtree
|
2010-10-07 22:55:06 +00:00 |
rdb
|
754cb8e4bc
|
Changes to build PhysX support on 64-bits Linux
|
2010-10-01 16:23:16 +00:00 |
David Rose
|
3a2558068c
|
typo
|
2010-09-28 17:09:20 +00:00 |
David Rose
|
060217dcdd
|
need HAVE_VIDEO4LINUX
|
2010-08-29 17:53:17 +00:00 |
David Rose
|
ba6ce2f5f0
|
bump P3D_COREAPI_VERSION
|
2010-08-16 22:45:20 +00:00 |
David Rose
|
8078c69995
|
nmake scripts provided by Jason Pratt
|
2010-08-09 21:02:25 +00:00 |
rdb
|
cdea7d12b5
|
I don't think we need OPENSSL_097 anymore
|
2010-07-16 09:18:26 +00:00 |
David Rose
|
dab54029a4
|
workaround broken getopt issue
|
2010-07-14 18:10:11 +00:00 |
David Rose
|
16a4cc0d84
|
protect jpegint.h references
|
2010-07-14 13:59:34 +00:00 |
David Rose
|
3bba5366a6
|
python2.6 is more common these days
|
2010-07-14 04:51:24 +00:00 |
rdb
|
eee9b6f874
|
Add missing include
|
2010-07-11 19:19:07 +00:00 |
Chris Brunner
|
b709455d4e
|
support for PyObject_Compare
|
2010-06-23 00:35:57 +00:00 |
rdb
|
60d81ae7da
|
Fix OSX compilation issue
|
2010-06-22 07:08:09 +00:00 |
Chris Brunner
|
512ce38cd4
|
general cleanup of MSVC 8+ manifest handling; added basic ppremake support for csharp .cs files
|
2010-06-22 02:16:32 +00:00 |
Chris Brunner
|
5fef40280e
|
adding default C# compiler name
|
2010-06-22 02:05:37 +00:00 |
rdb
|
4f02be0e67
|
Oops, heh, made a small mistake there regarding MAP_ANON
|
2010-06-21 17:38:27 +00:00 |
rdb
|
86b3116f6b
|
More portable replacements for getpagesize and MAP_ANON
|
2010-06-21 17:32:11 +00:00 |
David Rose
|
d51e49516a
|
allow __py__ functions for python-only optimizations
|
2010-06-16 21:57:37 +00:00 |
David Rose
|
d3e9e4c4f5
|
coreapi version, increment plugin version
|
2010-06-16 01:18:20 +00:00 |
David Rose
|
77b6c92784
|
more USE_MT mistake
|
2010-06-15 18:31:57 +00:00 |
David Rose
|
a364532e15
|
USE_MT mistake
|
2010-06-15 18:28:27 +00:00 |
David Rose
|
aa76a9f59d
|
support class method versions of MAKE_SEQ
|
2010-06-13 22:03:46 +00:00 |
David Rose
|
0d8b31f9a4
|
make local_dev a runtime default, not a compiled default
|
2010-06-11 22:36:54 +00:00 |
David Rose
|
54dd2108d5
|
HAVE_P3D_RTDIST
|
2010-06-11 19:03:37 +00:00 |
rdb
|
5cbb505e00
|
Heh heh... look at that... what was that ampersand doing there?
|
2010-06-07 11:58:02 +00:00 |
David Rose
|
35bbcb1500
|
SUPPORT_IMMEDIATE_MODE should be defer, not define
|
2010-06-04 21:12:41 +00:00 |
Chris Brunner
|
e0876b9eae
|
forgot a few more flags
|
2010-06-01 16:14:34 +00:00 |
rdb
|
87de7c16be
|
Restore this file
|
2010-05-30 09:54:36 +00:00 |
David Rose
|
23208e494c
|
protect against undefined symbol
|
2010-05-29 18:49:48 +00:00 |
David Rose
|
edd9d59c0e
|
protect against undefined symbol
|
2010-05-29 18:47:45 +00:00 |
David Rose
|
cde8a0bf38
|
PTHREAD_MUTEX_NORMAL -> PTHREAD_MUTEX_DEFAULT
|
2010-05-29 16:50:58 +00:00 |
Chris Brunner
|
dfdcf8bfad
|
64-bit build support
|
2010-05-27 23:45:57 +00:00 |
Chris Brunner
|
051e5ee70f
|
64-bit build support
|
2010-05-27 23:28:00 +00:00 |
David Rose
|
bd3201b67d
|
redundant file; this one isn't used
|
2010-05-25 21:13:29 +00:00 |
David Rose
|
bb96117de2
|
interrogate fix for ode::get_id()
|
2010-05-25 21:12:44 +00:00 |
rdb
|
c957b42580
|
Fix compilation issue on Linux (dunno where it came from)
|
2010-05-25 15:27:15 +00:00 |
rdb
|
5f73862a11
|
1.7.1
|
2010-05-25 09:47:31 +00:00 |
rdb
|
4173057c26
|
Move tinyxml into the source tree, rather than using it as external library
|
2010-05-24 18:55:08 +00:00 |
rdb
|
d4263a47aa
|
__STDC_CONSTANT_MACROS fix
|
2010-05-18 15:37:26 +00:00 |
rdb
|
c9cb0def53
|
Move __STDC_LIMIT_MACROS up a bit, to be certain
|
2010-05-18 14:20:30 +00:00 |
rdb
|
2ec0617d32
|
Define __STDC_CONSTANT_MACROS in case C libraries like ffmpeg don't
|
2010-05-18 12:57:58 +00:00 |
David Rose
|
8c56527a49
|
avoid recursion crash
|
2010-05-07 00:06:48 +00:00 |
David Rose
|
d3d778734d
|
add '^' to const expressions
|
2010-05-06 22:50:31 +00:00 |
David Rose
|
5e8d539f1f
|
move OS_SIMPLE_THREADS to dtool_config.h
|
2010-05-01 16:10:54 +00:00 |
David Rose
|
1be766620e
|
define OS_SIMPLE_THREADS
|
2010-04-29 18:42:58 +00:00 |
rdb
|
eed74662e8
|
Fix Interrogate parser issues on FreeBSD
|
2010-04-28 07:44:16 +00:00 |
Chris Brunner
|
4b2eab9c77
|
test for 64-bit compiling support
|
2010-04-27 00:58:39 +00:00 |
rdb
|
bd5e89e4a5
|
Use sysctl on FreeBSD
|
2010-04-25 13:19:55 +00:00 |
rdb
|
8582089aeb
|
Correct way for detecting PC-BSD
|
2010-04-25 08:06:16 +00:00 |
rdb
|
e01ebd5ecb
|
Detect amd64 platform correctly on FreeBSD
|
2010-04-24 11:37:45 +00:00 |
rdb
|
e445833bb3
|
/usr/local/lib and /usr/local/include as EXTRA_*PATH
|
2010-04-24 05:13:05 +00:00 |
rdb
|
fb6b4c0ceb
|
Add $[AR] to make Linux cross-compilation a little bit easier
|
2010-04-12 17:37:42 +00:00 |
rdb
|
35fa12e2a6
|
A bit of code cleanup
|
2010-04-09 13:24:02 +00:00 |
Chris Brunner
|
c91fd55096
|
adding support for Mac paths
|
2010-04-07 23:28:46 +00:00 |
rdb
|
102b46878e
|
More compatibility with exotic compilers (yes, I actually tried to port Panda to clang)
|
2010-04-07 16:59:46 +00:00 |
David Rose
|
b5d27fa62a
|
fix build crash
|
2010-03-29 20:47:22 +00:00 |
Chris Brunner
|
2c15943a7c
|
allows for frame counts on animations with the same name, but not neccessarily the same channel name in the same directory
|
2010-03-29 19:35:47 +00:00 |
rdb
|
e841ceb67d
|
Oops, forgot to add this file
|
2010-03-29 18:11:48 +00:00 |
rdb
|
2a6974eec2
|
stdint/numeric_types stuff, let's follow the standards
|
2010-03-29 15:38:40 +00:00 |
David Rose
|
9be238b149
|
support panda-package-version and panda-package-host-url for dev convenience
|
2010-03-19 22:35:46 +00:00 |
rdb
|
f29d6d3dc7
|
Do it better, faster
|
2010-03-14 14:47:52 +00:00 |
rdb
|
4c623bf8a2
|
I overlooked one ABI-compat fix for OSX
|
2010-03-14 14:34:44 +00:00 |
rdb
|
d668a53639
|
More about ABI compatibility:
* Fixed the bug on non-Windows where the incorrect libraries are located
* OSX dylibs now have compatibility_version and current_version set
|
2010-03-14 11:48:08 +00:00 |
David Rose
|
be494155cf
|
scan_directory() for python
|
2010-03-02 23:16:53 +00:00 |
David Rose
|
1a02e76c28
|
mkdir, rmdir
|
2010-03-02 22:41:08 +00:00 |
David Rose
|
cf3a7ec5f7
|
plugin version
|
2010-03-02 17:44:19 +00:00 |
David Rose
|
882b544805
|
fix forcetype for template instantiations
|
2010-02-28 03:29:03 +00:00 |
rdb
|
d9345815b9
|
Introducing ABI compatibility between sequential releases of Panda3D
|
2010-02-24 09:14:50 +00:00 |
David Rose
|
541c12bb8a
|
use pstrtod
|
2010-02-20 14:48:45 +00:00 |
David Rose
|
25a303055d
|
possible fix for build break
|
2010-02-14 18:05:11 +00:00 |
David Rose
|
a942ce5fbf
|
lists and strings will be automatically coerced into a PTA_blah
|
2010-02-11 22:38:34 +00:00 |
David Rose
|
f6f9e269f4
|
introduce stdpy.pickle module with support for common-node NodePaths within a pickle stream
|
2010-02-10 19:43:58 +00:00 |
David Rose
|
764585f43a
|
temporarily revert dx9 sdk change
|
2010-02-02 19:02:43 +00:00 |
gogg
|
d067be47f5
|
Support for August 2009 DirectX SDK. New DTool configuration macros. Makepanda can now detect Window Framework 6.0A
|
2010-02-02 02:20:25 +00:00 |
rdb
|
d4dcd9cb12
|
Support for the latest version of OpenSSL
|
2010-01-27 16:00:23 +00:00 |
Chris Brunner
|
f12b3b3ab3
|
changed egg-optchar to specify input egg files as coming from a text file, rather than on the command line. useful for rediculously long lists of files to operate on
|
2010-01-20 01:33:30 +00:00 |
rdb
|
d2f8e554e3
|
Plugin version 1.0.0
|
2010-01-16 10:53:00 +00:00 |
enn0x
|
eb1a45529c
|
Add material indices for triangle meshes.
|
2010-01-16 09:10:52 +00:00 |
rdb
|
34fbafebed
|
Forgot to check in this - HAVE_XRANDR
|
2010-01-16 08:09:57 +00:00 |
David Rose
|
5420ab049e
|
LINK_FORCE_STATIC_RELEASE_C_RUNTIME means no manifest file either
|
2010-01-15 03:26:13 +00:00 |
David Rose
|
c45e01c261
|
deal with unset TERM
|
2010-01-14 01:49:35 +00:00 |
David Rose
|
5f1fe45223
|
plugin version 0.9.11
|
2010-01-11 20:27:55 +00:00 |
David Rose
|
58343fa3c1
|
defer PANDA_OFFICIAL_VERSION
|
2010-01-11 20:27:30 +00:00 |
rdb
|
350119fd45
|
Support querying the available display modes in X11
|
2010-01-09 10:50:49 +00:00 |
David Rose
|
5b06c531d7
|
mt builds of certain packages used by plugin
|
2010-01-08 23:55:48 +00:00 |
enn0x
|
1dfe33c7a2
|
Replaced Ageia with NIVIDIA in comment
|
2010-01-07 14:01:13 +00:00 |
enn0x
|
1cc8547449
|
PHYSX_LIBS depends in platform (windows needs .lib, linux not)
|
2010-01-07 13:59:33 +00:00 |
David Rose
|
ae5d6d0bb8
|
don't need to exclude mfc90
|
2010-01-06 23:06:16 +00:00 |
David Rose
|
32f89c6067
|
install_modules
|
2010-01-05 21:04:29 +00:00 |
Redmond Urbino
|
43e7eef6d1
|
make awesomium work in the mac
|
2010-01-05 05:06:53 +00:00 |
David Rose
|
ed32f2264e
|
avoid low-level case-sensitive issues
|
2009-12-31 19:58:36 +00:00 |
David Rose
|
352c901aa1
|
typo
|
2009-12-31 18:25:50 +00:00 |
David Rose
|
ee9f7d73a2
|
plugin version 0.9.10
|
2009-12-31 02:18:18 +00:00 |
David Rose
|
60b1c07c40
|
add awesomium headers
|
2009-12-29 23:22:09 +00:00 |
enn0x
|
1a7942b40c
|
Merging dev_physx_2009 to HEAD.
|
2009-12-28 11:33:36 +00:00 |
David Rose
|
a6c6416af5
|
squelch those obnoxious deprecated-function warnings on mac
|
2009-12-23 20:12:19 +00:00 |
David Rose
|
ec50d7e6fc
|
plugin version 0.9.9
|
2009-12-22 23:44:07 +00:00 |
David Rose
|
67760e8577
|
fix win7/vista i/o performance issues
|
2009-12-16 22:00:06 +00:00 |
David Rose
|
538b8dafdc
|
expose C++ fstream classes
|
2009-12-15 23:03:18 +00:00 |
David Rose
|
25241ed6e9
|
filter out .mm files
|
2009-12-12 01:56:10 +00:00 |
David Rose
|
816ddc0387
|
low-level support for python copy and pickle modules
|
2009-12-10 01:09:06 +00:00 |
David Rose
|
4acb963caf
|
fix missing include
|
2009-12-08 20:05:32 +00:00 |
David Rose
|
0a2a23a83f
|
plugin version
|
2009-12-08 19:58:07 +00:00 |
rdb
|
160f208469
|
Fix issues on Linux and OSX with libraries being located incorrectly
|
2009-12-06 12:59:49 +00:00 |
David Rose
|
b1b2d08b2d
|
fix threaded build
|
2009-12-05 07:40:28 +00:00 |
rdb
|
8cc06d9ed5
|
Convert to Unix newlines
|
2009-11-30 12:42:15 +00:00 |
rdb
|
cffb6fcdcd
|
Add MAKEPANDA defsymbol to export module init function as initlibp3dtoolconfig instead of initlibdtoolconfig
|
2009-11-26 17:28:33 +00:00 |
David Rose
|
1ef4fd333d
|
found pydtool.cxx; bring it up-to-date
|
2009-11-25 22:44:50 +00:00 |
David Rose
|
79a19901a3
|
add interrogate_wrapped.cxx
|
2009-11-25 22:27:09 +00:00 |
David Rose
|
7031285896
|
propagate DTOOL_PLATFORM properly
|
2009-11-24 15:55:30 +00:00 |
David Rose
|
2e531a4650
|
from_os_specific
|
2009-11-24 00:38:53 +00:00 |
David Rose
|
9583a12fc6
|
osx doesn't need a special codepath
|
2009-11-23 23:45:33 +00:00 |
David Rose
|
2c609e1e55
|
up version again
|
2009-11-21 23:27:41 +00:00 |
David Rose
|
a6fca8cd9c
|
version number
|
2009-11-21 01:21:15 +00:00 |
rdb
|
f7009a0602
|
Fixes some really weird typo's, heh.
|
2009-11-20 19:28:50 +00:00 |
Chris Brunner
|
f8bdc2d886
|
adding a variable for maya2egg to allow for alternate binary names (e.g. maya2egg_client)
|
2009-11-19 03:24:56 +00:00 |
David Rose
|
ddd8d012e8
|
SetErrorMode(0)
|
2009-11-18 22:30:42 +00:00 |
David Rose
|
9dd7b52ce8
|
plugin version
|
2009-11-18 19:50:50 +00:00 |
Ken Patel
|
88eea6be3a
|
allow - modifier to append rather than prepend paths within .init definition files
|
2009-11-18 19:46:23 +00:00 |
rdb
|
149c53ad0d
|
Mark libp3vision as a genpycode lib for ppremake
|
2009-11-16 13:17:49 +00:00 |
David Rose
|
b55390ce53
|
add dependency
|
2009-11-04 19:41:31 +00:00 |
David Rose
|
cb3edda46d
|
don't create bundle for static libs
|
2009-11-04 15:52:26 +00:00 |
David Rose
|
691947449c
|
towards a 64-bit mac build
|
2009-11-04 15:46:51 +00:00 |
David Rose
|
d19cf49e44
|
webkit uses a framework for NPAPI
|
2009-11-03 22:49:25 +00:00 |
David Rose
|
b948f7ebf7
|
WIN_RESOURCE_FILE for exe too
|
2009-10-29 23:59:29 +00:00 |
David Rose
|
08d7abb8fb
|
version numbers on plugin dll's
|
2009-10-29 23:21:23 +00:00 |
David Rose
|
63488f3837
|
more version updates
|
2009-10-26 23:16:28 +00:00 |
David Rose
|
131fc2cfdf
|
plugin version
|
2009-10-21 19:50:51 +00:00 |
David Rose
|
6bb6475cf4
|
pystub
|
2009-10-20 23:30:47 +00:00 |
rdb
|
6eee4b9ace
|
Replace remaining instances of Disney license with CMU license
|
2009-10-20 08:16:12 +00:00 |
David Rose
|
375e0bb6c6
|
osx fixes
|
2009-10-19 18:48:53 +00:00 |
David Rose
|
f3949a6da8
|
plugin version 0.9.2
|
2009-10-19 18:12:27 +00:00 |
Redmond Urbino
|
5394d01ed6
|
integrating awesomium with panda
|
2009-10-19 08:23:44 +00:00 |
David Rose
|
fcf4210d9d
|
inc version
|
2009-10-14 21:47:50 +00:00 |
David Rose
|
5008ca2aa8
|
mo' better plugin versioning
|
2009-10-14 21:46:37 +00:00 |
David Rose
|
78b7437b0d
|
don't special-case UNIVERSAL_BINARIES
|
2009-10-13 21:55:24 +00:00 |
David Rose
|
1d3719ccb7
|
add tinyxml.h, fix char *NULL return value case
|
2009-10-13 21:28:18 +00:00 |
David Rose
|
9bce781a90
|
nested comment fix
|
2009-10-13 18:53:00 +00:00 |
David Rose
|
02823288e6
|
HAVE_ACTIVEX
|
2009-10-12 22:24:44 +00:00 |
David Rose
|
3081824ca3
|
add pyconfig.h
|
2009-10-12 18:08:47 +00:00 |
rdb
|
7e2b38fd4a
|
Forgot to add this one, to resolve interrogate issues
|
2009-10-12 06:16:27 +00:00 |
rdb
|
cd3307ccd4
|
Fix compiler warnings with pyconfig.h
|
2009-10-10 11:36:31 +00:00 |
David Rose
|
49688d89c9
|
add Python-friendly DSearchPath::find_all_files()
|
2009-10-10 09:05:35 +00:00 |
David Rose
|
dcc5447688
|
plugin version
|
2009-10-09 23:54:45 +00:00 |
David Rose
|
73a14f9398
|
add x509v3.h
|
2009-10-09 19:03:00 +00:00 |
David Rose
|
f4107d22ac
|
add set_nomatch_chars
|
2009-10-09 18:49:49 +00:00 |
David Rose
|
fdaca46eb9
|
AppData -> Local AppData
|
2009-10-09 01:00:16 +00:00 |
David Rose
|
16636129b7
|
whoops, fix relative filenames
|
2009-10-08 02:53:22 +00:00 |
David Rose
|
062593344a
|
standardize() shouldn't remove leading ./
|
2009-10-07 17:24:51 +00:00 |
David Rose
|
ff91b31732
|
fix midl command
|
2009-10-07 17:19:13 +00:00 |
David Rose
|
712797797e
|
trivial rename
|
2009-10-06 20:58:10 +00:00 |
Chris Brunner
|
1386c733d8
|
adding support for Win7
|
2009-10-06 04:28:36 +00:00 |
David Rose
|
8f5102d889
|
interrogate fix
|
2009-09-30 22:35:58 +00:00 |
rdb
|
76703b71a8
|
Add semaphore.h parser-inc file
|
2009-09-26 13:00:26 +00:00 |
rdb
|
1e88d83feb
|
ar.h to Sources.pp
|
2009-09-24 12:55:21 +00:00 |
David Rose
|
33af8bd0a3
|
windowsism
|
2009-09-21 21:32:23 +00:00 |
rdb
|
366baaa6a7
|
Fix interrogate issues with ode
|
2009-09-20 15:45:25 +00:00 |
David Rose
|
1482e4732e
|
not so much wx
|
2009-09-18 00:37:43 +00:00 |
David Rose
|
57060ca789
|
wx-config for linux
|
2009-09-17 18:42:18 +00:00 |
David Rose
|
63960eaaa8
|
show-dll-error-dialog
|
2009-09-16 20:40:13 +00:00 |
David Rose
|
e9b573cb19
|
show-dll-error-dialog
|
2009-09-16 20:37:42 +00:00 |
David Rose
|
aa58854da8
|
minor typo
|
2009-09-16 00:51:58 +00:00 |
David Rose
|
e6cb4038b2
|
idl rules
|
2009-09-15 20:50:10 +00:00 |
David Rose
|
9a96ac6a23
|
fix return
|
2009-09-15 19:02:54 +00:00 |
David Rose
|
1872104e61
|
add per-overload comments and make_seq synthetic functions to interrogatedb
|
2009-09-15 13:36:07 +00:00 |
rdb
|
453381a0b1
|
Fix OpenGL compile issues on PC-BSD
|
2009-09-14 17:13:36 +00:00 |
rdb
|
472c0a501d
|
working config pp file for freebsd
|
2009-09-14 16:52:25 +00:00 |
David Rose
|
168cc68e65
|
copy_to() should imply binary form
|
2009-09-07 02:04:54 +00:00 |
rdb
|
bdb3d15332
|
More PHAVE fixes
|
2009-09-03 18:43:47 +00:00 |
rdb
|
45ad239e59
|
HAVE -> PHAVE
|
2009-09-03 15:41:24 +00:00 |
David Rose
|
afc34e047d
|
install .so's with 755
|
2009-08-31 16:34:57 +00:00 |
David Rose
|
cfbac6e51a
|
add write()
|
2009-08-31 06:11:34 +00:00 |
David Rose
|
5f0b8a9a6a
|
fix rename_to() on windows
|
2009-08-26 22:56:56 +00:00 |
David Rose
|
7f4481ef2d
|
use underscores instead of dots in platform separators
|
2009-08-24 19:39:26 +00:00 |
David Rose
|
c30ae4fc99
|
forgot HAVE_GETOPT_H
|
2009-08-21 17:26:26 +00:00 |