~glmark2-dev/glmark2/canvas-drm-rebranch

« back to all changes in this revision

Viewing changes to wscript

  • Committer: Alexandros Frantzis
  • Date: 2012-07-27 09:11:50 UTC
  • Revision ID: alexandros.frantzis@linaro.org-20120727091150-bkc6qb27491c7rzx
Include <stdint.h> to ensure proper builds on all architectures and OSes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    ctx.check_tool('compiler_cxx')
37
37
 
38
38
    # Check required headers
39
 
    req_headers = ['stdlib.h', 'string.h', 'unistd.h', 'fcntl.h', 'stdio.h', 'jpeglib.h']
 
39
    req_headers = ['stdlib.h', 'string.h', 'stdint.h', 'stdio.h', 'jpeglib.h']
40
40
    for header in req_headers:
41
41
        ctx.check_cxx(header_name = header, auto_add_header_name = True, mandatory = True)
42
42