Changeset 7440f8d3b63fbc3a625651701760f2d223061dea
- Timestamp:
- 03/04/08 11:10:48
(6 months ago)
- Author:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr>
- git-committer:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1204625448 +0100
- git-parent:
[b0565043b567402b49412c95e7acc8e82c14912b]
- git-author:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1204625448 +0100
- Message:
python bindings: provide useful defaults for linking when compiling out-of-tree
This allows to compile the bindings from a properly installed VLC (includes and libs in standard locations), as for instance with the libvlc1-dev debian package.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r648ed65 |
r7440f8d |
|
| 72 | 72 | vlcconfig=get_vlcconfig() |
|---|
| 73 | 73 | if vlcconfig is None: |
|---|
| 74 | | return [] |
|---|
| | 74 | return [ '-lvlc', '-lvlc-control' ] |
|---|
| 75 | 75 | else: |
|---|
| 76 | 76 | ldflags = [] |
|---|