Changeset 359a9bafcc9026aa095325087867fc2954f8a8b9
- Timestamp:
- 27/07/04 18:16:31
(4 years ago)
- Author:
- Derk-Jan Hartman <hartman@videolan.org>
- git-committer:
- Derk-Jan Hartman <hartman@videolan.org> 1090944991 +0000
- git-parent:
[7c928551d9c979383f53e5e1fc25bdec993fa07e]
- git-author:
- Derk-Jan Hartman <hartman@videolan.org> 1090944991 +0000
- Message:
* screen module for OSX. Does not yet work. Seems close, but can't find the problem for now..
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc624c5f |
r359a9ba |
|
| 1622 | 1622 | AC_ARG_ENABLE(screen, |
|---|
| 1623 | 1623 | [ --enable-screen Screen capture support (default enabled)]) |
|---|
| 1624 | | if test "${enable_screen}" != "no" && test "${SYS}" != "darwin"; then |
|---|
| 1625 | | if test "${SYS}" = "mingw32"; then |
|---|
| | 1624 | if test "${enable_screen}" != "no"; then |
|---|
| | 1625 | if test "${SYS}" == "darwin"; then |
|---|
| | 1626 | AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [ |
|---|
| | 1627 | VLC_ADD_PLUGINS([screen]) |
|---|
| | 1628 | VLC_ADD_LDFLAGS([screen],[-framework ApplicationServices]) |
|---|
| | 1629 | ]) |
|---|
| | 1630 | elif test "${SYS}" != "mingw32"; then |
|---|
| 1626 | 1631 | VLC_ADD_PLUGINS([screen]) |
|---|
| 1627 | 1632 | VLC_ADD_LDFLAGS([screen],[-lgdi32]) |
|---|
| rc624c5f |
r359a9ba |
|
| 5 | 5 | screen_extra = beos.cpp |
|---|
| 6 | 6 | else |
|---|
| | 7 | if HAVE_DARWIN |
|---|
| | 8 | screen_extra = mac.c |
|---|
| | 9 | else |
|---|
| 7 | 10 | screen_extra = x11.c |
|---|
| | 11 | endif |
|---|
| 8 | 12 | endif |
|---|
| 9 | 13 | endif |
|---|