diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-11-15 12:08:54 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-11-15 12:08:54 +0000 |
commit | bbdb3007c758f18683189546a20335bdddd55801 (patch) | |
tree | d98961c0077bc46173bab0af0f0a770dfd4bc220 /python/pyversion.mk | |
parent | 6d0f016749d7ab90fd7bd7cf97de55c1189db564 (diff) |
INTEGRATION: CWS pythonupgrade (1.1.78); FILE MERGED
2004/10/31 10:48:50 pjanik 1.1.78.2: Fix DOS line endings.
2004/09/30 20:33:17 jbu 1.1.78.1: #i32901#+#i31866# upgrade to version 2.3.4, new build env on windows using nmake instead of msdev
Diffstat (limited to 'python/pyversion.mk')
-rw-r--r-- | python/pyversion.mk | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/python/pyversion.mk b/python/pyversion.mk index 75b67d6b6d3f..b1cb88cfd9cc 100644 --- a/python/pyversion.mk +++ b/python/pyversion.mk @@ -1,6 +1,14 @@ # when you want to change the python version, you must update the d.lst # in the python project accordingly !!! PYMAJOR=2 -PYMINOR=2 -PYMICRO=2 +PYMINOR=3 +PYMICRO=4 PYVERSION=$(PYMAJOR).$(PYMINOR).$(PYMICRO) + +.IF "$(GUI)" == "UNX" +PY_FULL_DLL_NAME=libpython$(PYMAJOR).$(PYMINOR).so.1.0 +PYTHONLIB=-lpython$(PYMAJOR).$(PYMINOR) +.ELSE +PY_FULL_DLL_NAME=python$(PYMAJOR)$(PYMINOR).dll +PYTHONLIB=python$(PYMAJOR)$(PYMINOR).lib +.ENDIF |