Change the shared libary extension for hpux-ia64 to so. (#328253, The

2006-01-23  Matthias Clasen  <mclasen@redhat.com>

	* configure.in: Change the shared libary extension for hpux-ia64
	to so.  (#328253, The Written Word)
This commit is contained in:
Matthias Clasen
2006-01-24 05:07:53 +00:00
committed by Matthias Clasen
parent 9dda61725f
commit 549d71b659
4 changed files with 23 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2006-01-23 Matthias Clasen <mclasen@redhat.com>
* configure.in: Change the shared libary extension for hpux-ia64
to so. (#328253, The Written Word)
2006-01-18 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@@ -1,3 +1,8 @@
2006-01-23 Matthias Clasen <mclasen@redhat.com>
* configure.in: Change the shared libary extension for hpux-ia64
to so. (#328253, The Written Word)
2006-01-18 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@@ -1,3 +1,8 @@
2006-01-23 Matthias Clasen <mclasen@redhat.com>
* configure.in: Change the shared libary extension for hpux-ia64
to so. (#328253, The Written Word)
2006-01-18 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@@ -1246,7 +1246,14 @@ fi
AC_MSG_CHECKING(for the suffix of shared libraries)
case "$host_os" in
hpux9* | hpux10* | hpux11*) # taken from ltconfig
glib_gmodule_suffix='sl'
case "$host_cpu" in
hppa*)
glib_gmodule_suffix='sl'
;;
ia64*)
glib_gmodule_suffix='so'
;;
esac
;;
cygwin* | mingw*)
glib_gmodule_suffix='dll'