diff options
author | root <root@localhost.localdomain> | 2008-03-01 10:13:03 +0800 |
---|---|---|
committer | root <root@localhost.localdomain> | 2008-03-01 10:13:03 +0800 |
commit | cbf726c635280ea79524e94d6e993ed29c647bd2 (patch) | |
tree | c6bd574d26f242b83a5f541385607023d223c179 /src | |
parent | d5b5a0e603e47dd3782c41685e75c6bd2d9e1016 (diff) |
Make sure used symbols are of public visibility
Diffstat (limited to 'src')
-rw-r--r-- | src/ast_driver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ast_driver.c b/src/ast_driver.c index 5d6ea9d..da18748 100644 --- a/src/ast_driver.c +++ b/src/ast_driver.c @@ -109,7 +109,7 @@ static Bool ASTModeInit(ScrnInfoPtr pScrn, DisplayModePtr mode); * This is intentionally screen-independent. It indicates the binding * choice made in the first PreInit. */ -DriverRec AST = { +_X_EXPORT DriverRec AST = { AST_VERSION, AST_DRIVER_NAME, ASTIdentify, @@ -258,7 +258,7 @@ static XF86ModuleVersionInfo astVersRec = { {0, 0, 0, 0} }; -XF86ModuleData astModuleData = { &astVersRec, astSetup, NULL }; +_X_EXPORT XF86ModuleData astModuleData = { &astVersRec, astSetup, NULL }; static pointer astSetup(pointer module, pointer opts, int *errmaj, int *errmin) |