~ubuntu-branches/ubuntu/natty/libreoffice-l10n/natty-updates

« back to all changes in this revision

Viewing changes to sources/libreoffice-libs-extern-sys-3.3.0.4/python/pyversion.mk

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2011-01-21 01:37:08 UTC
  • mfrom: (0.6.1) (0.5.1) (0.4.1) (0.1.2)
  • Revision ID: package-import@ubuntu.com-20110121013708-d4rj1blksdgno023
Tags: 1:3.3.0~rc4-1ubuntu1
* Merge 3.3.0~rc4 changes.
* Merged Debian packaging up to r2336.
* libreoffice-writer: Make the java stuff a suggestion instead of a
  recommendation.
* Fix libreoffice-base upgrade, overwriting doc file. LP: #705343.
* Add initial desktop menu translations. LP: #696549. Still needs
  rosetta integration. Use the file lo-desktop.pot.
* Relax dependencies of libreoffice-l10n-xx on libreoffice-common.
* Move the icons zip files back into the libreoffice-style-* packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# when you want to change the python version, you must update the d.lst
 
2
# in the python project accordingly !!!
 
3
PYMAJOR=2
 
4
PYMINOR=6
 
5
PYMICRO=1
 
6
PYVERSION=$(PYMAJOR).$(PYMINOR).$(PYMICRO)
 
7
 
 
8
.IF "$(GUI)" == "UNX"
 
9
.IF "$(OS)" == "MACOSX"
 
10
PY_FULL_DLL_NAME=libpython$(PYMAJOR).$(PYMINOR).dylib
 
11
.ELSE
 
12
PY_FULL_DLL_NAME=libpython$(PYMAJOR).$(PYMINOR).so.1.0
 
13
.ENDIF
 
14
PYTHONLIB=-lpython$(PYMAJOR).$(PYMINOR)
 
15
.ELIF "$(GUI)" == "OS2"
 
16
PY_FULL_DLL_NAME=python$(PYMAJOR)$(PYMINOR).dll
 
17
PYTHONLIB=python$(PYMAJOR)$(PYMINOR).lib
 
18
.ELSE
 
19
.IF "$(COM)" == "GCC"
 
20
PY_FULL_DLL_NAME=libpython$(PYMAJOR).$(PYMINOR).dll
 
21
PYTHONLIB=-lpython$(PYMAJOR).$(PYMINOR)
 
22
.ELSE
 
23
PY_FULL_DLL_NAME=python$(PYMAJOR)$(PYMINOR).dll
 
24
PYTHONLIB=python$(PYMAJOR)$(PYMINOR).lib
 
25
.ENDIF
 
26
.ENDIF