This is a discussion on [Samba] Install error when trying to install ver 3.2.0 within the Samba forums, part of the Networking and Network Related category; When I run make install on Solaris 8 I get the following error: Using FLAGS = -O -D_SAMBA_BUILD_=3 -I/nau/...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
When I run make install on Solaris 8 I get the following error:
Using FLAGS = -O -D_SAMBA_BUILD_=3 -I/nau/src/Net/samba-3.2.0/source/popt -I/nau/src/Net/samba-3.2.0/source/iniparser/src -Iinclude -I./include -I. -I. -I./lib/replace -I./lib/talloc -I./lib/tdb/include -I./libaddns -I./librpc -DHAVE_CONFIG_H -D_LARGEFILE_SOURCE -D_REENTRANT -D_FILE_OFFSET_BITS=64 -Iinclude -I./include -I. -I. -I./lib/replace -I./lib/talloc -I./lib/tdb/include -I./libaddns -I./librpc -I./popt -DSUNOS5 -I/include -I/nau/src/Net/samba-3.2.0/source/lib -D_SAMBA_BUILD_=3 PICFLAG = -fPIC LIBS = -lsendfile -lresolv -ldl -lnsl -lsocket -liconv LDFLAGS = -pie -lthread -L./bin DYNEXP = LDSHFLAGS = -G -lthread -L./bin SHLIBEXT = so SONAMEFLAG = -Wl,-soname= Linking non-shared library bin/libtalloc.a Linking shared library bin/libtalloc.so ld: warning: option -o appears more than once, first setting taken ln: cannot create bin/libtalloc.so.1: File exists *** Error code 2 make: Fatal error: Command failed for target `bin/libtalloc.so' What needs to be changed to get the make install to work? Thanks. ******************* William Wilson - ITS -- To unsubscribe from this list go to the following URL and read the instructions: https://lists.samba.org/mailman/listinfo/samba |
|
|||
|
The problem here is that ln -s -f does now work as expected
on solaris 8 (at least). Here "expected" means that it will remove the link if it already exists, i.e. the behaviour I experienced on linux. I have fixed that in the v3-3-test branch (with a whole rewrite and cleanup of the library build system). Since the whole rewrite will probably not make it into 3.2.X bugfix releases, I will see if I can get a small bugfix into v3-2-test... I have filed a new bug #5608 for this issue. Michael David Eisner wrote: > On Wed, Jul 9, 2008 at 12:21 PM, William Edward Wilson > <William.Wilson@nau.edu> wrote: > > ln: cannot create bin/libtalloc.so.1: File exists > > *** Error code 2 > > make: Fatal error: Command failed for target `bin/libtalloc.so' > > > > What needs to be changed to get the make install to work? > > William, > > I haven't had a chance to figure out what in the build setup is > responsible for this bug, but as a work-around I just delete > bin/libtalloc.so.1 and type make again to continue the build. > > -David > > -- > David Eisner http://cradle.brokenglass.com > -- > To unsubscribe from this list go to the following URL and read the > instructions: https://lists.samba.org/mailman/listinfo/samba -- Michael Adam <ma@sernet.de> <obnox@samba.org> SerNet GmbH, Bahnhofsallee 1b, 37081 Göttingen phone: +49-551-370000-0, fax: +49-551-370000-9 AG Göttingen, HRB 2816, GF: Dr. Johannes Loxen http://www.SerNet.DE, mailto: Info @ SerNet.DE -- To unsubscribe from this list go to the following URL and read the instructions: https://lists.samba.org/mailman/listinfo/samba -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) Comment: comment iD8DBQFIdnHfyU9JOBhPkDQRAvkoAJ9MDHCjQgytg1DzeUJ8OU 1uGmfy9ACgoOE9 sOQvmrc3mi70wIlTmzBGGAA= =sIw/ -----END PGP SIGNATURE----- |