#12270 closed defect (fixed)
subversion-1.4.4
Reported by: | takeshi@… | Owned by: | danielluke (Daniel J. Luke) |
---|---|---|---|
Priority: | Low | Milestone: | |
Component: | ports | Version: | 1.5 |
Keywords: | Cc: | takeshi@…, danielluke (Daniel J. Luke), ryandesign (Ryan Carsten Schmidt) | |
Port: |
Description
I encountered a problem building subversion-1.4.4. libtool tries to link to /opt/local/lib/libgssapi.la. It turned out that subversion-1.4.4 builds OK with neon-0.25.5.
Changes to neon's Portfile
version 0.25.5 checksums md5 b5fdb71dd407f0a3de0f267d27c9ab17
Changes to subversion's Portfile
–mandir=\\\${prefix}/share/man # –disable-neon-version-check
Attachments (1)
Change History (8)
comment:1 Changed 17 years ago by danielluke (Daniel J. Luke)
Cc: | dluke@… added |
---|---|
Owner: | changed from macports-dev@… to dluke@… |
comment:2 Changed 17 years ago by ryandesign (Ryan Carsten Schmidt)
Cc: | takeshi@… ryandesign@… added |
---|---|
Milestone: | → Port Bugs |
There is a mailing list thread from May about this problem as well.
Changed 17 years ago by takeshi@…
comment:3 Changed 17 years ago by takeshi@…
I attached the log of sudo port -dv build subversion after cleaned up (sudo port clean --all subversion). I manually tried to build with
./configure --with-neon=/opt/local --disable-neon-version-check make }}. I encountered this problem with MacPorts-1.5.0 on Mac OS X 10.4.9 on MacBook and MacBook Pro.
comment:4 Changed 17 years ago by ryandesign (Ryan Carsten Schmidt)
Yours says
checking for a BSD-compatible install... /opt/local/bin/ginstall -c
but mine says
checking for a BSD-compatible install... /usr/bin/install -c
Where did /opt/local/bin/ginstall come from?
Yours finds Python in /opt/local while mine uses the system's Python; I don't have one installed through MacPorts.
comment:5 Changed 17 years ago by takeshi@…
I deactivated coreutils (which include ginstall) and python24 to no avail.
comment:6 Changed 17 years ago by danielluke (Daniel J. Luke)
Resolution: | → fixed |
---|---|
Status: | new → closed |
It's not coreutils or python24 (neither should cause a problem).
I think that your neon install linked against libgssapi which you no longer have installed (and which I didn't list as a dependency for neon).
You can test this with otool -L /opt/local/lib/libneon.dylib
(This probably wouldn't have happened under the older darwinports/macports versions because they didn't set CPPFLAGS/LDFLAGS by default, and now it does).
I'm committing revision 1 of the neon port that adds --without-gssapi to the configure.args which should fix it.
Feel free to reopen this ticket if that does not solve the issue for you.
Something else is going on here.
I don't have libgssapi.la, but subversion builds fine with the version of neon that is in macports.
Do you have the complete output of:
port clean --all subversion port -dv install subversion
for me to look at?
Thanks.