8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 20:03:02 +01:00

Make output better understandable on 64-bit native platforms

This commit is contained in:
alexpeshkoff 2005-08-04 10:36:45 +00:00
parent 8198211a6e
commit 1ff9ab47aa

View File

@ -998,8 +998,8 @@ echo The Firebird2 package has been configured with the following options:
echo
case $FIREBIRD_ARCH_TYPE in
super) echo "Architecture : SuperServer";;
classic) echo "Architecture : ClassicServer";;
super) echo " Architecture : SuperServer";;
classic) echo " Architecture : ClassicServer";;
esac
case $PROD_BUILD_FLG in
@ -1008,8 +1008,8 @@ case $PROD_BUILD_FLG in
esac
case $ac_cv_sys_file_offset_bits in
no) echo " 64 bit I/O : disabled";;
64) echo " 64 bit I/O : enabled";;
no) echo "64 bit I/O for 32-bit platforms : disabled";;
64) echo "64 bit I/O for 32-bit platforms : enabled";;
esac
case $RAW_DEVICES_FLG in
@ -1019,19 +1019,19 @@ esac
if test "$FIREBIRD_ARCH_TYPE" = "classic"; then
case $LOCK_MANAGER_FLG in
Y) echo "Lock manager : enabled";;
N) echo "Lock manager : disabled";;
Y) echo " Lock manager : enabled";;
N) echo " Lock manager : disabled";;
esac
fi
echo "Service name : $FB_SERVICE_NAME"
echo "Service port : $FB_SERVICE_PORT"
echo " Service name : $FB_SERVICE_NAME"
echo " Service port : $FB_SERVICE_PORT"
case "$PLATFORM" in
win32) echo " Pipe name : $FB_PIPE_NAME";;
esac
echo "GPRE modules : c_cxx.cpp$GPRE_LANGUAGE_MODULES"
echo " GPRE modules : c_cxx.cpp$GPRE_LANGUAGE_MODULES"
echo
echo " Install Dir : $prefix"