Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 903C690CB for ; Tue, 8 Nov 2011 11:45:20 +0000 (UTC) Received: (qmail 42997 invoked by uid 500); 8 Nov 2011 11:45:20 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 42934 invoked by uid 500); 8 Nov 2011 11:45:20 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 42927 invoked by uid 99); 8 Nov 2011 11:45:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Nov 2011 11:45:20 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Nov 2011 11:45:17 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id EB66E23889CB for ; Tue, 8 Nov 2011 11:44:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1199200 - /commons/proper/daemon/trunk/src/native/unix/support/apsupport.m4 Date: Tue, 08 Nov 2011 11:44:56 -0000 To: commits@commons.apache.org From: mturk@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111108114456.EB66E23889CB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mturk Date: Tue Nov 8 11:44:56 2011 New Revision: 1199200 URL: http://svn.apache.org/viewvc?rev=1199200&view=rev Log: Add more hp-ux targets from newest config.sub Modified: commons/proper/daemon/trunk/src/native/unix/support/apsupport.m4 Modified: commons/proper/daemon/trunk/src/native/unix/support/apsupport.m4 URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/support/apsupport.m4?rev=1199200&r1=1199199&r2=1199200&view=diff ============================================================================== --- commons/proper/daemon/trunk/src/native/unix/support/apsupport.m4 (original) +++ commons/proper/daemon/trunk/src/native/unix/support/apsupport.m4 Tue Nov 8 11:44:56 2011 @@ -82,15 +82,17 @@ AC_DEFUN(AP_SUPPORTED_HOST,[ sparc*) CFLAGS="$CFLAGS -DCPU=\\\"$host_cpu\\\"" HOST_CPU=$host_cpu;; - i?86) + i*86|x86) if test "$supported_os" = "hp-ux" then CFLAGS="$CFLAGS -milp32 -DCPU=\\\"IA64N\\\" -DSO_EXT=\\\"so\\\"" LDFLAGS="$LDFLAGS -milp32" + HOST_CPU=IA64N else CFLAGS="$CFLAGS -DCPU=\\\"i386\\\"" + HOST_CPU=i386 fi - HOST_CPU=i386;; + ;; x86_64 | amd64) CFLAGS="$CFLAGS -DCPU=\\\"amd64\\\"" HOST_CPU=amd64;; @@ -109,9 +111,12 @@ AC_DEFUN(AP_SUPPORTED_HOST,[ CFLAGS="$CFLAGS -DCPU=\\\"alpha\\\"" supported_os="alpha" HOST_CPU=alpha;; - hppa2.0w) + hppa2.0w|hppa64) CFLAGS="$CFLAGS -DCPU=\\\"PA_RISC2.0W\\\" -DSO_EXT=\\\"sl\\\"" HOST_CPU=PA_RISC2.0W;; + hppa2.0n) + CFLAGS="$CFLAGS -DCPU=\\\"PA_RISC2.0N\\\" -DSO_EXT=\\\"sl\\\"" + HOST_CPU=PA_RISC2.0N;; hppa2.0) CFLAGS="$CFLAGS -DCPU=\\\"PA_RISC2.0\\\" -DSO_EXT=\\\"sl\\\"" HOST_CPU=PA_RISC2.0;;