diff options
author | Chia-I Wu <[email protected]> | 2010-06-01 07:30:50 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-06-01 07:33:29 +0800 |
commit | 79e5bea3cb498e7a663e0f08db49fe2de764650c (patch) | |
tree | ac497bbdf056c26015c4d05be4fedaa171070569 /src/mapi | |
parent | 4e6c880ea2c68fe9c265d2ff849e5ed3d549cab4 (diff) |
vgapi: Generate PIC objects.
Fixes "...; recompile with -fPIC" error on x86-64. See fdo 28336.
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/vgapi/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/vgapi/SConscript b/src/mapi/vgapi/SConscript index f000c6105b3..bf51264ab94 100644 --- a/src/mapi/vgapi/SConscript +++ b/src/mapi/vgapi/SConscript @@ -38,7 +38,7 @@ if env['platform'] != 'winddk': vgapi_objects = [] for s in mapi_sources: - o = env.Object(s[:-2], '../mapi/' + s) + o = env.SharedObject(s[:-2], '../mapi/' + s) vgapi_objects.append(o) env.Depends(vgapi_objects, vgapi_header) |