diff options
author | Tor Lillqvist <tml@novell.com> | 2005-06-24 13:26:45 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-06-24 13:26:45 +0000 |
commit | 80d0d5690f7d3e773f9c0095b7d3ac8d56b6cce1 (patch) | |
tree | 251c1fd21608bf0f37feb35c8d5a6bff2e4ed032 /gobject | |
parent | 793a9e4dcdbeccaa6f39cfec009b7b01a156a3e3 (diff) |
glib/Makefile.am gmodule/Makefile.am Current GNU tools do understand the
2005-06-24 Tor Lillqvist <tml@novell.com>
* glib/Makefile.am
* gmodule/Makefile.am
* gobject/Makefile.am: Current GNU tools do understand the
PRIVATE keyword.
* glib/gfileutils.c (g_mkdir_with_parents): Return error with
EINVAL also for empty pathnames.
(g_build_pathname_va): Fix typo.
Diffstat (limited to 'gobject')
-rw-r--r-- | gobject/ChangeLog | 5 | ||||
-rw-r--r-- | gobject/Makefile.am | 9 |
2 files changed, 5 insertions, 9 deletions
diff --git a/gobject/ChangeLog b/gobject/ChangeLog index 38041b2da..702bcfbe8 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -1,3 +1,8 @@ +2005-06-24 Tor Lillqvist <tml@novell.com> + + * Makefile.am (install-libtool-import-lib): Current GNU tools do + understand the PRIVATE keyword. + 2005-06-19 Matthias Clasen <mclasen@redhat.com> * gparam.h (GParamFlags): Avoid a warning. (#308295, diff --git a/gobject/Makefile.am b/gobject/Makefile.am index 6fcbd3343..eb636fd5b 100644 --- a/gobject/Makefile.am +++ b/gobject/Makefile.am @@ -54,15 +54,6 @@ if OS_WIN32 export_symbols = -export-symbols gobject.def install-libtool-import-lib: -# Don't put the bug compatibility entries in the import lib! -# (Unfortunately the GNU linker doesn't yet understand the PRIVATE -# directive in .def files.) -# - for entry in `grep PRIVATE gobject.def | sed -e 's/PRIVATE//'`; do \ - file=`$(NM) -A .libs/libgobject-2.0.dll.a | grep $$entry | head -n 1 | cut -d: -f2`; \ - ar d .libs/libgobject-2.0.dll.a $$file; \ - done - $(RANLIB) .libs/libgobject-2.0.dll.a $(INSTALL) .libs/libgobject-2.0.dll.a $(DESTDIR)$(libdir) $(INSTALL) gobject.def $(DESTDIR)$(libdir)/gobject-2.0.def |