unix.pcf
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:5k
源码类别:

Symbian

开发平台:

Visual C++

  1. # -*- python -*-
  2. # ***** BEGIN LICENSE BLOCK *****
  3. # Source last modified: $Id: unix.pcf,v 1.4.10.3.2.1 2004/09/23 22:39:31 neotron Exp $
  4. # Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5. # The contents of this file, and the files included with this file,
  6. # are subject to the current version of the RealNetworks Public
  7. # Source License (the "RPSL") available at
  8. # http://www.helixcommunity.org/content/rpsl unless you have licensed
  9. # the file under the current version of the RealNetworks Community
  10. # Source License (the "RCSL") available at
  11. # http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  12. # will apply. You may also obtain the license terms directly from
  13. # RealNetworks.  You may not use this file except in compliance with
  14. # the RPSL or, if you have a valid RCSL with RealNetworks applicable
  15. # to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  16. # the rights, obligations and limitations governing use of the
  17. # contents of the file.
  18. # Alternatively, the contents of this file may be used under the
  19. # terms of the GNU General Public License Version 2 or later (the
  20. # "GPL") in which case the provisions of the GPL are applicable
  21. # instead of those above. If you wish to allow use of your version of
  22. # this file only under the terms of the GPL, and not to allow others
  23. # to use your version of this file under the terms of either the RPSL
  24. # or RCSL, indicate your decision by deleting the provisions above
  25. # and replace them with the notice and other provisions required by
  26. # the GPL. If you do not delete the provisions above, a recipient may
  27. # use your version of this file under the terms of any one of the
  28. # RPSL, the RCSL or the GPL.
  29. # This file is part of the Helix DNA Technology. RealNetworks is the
  30. # developer of the Original Code and owns the copyrights in the
  31. # portions it created.
  32. # This file, and the files included with this file, is distributed
  33. # and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  34. # KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  35. # ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  36. # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  37. # ENJOYMENT OR NON-INFRINGEMENT.
  38. # Technology Compatibility Kit Test Suite(s) Location:
  39. #    http://www.helixcommunity.org/content/tck
  40. # Contributor(s):
  41. # ***** END LICENSE BLOCK *****
  42. #
  43. # Unixsite -- Provides site window & video surface
  44. # We don't support, for size, overlays or any of the x86 optimizations
  45. # in the mini site.
  46. if( 'HELIX_FEATURE_MINI_SITE' not in project.defines):
  47.       ###############################################
  48.       #
  49.       # Overlay Support
  50.       #
  51.       if 'HELIX_CONFIG_XVIDEO' in project.defines :
  52.                 project.AddDefines('_OVERLAY');
  53.                 #project.AddDefines('_TEST_COLOR_CONTROLS');
  54.                 #project.AddDefines('HELIX_FEATURE_HARDWARE_COLOR_CONTROLS');
  55.       #
  56.       # End Overlay Support
  57.       ###############################################
  58.       if platform.name in ('linux2', 'linux-i386') and sysinfo.arch == 'i386':
  59.               project.objsrcs[-1:-1] = ['i386/elf/alphablend.o']
  60.               project.AddDefines('_USE_MMX');
  61. #By default we only include the RGB32 color converter for the 
  62. #mini site to keep the size down. Change this to whatever color
  63. #conver(s) you need.
  64. if ('HELIX_FEATURE_MINI_SITE' in project.defines):
  65.         project.AddDefines('HELIX_FEATURE_CC_RGB32out');
  66. if( 'HELIX_FEATURE_AA_SITE' in project.defines):
  67.       project.sys_libraries.append('aa');
  68. project.exported_func = ['GetBestVisual']
  69. project.sys_libraries.append('X11')
  70. project.sys_libraries.append('Xext')
  71. project.AddIncludes('.', './pub',
  72.                     'pub/platform/unix',
  73.                     'platform/unix',
  74.                     '../colconverter/pub',
  75.                     '../../client/videosvc/pub',
  76.                     '../../common/system/pub/platform/unix')
  77. if (not project.IsDefined("QWS")):
  78.     #Add common unix files
  79.     project.AddSources('platform/unix/visuals.cpp');
  80.     project.AddSources('platform/unix/unixcmap.c');
  81.  
  82. #are we compiling the full blown site or the mini site?
  83. if ( project.IsDefined("HELIX_FEATURE_AA_SITE")):
  84.       
  85.       project.AddSources('platform/unix/maasurf.cpp',
  86.                          'platform/unix/munixsite.cpp')
  87.       
  88. elif (project.IsDefined("HELIX_FEATURE_LINUX_FB_SITE")):
  89.       project.AddSources('platform/unix/linux_fb_site.cpp')
  90.       project.AddSources('platform/unix/linux_fb_surf.cpp')
  91.       
  92. elif (project.IsDefined("HELIX_FEATURE_MINI_SITE")):
  93.       project.AddSources('platform/unix/munixsurf.cpp',
  94.                          'platform/unix/munixsite.cpp')
  95. else:
  96.       project.AddSources('platform/unix/visuals.cpp',
  97.                          'platform/unix/unixsite.cpp',
  98.                          'platform/unix/unixsurf.cpp',
  99.                          'platform/unix/unixroot.cpp',
  100.                          'platform/unix/shmhelp.cpp',
  101.                          'platform/unix/sitetext.cpp')
  102.             
  103.             
  104.