aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-06-03 23:30:32 +0000
committerUlrich Drepper <drepper@redhat.com>1999-06-03 23:30:32 +0000
commit908c3d5b5ab4623951d14add3af5708c429aeb29 (patch)
tree236804ecff2a8a146c58ac69ae38c20f9dbe07f7 /configure.in
parent19b6575a074dbb1f992610950f312d3e5344b0b1 (diff)
downloadglibc-908c3d5b5ab4623951d14add3af5708c429aeb29.tar
glibc-908c3d5b5ab4623951d14add3af5708c429aeb29.tar.gz
glibc-908c3d5b5ab4623951d14add3af5708c429aeb29.tar.bz2
glibc-908c3d5b5ab4623951d14add3af5708c429aeb29.zip
Update.
* configure.in: Few changes for HPUX.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index b675069f4f..17ac906610 100644
--- a/configure.in
+++ b/configure.in
@@ -264,6 +264,8 @@ irix6*)
base_os=unix/sysv/irix6/$os ;;
solaris[2-9]*)
base_os=unix/sysv/sysv4 ;;
+hpux*)
+ base_os=unix/sysv/hpux/$os ;;
none)
base_os=standalone ;;
*)
@@ -656,10 +658,10 @@ fi
AC_CACHE_CHECK(for assembler global-symbol directive,
libc_cv_asm_global_directive, [dnl
libc_cv_asm_global_directive=UNKNOWN
-for ac_globl in .globl .global; do
+for ac_globl in .globl .global .EXPORT; do
cat > conftest.s <<EOF
.text
-${ac_globl} foo
+ ${ac_globl} foo
foo:
EOF
if ${CC-cc} $CFLAGS -c conftest.s 2>/dev/null; then