diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-04-18 23:24:48 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-04-18 23:24:48 +0000 |
commit | e4eb0288d0ef482704f9141d23bc5e0f65b185b8 (patch) | |
tree | 8c452c9e5380746f75d379834084ab4202ba9ac9 | |
parent | dca0f59d08dd3e9eaff6bdac551e2a05560e0661 (diff) |
Bug 337442 – [patch] Reduce .plt section
2006-04-18 Behdad Esfahbod <behdad@gnome.org>
Bug 337442 – [patch] Reduce .plt section
* src/Makefile.am: Pass export-symbols-regex to libtool.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/Makefile.am | 4 |
2 files changed, 9 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2006-04-18 Behdad Esfahbod <behdad@gnome.org> + Bug 337442 – [patch] Reduce .plt section + + * src/Makefile.am: Pass export-symbols-regex to libtool. + +2006-04-18 Behdad Esfahbod <behdad@gnome.org> + * src/caps.c (_vte_capability_init), src/caps.h: * src/keymap.c (_vte_keymap_map), src/keymap.h: Make some data structures const by changing char * to char []. diff --git a/src/Makefile.am b/src/Makefile.am index 771282a..d52ec31 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -104,7 +104,9 @@ VERSION_CURRENT=8 # AGE must be incremented when an API or ABI addition is made, and REVISION # must be reset to 0 when this happens. VERSION_AGE=4 -libvte_la_LDFLAGS = @LDFLAGS@ -version-info $(VERSION_CURRENT):$(VERSION_REVISION):$(VERSION_AGE) +libvte_la_LDFLAGS = @LDFLAGS@ \ + -version-info $(VERSION_CURRENT):$(VERSION_REVISION):$(VERSION_AGE) \ + -export-symbols-regex "^vte_terminal_.*|^_vte_pty_.*|^vte_reaper_.*" libvte_la_LIBADD = @LIBS@ @VTE_LIBS@ @X_LIBS@ CLEANFILES = marshal.c marshal.h |