Changeset 26714f229b249ab989cecd121344689354ff355a
- Timestamp:
- 02/01/08 11:50:19
(7 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1201863019 +0000
- git-parent:
[9291c27e32bc30d4036b74c55d62566e3f779398]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1201863019 +0000
- Message:
test/headers.c: Make sure LIBVLC isn't defined.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r47756a7 |
r26714f2 |
|
| 27 | 27 | #define PACKAGE "vlc" |
|---|
| 28 | 28 | |
|---|
| | 29 | /* Because we are from src/ __LIBVLC__ is defined, but we don't want that, |
|---|
| | 30 | * as we act here as a third-party program just linking to libvlc */ |
|---|
| | 31 | #ifdef __LIBVLC__ |
|---|
| | 32 | # undef __LIBVLC__ |
|---|
| | 33 | #endif |
|---|
| | 34 | |
|---|
| 29 | 35 | #include <vlc/vlc.h> |
|---|
| 30 | 36 | #include <vlc/libvlc.h> |
|---|