I updated the patch on the wiki for RC2_566.
Is there going to be a x86_64 build for FC5?
If not, is there a reason there won't be?
Quote:
--- zcs.dist/util/utilfunc.sh 2007-01-04 22:15:56.000000000 -0800
+++ zcs/util/utilfunc.sh 2007-01-09 13:58:16.000000000 -0800
@@ -1207,10 +1207,14 @@
PREREQ_LIBS="/usr/lib/libstdc++.so.5"
elif [ $PLATFORM = "MANDRIVA2006" ]; then
PREREQ_PACKAGES="sudo libidn11 curl fetchmail libgmp3 libxml2 libstdc++6 openssl"
- elif [ $PLATFORM = "FC4" -o $PLATFORM = "FC5" -o $PLATFORM = "FC3" ]; then
- PREREQ_PACKAGES="sudo libidn curl fetchmail gmp bind-libs vixie-cron"
- if [ $PLATFORM = "FC5" ]; then
- PREREQ_LIBS="/usr/lib/libstdc++.so.6"
+ elif [ "`echo $PLATFORM | cut -c1-2`" = "FC" ]; then
+ PREREQ_PACKAGES="sudo libidn curl fetchmail gmp bind-libs vixie-cron compat-db compat-libstdc++-296 openssl097a"
+ if [ "`echo $PLATFORM | cut -c1-3`" = "FC5" ]; then
+ if [ "`echo $PLATFORM | cut -d_ -f2`" = "64" ]; then
+ PREREQ_LIBS="/usr/lib64/libstdc++.so.6"
+ else
+ PREREQ_LIBS="/usr/lib/libstdc++.so.6"
+ fi
else
PREREQ_LIBS="/usr/lib/libstdc++.so.5"
fi
|