diff options
author | Dave Airlie <airlied@redhat.com> | 2009-08-07 12:05:51 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-08-07 12:05:51 +1000 |
commit | 5fb188b547e0ef4e2f2c59b66a3183b004e4a1e9 (patch) | |
tree | bbe03cbb8ff3df08eed1191a2d0666892d7bf4ce /hw/xfree86/Makefile.am | |
parent | 3047bd067464efb9857960d3fa6324b947faa970 (diff) |
ddx: fix xf86Config.a generation
We were generating a shared library, but this lib is foobar, the parser
requires some symbols from the X server or from the program its being linked
into. If the program its being linked into (say a python .so) has symbol
visibility enabled then it will fail to dynamic link, also if this .so has
symbol visiblity enabled it will fail to dynamic link.
Screw it go back to a .a file really unless someone cleans it up properly.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'hw/xfree86/Makefile.am')
-rw-r--r-- | hw/xfree86/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/Makefile.am b/hw/xfree86/Makefile.am index 898c9b846..b97ebd79f 100644 --- a/hw/xfree86/Makefile.am +++ b/hw/xfree86/Makefile.am @@ -53,7 +53,7 @@ libxorg_la_LIBADD = \ loader/libloader.la \ os-support/libxorgos.la \ common/libcommon.la \ - parser/libxf86config.la \ + parser/libxf86config_internal.la \ dixmods/libdixmods.la \ modes/libxf86modes.la \ ramdac/libramdac.la \ |