Opened 18 years ago

Closed 18 years ago

Last modified 15 years ago

#27 closed defect (fixed)

configure bugfix 64bit

Reported by: neteler@… Owned by: gsherman
Priority: major: does not work as expected Milestone:
Component: Build/Install Version: Trunk
Keywords: 64bit Cc: sherman@…
Must Fix for Release: No Platform: Debian
Platform Version: Linux Awaiting user input: no

Description

Please fix the broken 64bit detection with this patch (I have no idea how to attach it as file):

Best

Markus

Index: acinclude.m4 =================================================================== --- acinclude.m4 (revision 5104) +++ acinclude.m4 (working copy) @@ -6,7 +6,8 @@

dnl ------------------------------------------------------------------------ AC_DEFUN([AQ_CHECK_LIB64], [

-if test echo ${libdir} | sed -e 's#.*lib64.*#64#' = "64"; then +if test "echo ${libdir} | sed -e 's#.*lib64.*#64#'" = "64" -o \ + "uname -i | sed -e 's#.*x86.*#64#'" = "64" ; then

_lib="lib64"

else

_lib="lib"

Attachments (1)

acinclude_m4_64bit.patch (508 bytes ) - added by neteler@… 18 years ago.
64bit detection fix

Download all attachments as: .zip

Change History (5)

by neteler@…, 18 years ago

Attachment: acinclude_m4_64bit.patch added

64bit detection fix

comment:1 by anonymous, 18 years ago

I am NOT using Debian as indicated above (but that doesn't matter for the fix).

comment:2 by timlinux, 18 years ago

Milestone: Version 0.8 Release
Resolution: fixed
Status: newclosed
Version: HEAD

I have committed this change as r5110 on trunk in svn. Please reopen this bug if you still experience problems. Many thanks for your contribution!

Tim

comment:3 by anonymous, 17 years ago

Awaiting user input: unset
Must Fix for Release: No

comment:4 by (none), 15 years ago

Milestone: Version 0.8

Milestone Version 0.8 deleted

Note: See TracTickets for help on using tickets.