diff options
author | Ryan Lortie <desrt@desrt.ca> | 2011-01-25 18:16:19 -0500 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2011-01-25 18:16:19 -0500 |
commit | 7c5ecbca4fce2b21bbca155b3011fc67d20c67a3 (patch) | |
tree | e9712d0e86b3c99be48e74a73b060489697d993a /gsettings | |
parent | 80a5c1a5d0db2953b815255c99ceeaedb5408ae1 (diff) | |
download | dconf-7c5ecbca4fce2b21bbca155b3011fc67d20c67a3.tar.gz |
Drop from libtool days: -avoid-version and -module
These flags were required to prevent libtool from trying to soname the
library. They aren't needed with normal linkers and actually cause some
problems with newer binutils.
Diffstat (limited to 'gsettings')
-rw-r--r-- | gsettings/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gsettings/Makefile.am b/gsettings/Makefile.am index 5639361..ace7da0 100644 --- a/gsettings/Makefile.am +++ b/gsettings/Makefile.am @@ -4,7 +4,7 @@ INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/gvdb -I$(top_srcdir)/engine $( giomodules_PROGRAMS = libdconfsettings.so libdconfsettings_so_LDADD = $(gio_LIBS) -libdconfsettings_so_LDFLAGS = -module -avoid-version -shared +libdconfsettings_so_LDFLAGS = -shared libdconfsettings_so_SOURCES = \ ../engine/dconf-engine.c \ ../common/dconf-shmdir.c \ |