diff options
author | Dan Winship <danw@src.gnome.org> | 2001-09-26 22:56:33 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-09-26 22:56:33 +0800 |
commit | 7bef79ae12fa4adff92bc2ee08c885c5355642c3 (patch) | |
tree | 52e845c28163e3b5f064a3d5080dfddc4a8ecb04 | |
parent | 37c137259f037993e7e5bb17090bc9e23483dac9 (diff) | |
download | gsoc2013-evolution-7bef79ae12fa4adff92bc2ee08c885c5355642c3.tar gsoc2013-evolution-7bef79ae12fa4adff92bc2ee08c885c5355642c3.tar.gz gsoc2013-evolution-7bef79ae12fa4adff92bc2ee08c885c5355642c3.tar.bz2 gsoc2013-evolution-7bef79ae12fa4adff92bc2ee08c885c5355642c3.tar.lz gsoc2013-evolution-7bef79ae12fa4adff92bc2ee08c885c5355642c3.tar.xz gsoc2013-evolution-7bef79ae12fa4adff92bc2ee08c885c5355642c3.tar.zst gsoc2013-evolution-7bef79ae12fa4adff92bc2ee08c885c5355642c3.zip |
Add -export-dynamic to make glade custom widgets work on non-Linux.
* gui/Makefile.am (evolution_calendar_LDFLAGS): Add
-export-dynamic to make glade custom widgets work on non-Linux.
svn path=/trunk/; revision=13150
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 3e3418be4c..b3aee4978c 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2001-09-26 Dan Winship <danw@ximian.com> + + * gui/Makefile.am (evolution_calendar_LDFLAGS): Add + -export-dynamic to make glade custom widgets work on non-Linux. + 2001-09-26 Rodrigo Moya <rodrigo@ximian.com> * cal-util/cal-util.h: added CAL_MODE_INVALID to CalMode enum diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am index c598bc2150..45403cd69c 100644 --- a/calendar/gui/Makefile.am +++ b/calendar/gui/Makefile.am @@ -171,7 +171,7 @@ evolution_calendar_LDADD = \ $(GAL_LIBS) \ $(INTLLIBS) -#evolution_calendar_LDFLAGS = `gnome-config --libs gdk_pixbuf` +evolution_calendar_LDFLAGS = -export-dynamic oafdir = $(datadir)/oaf oaf_in_files = \ |