The compilation fails on examples/VFS/ cause libtool requires a --tag option. Fix: Here is the new patch (patch-examples::VFS::Makefile.in): %.so: %.lo @echo Linking $< - @$(LIBTOOL) --mode=link $(CC) -o $@ $< $(LDFLAGS) + @$(LIBTOOL) --mode=link --tag=CC $(CC) -o $@ $< $(LDFLAGS) %.lo: %.c @echo Compiling $< - @$(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ + @$(LIBTOOL) --mode=compile --tag=CC $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o # Misc targets--uH8HMu9hnodXSg4ayVrPNsdKWXiWum7Tmoq1zx8kypIjiHGO Content-Type: text/plain; name="file.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="file.diff" --- examples/VFS/Makefile.in.orig Wed Aug 31 14:06:10 2005 +++ examples/VFS/Makefile.in Wed Aug 31 14:05:59 2005 @@ -17,11 +17,11 @@ How-To-Repeat: Build samba 2.2.12 with libtool 1.5.8. (All optios WITH for samba was selected, WITHOUT deselected)
State Changed From-To: open->closed Committed, thanks!