Mercurial > sdl-ios-xcode
comparison configure.in @ 292:eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Incorporated XFree86 extension libraries into the source
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 05 Mar 2002 19:55:32 +0000 |
parents | 3ea69fd0b095 |
children | d2d48e10f370 |
comparison
equal
deleted
inserted
replaced
291:68a8a8237c09 | 292:eadc0746dfaf |
---|---|
370 | 370 |
371 dnl See if the NAS audio interface is supported | 371 dnl See if the NAS audio interface is supported |
372 CheckNAS() | 372 CheckNAS() |
373 { | 373 { |
374 AC_ARG_ENABLE(nas, | 374 AC_ARG_ENABLE(nas, |
375 [ --enable-nas support the NAS audio API [default=yes]], | 375 [ --enable-nas support the NAS audio API [default=yes]], |
376 , enable_nas=yes) | 376 , enable_nas=yes) |
377 if test x$enable_audio = xyes -a x$enable_nas = xyes; then | 377 if test x$enable_audio = xyes -a x$enable_nas = xyes; then |
378 AC_MSG_CHECKING(for NAS audio support) | 378 AC_MSG_CHECKING(for NAS audio support) |
379 have_nas=no | 379 have_nas=no |
380 if test -r /usr/X11R6/include/audio/audiolib.h; then | 380 if test -r /usr/X11R6/include/audio/audiolib.h; then |
392 | 392 |
393 dnl rcg07142001 See if the user wants the disk writer audio driver... | 393 dnl rcg07142001 See if the user wants the disk writer audio driver... |
394 CheckDiskAudio() | 394 CheckDiskAudio() |
395 { | 395 { |
396 AC_ARG_ENABLE(diskaudio, | 396 AC_ARG_ENABLE(diskaudio, |
397 [ --enable-diskaudio support the disk writer audio driver [default=yes]], | 397 [ --enable-diskaudio support the disk writer audio driver [default=yes]], |
398 , enable_diskaudio=yes) | 398 , enable_diskaudio=yes) |
399 if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then | 399 if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then |
400 CFLAGS="$CFLAGS -DDISKAUD_SUPPORT" | 400 CFLAGS="$CFLAGS -DDISKAUD_SUPPORT" |
401 AUDIO_SUBDIRS="$AUDIO_SUBDIRS disk" | 401 AUDIO_SUBDIRS="$AUDIO_SUBDIRS disk" |
402 AUDIO_DRIVERS="$AUDIO_DRIVERS disk/libaudio_disk.la" | 402 AUDIO_DRIVERS="$AUDIO_DRIVERS disk/libaudio_disk.la" |
443 } | 443 } |
444 | 444 |
445 dnl Find the nanox include and library directories | 445 dnl Find the nanox include and library directories |
446 CheckNANOX() | 446 CheckNANOX() |
447 { | 447 { |
448 AC_ARG_ENABLE(video-nanox, | 448 AC_ARG_ENABLE(video-nanox, |
449 [ --enable-video-nanox use nanox video driver [default=no]], | 449 [ --enable-video-nanox use nanox video driver [default=no]], |
450 , enable_video_nanox=no) | 450 , enable_video_nanox=no) |
451 AC_ARG_ENABLE(nanox-debug, | 451 AC_ARG_ENABLE(nanox-debug, |
452 [ --enable-nanox-debug print debug messages [default=no]], | 452 [ --enable-nanox-debug print debug messages [default=no]], |
453 , enable_nanox_debug=no) | 453 , enable_nanox_debug=no) |
454 AC_ARG_ENABLE(nanox-share-memory, | 454 AC_ARG_ENABLE(nanox-share-memory, |
455 [ --enable-nanox-share-memory use share memory [default=no]], | 455 [ --enable-nanox-share-memory use share memory [default=no]], |
456 , enable_nanox_share_memory=no) | 456 , enable_nanox_share_memory=no) |
457 | 457 |
458 AC_ARG_WITH(nanox_pixel_type, | 458 AC_ARG_WITH(nanox_pixel_type, |
459 [ --with-nanox-pixel-type=[rgb/0888/888/565/555/332/pal]]) | 459 [ --with-nanox-pixel-type=[rgb/0888/888/565/555/332/pal]]) |
460 | 460 |
461 if test x$enable_video = xyes -a x$enable_video_nanox = xyes; then | 461 if test x$enable_video = xyes -a x$enable_video_nanox = xyes; then |
462 if test x$enable_nanox_debug = xyes; then | 462 if test x$enable_nanox_debug = xyes; then |
463 CFLAGS="$CFLAGS -DENABLE_NANOX_DEBUG" | 463 CFLAGS="$CFLAGS -DENABLE_NANOX_DEBUG" |
464 fi | 464 fi |
465 | 465 |
466 if test x$enable_nanox_share_memory = xyes; then | 466 if test x$enable_nanox_share_memory = xyes; then |
467 CFLAGS="$CFLAGS -DNANOX_SHARE_MEMORY" | 467 CFLAGS="$CFLAGS -DNANOX_SHARE_MEMORY" |
468 fi | 468 fi |
469 | 469 |
470 case "$with_nanox_pixel_type" in | 470 case "$with_nanox_pixel_type" in |
471 rgb) CFLAGS="$CFLAGS -DNANOX_PIXEL_RGB" ;; | 471 rgb) CFLAGS="$CFLAGS -DNANOX_PIXEL_RGB" ;; |
472 0888) CFLAGS="$CFLAGS -DNANOX_PIXEL_0888" ;; | 472 0888) CFLAGS="$CFLAGS -DNANOX_PIXEL_0888" ;; |
473 888) CFLAGS="$CFLAGS -DNANOX_PIXEL_888" ;; | 473 888) CFLAGS="$CFLAGS -DNANOX_PIXEL_888" ;; |
474 565) CFLAGS="$CFLAGS -DNANOX_PIXEL_565" ;; | 474 565) CFLAGS="$CFLAGS -DNANOX_PIXEL_565" ;; |
475 555) CFLAGS="$CFLAGS -DNANOX_PIXEL_555" ;; | 475 555) CFLAGS="$CFLAGS -DNANOX_PIXEL_555" ;; |
476 332) CFLAGS="$CFLAGS -DNANOX_PIXEL_332" ;; | 476 332) CFLAGS="$CFLAGS -DNANOX_PIXEL_332" ;; |
477 pal) CFLAGS="$CFLAGS -DNANOX_PIXEL_PAL" ;; | 477 pal) CFLAGS="$CFLAGS -DNANOX_PIXEL_PAL" ;; |
478 *) AC_MSG_ERROR([Invalid nanox_pixel_type]);; | 478 *) AC_MSG_ERROR([Invalid nanox_pixel_type]);; |
479 esac | 479 esac |
480 | 480 |
481 CFLAGS="$CFLAGS $X_CFLAGS -DENABLE_NANOX" | 481 CFLAGS="$CFLAGS $X_CFLAGS -DENABLE_NANOX" |
482 SYSTEM_LIBS="$SYSTEM_LIBS -lnano-X" | 482 SYSTEM_LIBS="$SYSTEM_LIBS -lnano-X" |
483 VIDEO_SUBDIRS="$VIDEO_SUBDIRS nanox" | 483 VIDEO_SUBDIRS="$VIDEO_SUBDIRS nanox" |
484 VIDEO_DRIVERS="$VIDEO_DRIVERS nanox/libvideo_nanox.la" | 484 VIDEO_DRIVERS="$VIDEO_DRIVERS nanox/libvideo_nanox.la" |
485 fi | 485 fi |
486 } | 486 } |
487 | 487 |
488 dnl Find the X11 include and library directories | 488 dnl Find the X11 include and library directories |
489 CheckX11() | 489 CheckX11() |
490 { | 490 { |
493 , enable_video_x11=yes) | 493 , enable_video_x11=yes) |
494 if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then | 494 if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then |
495 AC_PATH_X | 495 AC_PATH_X |
496 AC_PATH_XTRA | 496 AC_PATH_XTRA |
497 if test x$have_x = xyes; then | 497 if test x$have_x = xyes; then |
498 CFLAGS="$CFLAGS $X_CFLAGS -DENABLE_X11" | 498 CFLAGS="$CFLAGS $X_CFLAGS -DENABLE_X11 -Isrc/video" |
499 if test x$ac_cv_func_shmat != xyes; then | 499 if test x$ac_cv_func_shmat != xyes; then |
500 CFLAGS="$CFLAGS -DNO_SHARED_MEMORY" | 500 CFLAGS="$CFLAGS -DNO_SHARED_MEMORY" |
501 fi | 501 fi |
502 SYSTEM_LIBS="$SYSTEM_LIBS $X_LIBS -lX11 -lXext" | 502 SYSTEM_LIBS="$SYSTEM_LIBS $X_LIBS -lX11 -lXext" |
503 VIDEO_SUBDIRS="$VIDEO_SUBDIRS x11" | 503 VIDEO_SUBDIRS="$VIDEO_SUBDIRS x11" |
509 if test x$enable_video_x11_vm = xyes; then | 509 if test x$enable_video_x11_vm = xyes; then |
510 AC_MSG_CHECKING(for XFree86 VidMode 1.0 support) | 510 AC_MSG_CHECKING(for XFree86 VidMode 1.0 support) |
511 video_x11_vm=no | 511 video_x11_vm=no |
512 AC_TRY_COMPILE([ | 512 AC_TRY_COMPILE([ |
513 #include <X11/Xlib.h> | 513 #include <X11/Xlib.h> |
514 #include <X11/extensions/xf86vmode.h> | 514 #include <XFree86/extensions/xf86vmode.h> |
515 ],[ | 515 ],[ |
516 ],[ | 516 ],[ |
517 video_x11_vm=yes | 517 video_x11_vm=yes |
518 ]) | 518 ]) |
519 AC_MSG_RESULT($video_x11_vm) | 519 AC_MSG_RESULT($video_x11_vm) |
520 if test x$video_x11_vm = xyes; then | 520 if test x$video_x11_vm = xyes; then |
521 CFLAGS="$CFLAGS -DXFREE86_VM" | 521 CFLAGS="$CFLAGS -DXFREE86_VM" |
522 # Check for nasty XFree86 4.0/Glide hack | 522 VIDEO_SUBDIRS="$VIDEO_SUBDIRS XFree86/Xxf86vm" |
523 AC_ARG_ENABLE(xfree86_glidehack, | 523 VIDEO_DRIVERS="$VIDEO_DRIVERS XFree86/Xxf86vm/libXFree86_Xxf86vm.la" |
524 [ --enable-xfree86-glidehack Alternate vidmode lib for old Glide [default=no]], | |
525 , enable_xfreeglidehack=no) | |
526 if test x$enable_xfree86_glidehack = xyes; then | |
527 ac_save_libs="$LIBS" | |
528 LIBS="$LIBS $X_LIBS -lX11 -lXext" | |
529 if test x$xfree86_glidehack = x; then | |
530 AC_CHECK_LIB(Xxf86vm, XF40VidModeQueryExtension, xfree86_glidehack=Xxf86vm) | |
531 fi | |
532 if test x$xfree86_glidehack = x; then | |
533 AC_CHECK_LIB(Xxf86vm40, XF40VidModeQueryExtension, xfree86_glidehack=Xxf86vm40) | |
534 fi | |
535 LIBS="$ac_save_libs" | |
536 fi | |
537 if test x$xfree86_glidehack != x; then | |
538 CFLAGS="$CFLAGS -DXFREE86_VM_DYNAMIC_HACK" | |
539 SYSTEM_LIBS="$SYSTEM_LIBS -l$xfree86_glidehack" | |
540 else | |
541 SYSTEM_LIBS="$SYSTEM_LIBS -lXxf86vm" | |
542 fi | |
543 AC_MSG_CHECKING(for XFree86 VidMode gamma support) | 524 AC_MSG_CHECKING(for XFree86 VidMode gamma support) |
544 video_x11_vmgamma=no | 525 video_x11_vmgamma=no |
545 AC_TRY_COMPILE([ | 526 AC_TRY_COMPILE([ |
546 #include <X11/Xlib.h> | 527 #include <X11/Xlib.h> |
547 #include <X11/extensions/xf86vmode.h> | 528 #include <XFree86/extensions/xf86vmode.h> |
548 ],[ | 529 ],[ |
549 XF86VidModeGamma gamma; | 530 SDL_NAME(XF86VidModeGamma) gamma; |
550 ],[ | 531 ],[ |
551 video_x11_vmgamma=yes | 532 video_x11_vmgamma=yes |
552 ]) | 533 ]) |
553 AC_MSG_RESULT($video_x11_vmgamma) | 534 AC_MSG_RESULT($video_x11_vmgamma) |
554 if test x$video_x11_vmgamma = xyes; then | 535 if test x$video_x11_vmgamma = xyes; then |
565 if test x$enable_dga = xyes; then | 546 if test x$enable_dga = xyes; then |
566 AC_MSG_CHECKING(for XFree86 DGA 1.0 support) | 547 AC_MSG_CHECKING(for XFree86 DGA 1.0 support) |
567 video_x11_dga=no | 548 video_x11_dga=no |
568 AC_TRY_COMPILE([ | 549 AC_TRY_COMPILE([ |
569 #include <X11/Xlib.h> | 550 #include <X11/Xlib.h> |
570 #include <X11/extensions/xf86dga.h> | 551 #include <XFree86/extensions/xf86dga.h> |
571 ],[ | 552 ],[ |
572 ],[ | 553 ],[ |
573 video_x11_dga=yes | 554 video_x11_dga=yes |
574 ]) | 555 ]) |
575 AC_MSG_RESULT($video_x11_dga) | 556 AC_MSG_RESULT($video_x11_dga) |
576 if test x$video_x11_dga = xyes; then | 557 if test x$video_x11_dga = xyes; then |
577 CFLAGS="$CFLAGS -DXFREE86_DGAMOUSE" | 558 CFLAGS="$CFLAGS -DXFREE86_DGAMOUSE" |
578 if test x$enable_video_x11_dgamouse = xyes; then | 559 if test x$enable_video_x11_dgamouse = xyes; then |
579 CFLAGS="$CFLAGS -DDEFAULT_DGAMOUSE" | 560 CFLAGS="$CFLAGS -DDEFAULT_DGAMOUSE" |
580 fi | 561 fi |
581 SYSTEM_LIBS="$SYSTEM_LIBS -lXxf86dga" | 562 VIDEO_SUBDIRS="$VIDEO_SUBDIRS XFree86/Xxf86dga" |
563 VIDEO_DRIVERS="$VIDEO_DRIVERS XFree86/Xxf86dga/libXFree86_Xxf86dga.la" | |
582 fi | 564 fi |
583 fi | 565 fi |
584 AC_ARG_ENABLE(video-x11-xv, | 566 AC_ARG_ENABLE(video-x11-xv, |
585 [ --enable-video-x11-xv use X11 XvImage extension for video [default=yes]], | 567 [ --enable-video-x11-xv use X11 XvImage extension for video [default=yes]], |
586 , enable_video_x11_xv=yes) | 568 , enable_video_x11_xv=yes) |
590 AC_TRY_COMPILE([ | 572 AC_TRY_COMPILE([ |
591 #include <X11/Xlib.h> | 573 #include <X11/Xlib.h> |
592 #include <sys/ipc.h> | 574 #include <sys/ipc.h> |
593 #include <sys/shm.h> | 575 #include <sys/shm.h> |
594 #include <X11/extensions/XShm.h> | 576 #include <X11/extensions/XShm.h> |
595 #include <X11/extensions/Xvlib.h> | 577 #include <XFree86/extensions/Xvlib.h> |
596 ],[ | 578 ],[ |
597 XvImage *image; | 579 SDL_NAME(XvImage) *image; |
598 ],[ | 580 ],[ |
599 video_x11_xv=yes | 581 video_x11_xv=yes |
600 ]) | 582 ]) |
601 AC_MSG_RESULT($video_x11_xv) | 583 AC_MSG_RESULT($video_x11_xv) |
602 if test x$video_x11_xv = xyes; then | 584 if test x$video_x11_xv = xyes; then |
603 CFLAGS="$CFLAGS -DXFREE86_XV" | 585 CFLAGS="$CFLAGS -DXFREE86_XV" |
604 SYSTEM_LIBS="$SYSTEM_LIBS -lXv" | 586 VIDEO_SUBDIRS="$VIDEO_SUBDIRS XFree86/Xv" |
587 VIDEO_DRIVERS="$VIDEO_DRIVERS XFree86/Xv/libXFree86_Xv.la" | |
605 fi | 588 fi |
606 fi | 589 fi |
607 AC_ARG_ENABLE(video-x11-xinerama, | 590 AC_ARG_ENABLE(video-x11-xinerama, |
608 [ --enable-video-x11-xinerama enable X11 Xinerama support [default=yes]], | 591 [ --enable-video-x11-xinerama enable X11 Xinerama support [default=yes]], |
609 , enable_video_x11_xinerama=yes) | 592 , enable_video_x11_xinerama=yes) |
610 if test x$enable_video_x11_xinerama = xyes; then | 593 if test x$enable_video_x11_xinerama = xyes; then |
611 AC_MSG_CHECKING(for X11 Xinerama support) | 594 AC_MSG_CHECKING(for X11 Xinerama support) |
612 video_x11_xinerama=no | 595 video_x11_xinerama=no |
613 AC_TRY_COMPILE([ | 596 AC_TRY_COMPILE([ |
614 #include <X11/Xlib.h> | 597 #include <X11/Xlib.h> |
615 #include <X11/extensions/Xinerama.h> | 598 #include <XFree86/extensions/Xinerama.h> |
616 ],[ | 599 ],[ |
617 XineramaScreenInfo *xinerama; | 600 SDL_NAME(XineramaScreenInfo) *xinerama; |
618 ],[ | 601 ],[ |
619 video_x11_xinerama=yes | 602 video_x11_xinerama=yes |
620 ]) | 603 ]) |
621 AC_MSG_RESULT($video_x11_xinerama) | 604 AC_MSG_RESULT($video_x11_xinerama) |
622 if test x$video_x11_xinerama = xyes; then | 605 if test x$video_x11_xinerama = xyes; then |
623 CFLAGS="$CFLAGS -DHAVE_XINERAMA" | 606 CFLAGS="$CFLAGS -DHAVE_XINERAMA" |
624 SYSTEM_LIBS="$SYSTEM_LIBS -lXinerama" | 607 VIDEO_SUBDIRS="$VIDEO_SUBDIRS XFree86/Xinerama" |
608 VIDEO_DRIVERS="$VIDEO_DRIVERS XFree86/Xinerama/libXFree86_Xinerama.la" | |
625 fi | 609 fi |
626 fi | 610 fi |
627 AC_ARG_ENABLE(video-x11-xme, | 611 AC_ARG_ENABLE(video-x11-xme, |
628 [ --enable-video-x11-xme enable Xi Graphics XME for fullscreen [default=yes]], | 612 [ --enable-video-x11-xme enable Xi Graphics XME for fullscreen [default=yes]], |
629 , enable_video_x11_xme=yes) | 613 , enable_video_x11_xme=yes) |
646 fi | 630 fi |
647 fi | 631 fi |
648 fi | 632 fi |
649 } | 633 } |
650 | 634 |
635 dnl Find the X11 DGA 2.0 include and library directories | |
636 CheckDGA() | |
637 { | |
638 AC_ARG_ENABLE(video-dga, | |
639 [ --enable-video-dga use DGA 2.0 video driver [default=yes]], | |
640 , enable_video_dga=yes) | |
641 if test x$video_x11_dga = xyes -a x$enable_video_dga = xyes; then | |
642 save_CFLAGS="$CFLAGS"; CFLAGS="$CFLAGS -Isrc/video" | |
643 AC_MSG_CHECKING(for XFree86 DGA 2.0 support) | |
644 video_x11_dga2=no | |
645 AC_TRY_COMPILE([ | |
646 #include <X11/Xlib.h> | |
647 #include <XFree86/extensions/xf86dga.h> | |
648 ],[ | |
649 SDL_NAME(XDGAEvent) xevent; | |
650 ],[ | |
651 video_x11_dga2=yes | |
652 ]) | |
653 AC_MSG_RESULT($video_x11_dga2) | |
654 if test x$video_x11_dga2 = xyes; then | |
655 CFLAGS="$CFLAGS -DENABLE_DGA" | |
656 VIDEO_SUBDIRS="$VIDEO_SUBDIRS dga" | |
657 VIDEO_DRIVERS="$VIDEO_DRIVERS dga/libvideo_dga.la" | |
658 fi | |
659 fi | |
660 } | |
661 | |
651 CheckPHOTON() | 662 CheckPHOTON() |
652 { | 663 { |
653 AC_ARG_ENABLE(video-photon, | 664 AC_ARG_ENABLE(video-photon, |
654 [ --enable-video-photon use QNX Photon video driver [default=yes]], | 665 [ --enable-video-photon use QNX Photon video driver [default=yes]], |
655 , enable_video_photon=yes) | 666 , enable_video_photon=yes) |
671 CFLAGS="$CFLAGS -DENABLE_PHOTON" | 682 CFLAGS="$CFLAGS -DENABLE_PHOTON" |
672 SYSTEM_LIBS="$SYSTEM_LIBS -lph" | 683 SYSTEM_LIBS="$SYSTEM_LIBS -lph" |
673 VIDEO_SUBDIRS="$VIDEO_SUBDIRS photon" | 684 VIDEO_SUBDIRS="$VIDEO_SUBDIRS photon" |
674 VIDEO_DRIVERS="$VIDEO_DRIVERS photon/libvideo_photon.la" | 685 VIDEO_DRIVERS="$VIDEO_DRIVERS photon/libvideo_photon.la" |
675 CheckOpenGLQNX | 686 CheckOpenGLQNX |
676 fi | |
677 fi | |
678 } | |
679 | |
680 dnl Find the X11 DGA 2.0 include and library directories | |
681 CheckDGA() | |
682 { | |
683 AC_ARG_ENABLE(video-dga, | |
684 [ --enable-video-dga use DGA 2.0 video driver [default=yes]], | |
685 , enable_video_dga=yes) | |
686 if test x$video_x11_dga = xyes -a x$enable_video_dga = xyes; then | |
687 AC_MSG_CHECKING(for XFree86 DGA 2.0 support) | |
688 video_x11_dga2=no | |
689 AC_TRY_COMPILE([ | |
690 #include <X11/Xlib.h> | |
691 #include <X11/extensions/xf86dga.h> | |
692 ],[ | |
693 XDGAEvent xevent; | |
694 ],[ | |
695 video_x11_dga2=yes | |
696 ]) | |
697 AC_MSG_RESULT($video_x11_dga2) | |
698 if test x$video_x11_dga2 = xyes; then | |
699 CFLAGS="$CFLAGS -DENABLE_DGA" | |
700 VIDEO_SUBDIRS="$VIDEO_SUBDIRS dga" | |
701 VIDEO_DRIVERS="$VIDEO_DRIVERS dga/libvideo_dga.la" | |
702 fi | 687 fi |
703 fi | 688 fi |
704 } | 689 } |
705 | 690 |
706 dnl Find the framebuffer console includes | 691 dnl Find the framebuffer console includes |
2333 CFLAGS="$CFLAGS -I\$(top_srcdir)/include/SDL" | 2318 CFLAGS="$CFLAGS -I\$(top_srcdir)/include/SDL" |
2334 CFLAGS="$CFLAGS -I\$(top_srcdir)/src -I\$(top_srcdir)/src/$ARCH" | 2319 CFLAGS="$CFLAGS -I\$(top_srcdir)/src -I\$(top_srcdir)/src/$ARCH" |
2335 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/main" | 2320 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/main" |
2336 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/audio" | 2321 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/audio" |
2337 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/video" | 2322 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/video" |
2323 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/video/XFree86/extensions" | |
2338 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/events" | 2324 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/events" |
2339 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/joystick" | 2325 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/joystick" |
2340 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/cdrom" | 2326 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/cdrom" |
2341 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/thread" | 2327 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/thread" |
2342 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/timer" | 2328 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/timer" |
2389 src/audio/ums/Makefile | 2375 src/audio/ums/Makefile |
2390 src/audio/windib/Makefile | 2376 src/audio/windib/Makefile |
2391 src/audio/windx5/Makefile | 2377 src/audio/windx5/Makefile |
2392 src/audio/disk/Makefile | 2378 src/audio/disk/Makefile |
2393 src/video/Makefile | 2379 src/video/Makefile |
2380 src/video/XFree86/Makefile | |
2381 src/video/XFree86/extensions/Makefile | |
2382 src/video/XFree86/Xinerama/Makefile | |
2383 src/video/XFree86/Xv/Makefile | |
2384 src/video/XFree86/Xxf86dga/Makefile | |
2385 src/video/XFree86/Xxf86vm/Makefile | |
2394 src/video/cybergfx/Makefile | 2386 src/video/cybergfx/Makefile |
2395 src/video/x11/Makefile | 2387 src/video/x11/Makefile |
2396 src/video/dga/Makefile | 2388 src/video/dga/Makefile |
2397 src/video/nanox/Makefile | 2389 src/video/nanox/Makefile |
2398 src/video/fbcon/Makefile | 2390 src/video/fbcon/Makefile |