diff options
author | Shawn Amundson <amundson@src.gnome.org> | 1997-12-11 17:06:25 +0000 |
---|---|---|
committer | Shawn Amundson <amundson@src.gnome.org> | 1997-12-11 17:06:25 +0000 |
commit | 30e8968f3b8a82229b87a8789dcbd7b462189611 (patch) | |
tree | 146b28b6146cc81ef75bdd8978e2ca270583641b /ltconfig | |
parent | bb698f73f4ba1a0c91090c3c79aa548de7e36a1a (diff) | |
download | gtk+-30e8968f3b8a82229b87a8789dcbd7b462189611.tar.gz |
Change to ltconfig to remove -z text for Solaris x86 Change to configure
* Change to ltconfig to remove -z text for Solaris x86
* Change to configure stuff so compile works on Solaris x86
* Added gdk/gdkkeysyms.h and gdk/gdkcursors.h back into the tree
-Shawn
Diffstat (limited to 'ltconfig')
-rwxr-xr-x | ltconfig | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -793,7 +793,10 @@ else ;; solaris2*) - archive_cmds='$LD -G -z text -h $soname -o $lib$libobjs$deplibs' + case "$host_cpu" in + i386) archive_cmds='$LD -G -h $soname -o $lib$libobjs$deplibs' ;; + *) archive_cmds='$LD -G -z text -h $soname -o $lib$libobjs$deplibs' ;; + esac hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no ;; |