-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 This is the latest stable release of Samba. This is the version that production Samba servers should be running for all current bug-fixes. There have been several important issues fixes since the 3.0.8 release. Common bugs fixed in 3.0.9 include: ~ o Problem updating roaming user profiles. ~ o Crash in smbd when printing from a Windows 9x client. ~ o Unresolved symbols in libsmbclient which caused ~ applications such as KDE's konqueror to fail when ~ accessing smb:// URLs. The uncompressed tarball and patch file have been signed using GnuPG. The source code and the Samba public key (ID F17F9772) can be downloaded from: http://download.samba.org/samba/ftp/ Binary packages are available at http://download.samba.org/samba/ftp/Binary_Packages/ The release notes are also available on-line at http://www.samba.org/samba/whatsnew/samba-3.0.9.html Our Code, Our Bugs, Our Responsibility. (https://bugzilla.samba.org/) --Enjoy The Samba Team -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (Darwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBngQlIR7qMdg1EfYRAnybAJ0V/UuvKRTANx5n2BYsQ5jTq/xEYwCcCS1K hKjhUUqloH5BqvzfrU7tqVw=Eh7j -----END PGP SIGNATURE-----
Lars MÜLLER
2004-Nov-19 16:32 UTC
[Samba] RPMs for SuSE Linux (was: Samba 3.0.9 Available for Download)
On Fri, Nov 19, 2004 at 09:33:09AM -0500, Gerald Carter wrote: [snip]> Binary packages are available at > > http://download.samba.org/samba/ftp/Binary_Packages/RPM packages of Samba 3.0.9 for SuSE Linux are available at ftp://ftp.SuSE.com/pub/projects/samba/3.0/ The same packages are also available at http://download.Samba.org/samba/ftp/Binary_Packages/SuSE/3.0/ Please use a mirror close to your site. A list of Samba.org mirrors is available at http://Samba.org/ Also SuSE provides a bunch of mirrors. Lists are available for int http://www.SuSE.com/en/private/download/ftp/int_mirrors.html germany http://www.SuSE.com/de/private/download/ftp/inland.html Currently there are 3.0.9 packages for SuSE Linux (x86 and x86_64) 8.1, 9.0, 9.1, 9.2, and SLES 9. Packages for 8.2 are only available for i386 as no SuSE Linux product for x86_64 was available for this release. If you encounter any problem with these packages please don't blame the Samba Team. Instead file a bug at https://bugzilla.Samba.org/ pick product Samba 3.0, then select 'component' Packaging and set 'assign to' to lmuelle at suse dot de. Have a lot of fun... Lars -- Lars M?LLER [?la?(r)z ?m?l?] SuSE Linux Products GmbH, Maxfeldstra?e 5, 90409 N?rnberg, Germany -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://lists.samba.org/archive/samba/attachments/20041119/ed69602d/attachment.bin
Gerald (Jerry) Carter schrieb:> This is the latest stable release of Samba. This is the version > that production Samba servers should be running for all > current bug-fixes. There have been several important issues > fixes since the 3.0.8 release.the same old story: checking if the linker (ld) is GNU ld... yes + test yes = yes ++ ld -v ++ head -1 + ac_cv_gnu_ld_version=GNU ld version 2.12 + echo 'configure:3178: checking GNU ld release date' + echo -n 'checking GNU ld release date... ' checking GNU ld release date... ++ echo GNU ld version 2.12 ++ sed -n 's,^.*\([2-9][0-9][0-9][0-9]\)[-]*\([01][0-9]\)[-]*\([0-3][0-9]\).*$,\1\2\3,p' + ac_cv_gnu_ld_date+ echo 'configure:3181: result: ' + echo '' + test '' -lt 20030217 ./configure: test: : integer expression expected One more time the patch, which works for me: test2 # diff -uNr samba-3.0.9/source/configure.orig samba-3.0.9/source/configure --- samba-3.0.9/source/configure.orig Fri Nov 19 23:29:34 2004 +++ samba-3.0.9/source/configure Fri Nov 19 23:29:08 2004 @@ -3174,17 +3174,32 @@ if test "$ac_cv_prog_gnu_ld" = "yes"; then - ac_cv_gnu_ld_version=`$LD -v 2>/dev/null | head -1` - echo "$as_me:$LINENO: checking GNU ld release date" >&5 -echo $ECHO_N "checking GNU ld release date... $ECHO_C" >&6 - ac_cv_gnu_ld_date=`echo $ac_cv_gnu_ld_version | sed -n 's,^.*\([2-9][0-9][0-9][0-9]\)[-]*\([01][0-9]\)[-]*\([0-3][0-9]\).*$,\1\2\3,p'` - echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_date}" >&5 -echo "${ECHO_T}${ac_cv_gnu_ld_date}" >&6 - if test "$ac_cv_gnu_ld_date" -lt 20030217; then - ac_cv_gnu_ld_no_default_allow_shlib_undefined=yes - fi + ac_cv_gnu_ld_version=`$LD -v 2>/dev/null | head -1` + if `echo $ac_cv_gnu_ld_version | grep -q -E "^.*[2-9][0-9][0-9][0-9][-]*[01][0-9][-]*[0-3][0-9].*$"`; then + echo "$as_me:$LINENO: checking GNU ld release date" >&5 + echo $ECHO_N "checking GNU ld release date... $ECHO_C" >&6 + ac_cv_gnu_ld_date=`echo $ac_cv_gnu_ld_version | sed -n 's,^.*\([2-9][0-9][0-9][0-9]\)[-]*\([01][0-9]\)[-]*\([0-3][0-9]\).*$,\1\2\3,p'` + echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_date}" >&5 + echo "${ECHO_T}${ac_cv_gnu_ld_date}" >&6 + if test "$ac_cv_gnu_ld_date" -lt 20030217; then + ac_cv_gnu_ld_no_default_allow_shlib_undefined=yes + fi + else + echo "$as_me:$LINENO: checking GNU ld release version" >&5 + echo $ECHO_N "checking GNU ld release version... $ECHO_C" >&6 + ac_cv_gnu_ld_vernr=`echo $ac_cv_gnu_ld_version | sed -n 's,^.*\([1-9][0-9]*\.[0-9][0-9]*\).*$,\1,p'` + echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_vernr}" >&5 + echo "${ECHO_T}${ac_cv_gnu_ld_vernr}" >&6 + ac_cv_gnu_ld_vernr_major=`echo $ac_cv_gnu_ld_vernr | cut -d '.' -f 1` + echo "$as_me:$LINENO: result: ac_cv_gnu_ld_vernr_major ${ac_cv_gnu_ld_vernr_major}" >&5 + ac_cv_gnu_ld_vernr_minor=`echo $ac_cv_gnu_ld_vernr | cut -d '.' -f 2` + echo "$as_me:$LINENO: result: ac_cv_gnu_ld_vernr_minor ${ac_cv_gnu_ld_vernr_minor}" >&5 + if test "$ac_cv_gnu_ld_vernr_major" -lt 2 || test "$ac_cv_gnu_ld_vernr_minor" -lt 14; then + ac_cv_gnu_ld_no_default_allow_shlib_undefined=yes + echo "$as_me:$LINENO: result: ac_cv_gnu_ld_no_default_allow_shlib_undefined ${ac_cv_gnu_ld_no_default_allow_shlib_undefined}" >&5 + fi + fi fi - echo "$as_me:$LINENO: checking for library containing strerror" >&5 echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6 -- der tom -------------- next part -------------- --- samba-3.0.9/source/configure.orig Fri Nov 19 23:29:34 2004 +++ samba-3.0.9/source/configure Fri Nov 19 23:29:08 2004 @@ -3174,17 +3174,32 @@ if test "$ac_cv_prog_gnu_ld" = "yes"; then - ac_cv_gnu_ld_version=`$LD -v 2>/dev/null | head -1` - echo "$as_me:$LINENO: checking GNU ld release date" >&5 -echo $ECHO_N "checking GNU ld release date... $ECHO_C" >&6 - ac_cv_gnu_ld_date=`echo $ac_cv_gnu_ld_version | sed -n 's,^.*\([2-9][0-9][0-9][0-9]\)[-]*\([01][0-9]\)[-]*\([0-3][0-9]\).*$,\1\2\3,p'` - echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_date}" >&5 -echo "${ECHO_T}${ac_cv_gnu_ld_date}" >&6 - if test "$ac_cv_gnu_ld_date" -lt 20030217; then - ac_cv_gnu_ld_no_default_allow_shlib_undefined=yes - fi + ac_cv_gnu_ld_version=`$LD -v 2>/dev/null | head -1` + if `echo $ac_cv_gnu_ld_version | grep -q -E "^.*[2-9][0-9][0-9][0-9][-]*[01][0-9][-]*[0-3][0-9].*$"`; then + echo "$as_me:$LINENO: checking GNU ld release date" >&5 + echo $ECHO_N "checking GNU ld release date... $ECHO_C" >&6 + ac_cv_gnu_ld_date=`echo $ac_cv_gnu_ld_version | sed -n 's,^.*\([2-9][0-9][0-9][0-9]\)[-]*\([01][0-9]\)[-]*\([0-3][0-9]\).*$,\1\2\3,p'` + echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_date}" >&5 + echo "${ECHO_T}${ac_cv_gnu_ld_date}" >&6 + if test "$ac_cv_gnu_ld_date" -lt 20030217; then + ac_cv_gnu_ld_no_default_allow_shlib_undefined=yes + fi + else + echo "$as_me:$LINENO: checking GNU ld release version" >&5 + echo $ECHO_N "checking GNU ld release version... $ECHO_C" >&6 + ac_cv_gnu_ld_vernr=`echo $ac_cv_gnu_ld_version | sed -n 's,^.*\([1-9][0-9]*\.[0-9][0-9]*\).*$,\1,p'` + echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_vernr}" >&5 + echo "${ECHO_T}${ac_cv_gnu_ld_vernr}" >&6 + ac_cv_gnu_ld_vernr_major=`echo $ac_cv_gnu_ld_vernr | cut -d '.' -f 1` + echo "$as_me:$LINENO: result: ac_cv_gnu_ld_vernr_major ${ac_cv_gnu_ld_vernr_major}" >&5 + ac_cv_gnu_ld_vernr_minor=`echo $ac_cv_gnu_ld_vernr | cut -d '.' -f 2` + echo "$as_me:$LINENO: result: ac_cv_gnu_ld_vernr_minor ${ac_cv_gnu_ld_vernr_minor}" >&5 + if test "$ac_cv_gnu_ld_vernr_major" -lt 2 || test "$ac_cv_gnu_ld_vernr_minor" -lt 14; then + ac_cv_gnu_ld_no_default_allow_shlib_undefined=yes + echo "$as_me:$LINENO: result: ac_cv_gnu_ld_no_default_allow_shlib_undefined ${ac_cv_gnu_ld_no_default_allow_shlib_undefined}" >&5 + fi + fi fi - echo "$as_me:$LINENO: checking for library containing strerror" >&5 echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6