Changeset 359a9bafcc9026aa095325087867fc2954f8a8b9

Show
Ignore:
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
  • configure.ac

    rc624c5f r359a9ba  
    16221622AC_ARG_ENABLE(screen, 
    16231623  [  --enable-screen            Screen capture support (default enabled)]) 
    1624 if test "${enable_screen}" != "no" && test "${SYS}" != "darwin"; then 
    1625   if test "${SYS}" = "mingw32"; then 
     1624if 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 
    16261631    VLC_ADD_PLUGINS([screen]) 
    16271632    VLC_ADD_LDFLAGS([screen],[-lgdi32]) 
  • modules/access/screen/Modules.am

    rc624c5f r359a9ba  
    55screen_extra = beos.cpp 
    66else 
     7if HAVE_DARWIN 
     8screen_extra = mac.c 
     9else 
    710screen_extra = x11.c 
     11endif 
    812endif 
    913endif