diff options
| author | Nathan Kinder <nkinder@redhat.com> | 2005-04-18 20:45:01 +0000 |
|---|---|---|
| committer | Nathan Kinder <nkinder@redhat.com> | 2005-04-18 20:45:01 +0000 |
| commit | e92ef06ca32689a87e4c0c9eb15b1df0f442d98e (patch) | |
| tree | c9cdea077e7bd147732b01242ca99a60c06dd00d /httpd | |
| parent | 365804864dd9f87d93dfc7d6c557f5bd1ad2397e (diff) | |
| download | ds-e92ef06ca32689a87e4c0c9eb15b1df0f442d98e.tar.gz ds-e92ef06ca32689a87e4c0c9eb15b1df0f442d98e.tar.xz ds-e92ef06ca32689a87e4c0c9eb15b1df0f442d98e.zip | |
HP-UX IPF Porting changes
Diffstat (limited to 'httpd')
| -rwxr-xr-x | httpd/autobuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/httpd/autobuild b/httpd/autobuild index 65e10aa8..dd5f67c4 100755 --- a/httpd/autobuild +++ b/httpd/autobuild @@ -62,7 +62,12 @@ elif [ "$UNAME" = "SOLARISx86" ]; then elif [ "$UNAME" = "HPUX" ]; then PATH=/usr/local/hpux/bin:/usr/bin/X11:$PATH; export PATH GTAR=/share/builds/f/gtar/bin/hpux-gtar - HTTPDLIB=libnshttpd.sl + ARCH=`uname -m` + if [ "$ARCH" = "ia64" ]; then + HTTPDLIB=libnshttpd.so + else + HTTPDLIB=libnshttpd.sl + fi elif [ "$UNAME" = "BSDI" ]; then PATH=/usr/local/bin:/usr/X11/bin:$PATH; export PATH |
