Use Windows clipboard code with SDL graphics only. X11 output will use

the X server glue anyway
This commit is contained in:
gbeauche 2004-11-17 00:59:04 +00:00
parent c427f0f536
commit 01a1d4e8b2

View File

@ -481,7 +481,14 @@ if [[ "x$WANT_SDL_VIDEO" = "xyes" ]]; then
if [[ "x$ac_cv_framework_Carbon" = "xyes" ]]; then
EXTRASYSSRCS="$EXTRASYSSRCS ../MacOSX/clip_macosx.cpp"
else
EXTRASYSSRCS="$EXTRASYSSRCS ../dummy/clip_dummy.cpp"
case "$target_os" in
cygwin*)
EXTRASYSSRCS="$EXTRASYSSRCS ../Windows/clip_windows.cpp"
;;
*)
EXTRASYSSRCS="$EXTRASYSSRCS ../dummy/clip_dummy.cpp"
;;
esac
fi
else
VIDEOSRCS="video_x.cpp"