Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 454504
Collapse All | Expand All

(-)file_not_specified_in_diff (-4 / +14 lines)
Line  Link Here
0
-- a/configure.ac
0
++ b/configure.ac
Lines 916-922 Link Here
916
916
917
# The alias functions want to know the native off_t bits.
917
# The alias functions want to know the native off_t bits.
918
# "Native" also means large file offsets, if enabled, it's what is native to the mpg123 library.
918
# "Native" also means large file offsets, if enabled, it's what is native to the mpg123 library.
919
if test "x$ac_cv_sizeof_long" = "x"; then 
919
if test "x$ac_cv_sizeof_off_t" != "x"; then 
920
  LFS_ALIAS_BITS=`expr "$ac_cv_sizeof_off_t" "*" "8"`
921
  AC_DEFINE_UNQUOTED([LFS_ALIAS_BITS], $LFS_ALIAS_BITS,
922
elif test "x$ac_cv_sizeof_long" = "x"; then 
920
  AC_MSG_ERROR([Cannot determine sizeof(long)?])
923
  AC_MSG_ERROR([Cannot determine sizeof(long)?])
921
else
924
else
922
  LFS_ALIAS_BITS=`expr "$ac_cv_sizeof_long" "*" "8"`
925
  LFS_ALIAS_BITS=`expr "$ac_cv_sizeof_long" "*" "8"`
923
-- a/configure
926
++ b/configure
Lines 14836-14842 Link Here
14836
14836
14837
# The alias functions want to know the native off_t bits.
14837
# The alias functions want to know the native off_t bits.
14838
# "Native" also means large file offsets, if enabled, it's what is native to the mpg123 library.
14838
# "Native" also means large file offsets, if enabled, it's what is native to the mpg123 library.
14839
if test "x$ac_cv_sizeof_long" = "x"; then
14839
if test "x$ac_cv_sizeof_off_t" != "x"; then
14840
  LFS_ALIAS_BITS=`expr "$ac_cv_sizeof_off_t" "*" "8"`
14841
14842
cat >>confdefs.h <<_ACEOF
14843
#define LFS_ALIAS_BITS $LFS_ALIAS_BITS
14844
_ACEOF
14845
14846
elif test "x$ac_cv_sizeof_long" = "x"; then
14840
  as_fn_error $? "Cannot determine sizeof(long)?" "$LINENO" 5
14847
  as_fn_error $? "Cannot determine sizeof(long)?" "$LINENO" 5
14841
else
14848
else
14842
  LFS_ALIAS_BITS=`expr "$ac_cv_sizeof_long" "*" "8"`
14849
  LFS_ALIAS_BITS=`expr "$ac_cv_sizeof_long" "*" "8"`

Return to bug 454504