You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by "Norton, Richard" <Ri...@lfg.com> on 2007/02/05 20:44:08 UTC

Building Subversion 1.4.2 on hp-ux 11.23 Itanium

Downloaded subversion-1.4.2.tar.gz and subversion-deps-1.4.2.tar.gz.
Unzip'd and untar'd on top of each other.
Tried standard basic configure, which failed.
Did some hunting through the mailing list archives and google ... found that the dependancy that builds zlib seems to be broke, so built it seperately ( ./configure --prefix=/usr/contrib ).
Also found that some additional options seem to be needed for hp-ux builds, so I've incorporated them, but still can't seem to get past the need for zlib.  The check for zlib.h consistently fails.

Here's my current attempt to run configure, and links to the output (since I assume it would be bad form to sent the entire log output (about 80k) ) in this message.

../configure -C --without-berkely-db --disable-shared --disable-nls  \
--prefix=/usr/contrib \
CPPFLAGS=-I/usr/contrib/include \
MKDIR=/opt/imake/bin/mkdirhier >config.out 2>&1

The MKDIR variable is an attempt to allow for the fact that the 'install' command on hp-ux doesn't support making directory trees.  It provides the above command for that purpose instead.

config.cache - http://members.cox.net/ranorton/config.cache
config.out     - http://members.cox.net/ranorton/config.out
config.log     - http://members.cox.net/ranorton/config.log

Any suggests gratefully accepted.

Richard

-----------------------------------------
Notice of Confidentiality:

**This E-mail and any of its attachments may contain Lincoln
National Corporation proprietary information, which is privileged,
confidential, or subject to copyright belonging to the Lincoln
National Corporation family of companies. This E-mail is intended
solely for the use of the individual or entity to which it is
addressed. If you are not the intended recipient of this E-mail,
you are hereby notified that any dissemination, distribution,
copying, or action taken in relation to the contents of and
attachments to this E-mail is strictly prohibited and may be
unlawful. If you have received this E-mail in error, please notify
the sender immediately and permanently delete the original and any
copy of this E-mail and any printout. **
 
Thank You.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


RE: Building Subversion 1.4.2 on hp-ux 11.23 Itanium

Posted by "Petit, Christine" <Ch...@FMR.COM>.
I'm seeing the same issue trying to build on LUNIX with zlib.  Cannot
seem to get past the error. 

-----Original Message-----
From: Norton, Richard [mailto:Richard.Norton@lfg.com] 
Sent: Monday, February 05, 2007 3:44 PM
To: users@subversion.tigris.org
Subject: Building Subversion 1.4.2 on hp-ux 11.23 Itanium

Downloaded subversion-1.4.2.tar.gz and subversion-deps-1.4.2.tar.gz.
Unzip'd and untar'd on top of each other.
Tried standard basic configure, which failed.
Did some hunting through the mailing list archives and google ... found
that the dependancy that builds zlib seems to be broke, so built it
seperately ( ./configure --prefix=/usr/contrib ).
Also found that some additional options seem to be needed for hp-ux
builds, so I've incorporated them, but still can't seem to get past the
need for zlib.  The check for zlib.h consistently fails.

Here's my current attempt to run configure, and links to the output
(since I assume it would be bad form to sent the entire log output
(about 80k) ) in this message.

../configure -C --without-berkely-db --disable-shared --disable-nls  \
--prefix=/usr/contrib \
CPPFLAGS=-I/usr/contrib/include \
MKDIR=/opt/imake/bin/mkdirhier >config.out 2>&1

The MKDIR variable is an attempt to allow for the fact that the
'install' command on hp-ux doesn't support making directory trees.  It
provides the above command for that purpose instead.

config.cache - http://members.cox.net/ranorton/config.cache
config.out     - http://members.cox.net/ranorton/config.out
config.log     - http://members.cox.net/ranorton/config.log

Any suggests gratefully accepted.

Richard

-----------------------------------------
Notice of Confidentiality:

**This E-mail and any of its attachments may contain Lincoln
National Corporation proprietary information, which is privileged,
confidential, or subject to copyright belonging to the Lincoln
National Corporation family of companies. This E-mail is intended
solely for the use of the individual or entity to which it is
addressed. If you are not the intended recipient of this E-mail,
you are hereby notified that any dissemination, distribution,
copying, or action taken in relation to the contents of and
attachments to this E-mail is strictly prohibited and may be
unlawful. If you have received this E-mail in error, please notify
the sender immediately and permanently delete the original and any
copy of this E-mail and any printout. **
 
Thank You.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


Re: Building Subversion 1.4.2 on hp-ux 11.23 Itanium

Posted by Ronny Schuetz <Us...@gishpuppy.com>.
Hi,

did the same just some days ago on exactly the same environment. I did
not use the subversion-deps at all, because I had some issues building
zlib as well, so I built the dependencies on my own. These were the
options used that worked:

○ Build & Install APR (http://apr.apache.org/download.cgi)
  - export CC=cc ; ./configure --prefix=/home/svn/pkg; make ;
    make install

○ Build & Install apr-util (http://apr.apache.org/download.cgi#aprutil1)
  - export CC=cc ; ./configure --prefix=/home/svn/pkg
    --with-apr=/home/svn/pkg ; make ; make install

o Build & Install zlib (http://www.zlib.net/)
  - export CC=cc ; ./configure --prefix=/home/svn/pkg ; make ;
    make install

- Build & Install Python 2.5 (http://www.python.org/download/)
  - export CC=cc ; ./configure --prefix=/home/svn/pkg; make ;
    make install

○ Build & Install subversion (http://subversion.tigris.org/)
  - export CC=cc ; ./configure --prefix=/home/svn/pkg
    CPPFLAGS=-I/home/svn/pkg/include --without-berkeley-db --disable-nls
    --disable-shared --with-apr-util=/home/svn/pkg ; make ; make install

Hope that helps somehow.

Best regards,
Ronny


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org