Show
Ignore:
Timestamp:
05/24/08 09:39:07 (4 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1211614747 +0300
git-parent:

[54dc1499af57b6f265f73292146168b0b9a1d91e]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1211614747 +0300
Message:

-export-dynamic is no sense for libs, use -export-symbol (or nothing)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/common.am

    r84d0f81 r67ad2d4  
    1313CLEANFILES = $(BUILT_SOURCES) 
    1414 
    15 if HAVE_PLUGINS 
    1615LTLIBVLCCORE = $(top_builddir)/src/libvlccore.la 
    1716 
     
    2120AM_LDFLAGS = -rpath '$(libvlcdir)' \ 
    2221    -avoid-version -module -no-undefined \ 
     22    -export-symbol-regex ^vlc_entry \ 
    2323    -shrext $(LIBEXT) \ 
    2424     `$(VLC_CONFIG) --ldflags plugin $@` 
    2525AM_LIBADD = `$(VLC_CONFIG) -libs plugin $@` $(LTLIBVLCCORE) 
    26  
    27 if HAVE_COMPILER_EXPORT 
    28 AM_LDFLAGS += -export-dynamic 
    29 else 
    30 AM_LDFLAGS += -export-symbol-regex ^vlc_entry 
    31 endif 
    32 endif 
    3326 
    3427include $(srcdir)/Modules.am