Package: sqlrelay
Version: 1:0.36.4-1
Severity: important
Tags: patch

Hi,

Your package is failing to build on amd64.  The problem is that
on amd64, it uses lib64 as the library dir instead of lib.
Atleast for the Debian amd64 port this isn't the right directory.

I've attached a patch that fixes it.  Not sure if acsite.m4 is
the correct origin where it needs to be fixed, but couldn't find
anything else.


Kurt

--- acsite.m4.old       2005-09-11 20:07:07.562851088 +0200
+++ acsite.m4   2005-09-11 20:07:26.478975400 +0200
@@ -350,10 +350,7 @@
 AC_DEFUN([FW_CHECK_LIBDIR],
 [
 AC_MSG_CHECKING(for library directory)
-case $host_cpu in
-       x86_64 ) LIBDIR="lib64" ;;
-       * ) LIBDIR="lib" ;;
-esac
+       LIBDIR="lib"
 AC_MSG_RESULT($LIBDIR)
 ])
 
--- configure.old       2005-09-11 20:07:07.572849568 +0200
+++ configure   2005-09-11 20:07:30.700333656 +0200
@@ -19312,10 +19312,7 @@
 
 echo "$as_me:$LINENO: checking for library directory" >&5
 echo $ECHO_N "checking for library directory... $ECHO_C" >&6
-case $host_cpu in
-       x86_64 ) LIBDIR="lib64" ;;
-       * ) LIBDIR="lib" ;;
-esac
+       LIBDIR="lib"
 echo "$as_me:$LINENO: result: $LIBDIR" >&5
 echo "${ECHO_T}$LIBDIR" >&6
 

Reply via email to