|
Revision 359a9bafcc9026aa095325087867fc2954f8a8b9, 263 bytes
(checked in by Derk-Jan Hartman <hartman@videolan.org>, 4 years ago)
|
* screen module for OSX. Does not yet work. Seems close, but can't find the problem for now..
|
- Property mode set to
100644
|
| Line | |
|---|
| 1 |
if HAVE_WIN32 |
|---|
| 2 |
screen_extra = win32.c |
|---|
| 3 |
else |
|---|
| 4 |
if HAVE_BEOS |
|---|
| 5 |
screen_extra = beos.cpp |
|---|
| 6 |
else |
|---|
| 7 |
if HAVE_DARWIN |
|---|
| 8 |
screen_extra = mac.c |
|---|
| 9 |
else |
|---|
| 10 |
screen_extra = x11.c |
|---|
| 11 |
endif |
|---|
| 12 |
endif |
|---|
| 13 |
endif |
|---|
| 14 |
SOURCES_screen = \ |
|---|
| 15 |
screen.c \ |
|---|
| 16 |
screen.h \ |
|---|
| 17 |
$(screen_extra) \ |
|---|
| 18 |
$(NULL) |
|---|