Your message dated Fri, 6 Jun 2008 19:19:27 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#484814: Compile failure when off64_t ok, but no fseeko
has caused the Debian Bug report #484814,
regarding Compile failure when off64_t ok, but no fseeko
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
484814: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=484814
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: zlib1g
Version: 1:1.2.3.3.dfsg-12

Attached patch checks for fseeko separately even if off64_t check
success. Assuming fseeko when ever off64_t check success caused
compile failure on MinGW32 compile (don't know if this affects any of
the official Debian platforms)

For more info (and possible new versions of the patch) see
http://vcust127.louhi.net/other/crosser/


- ML
diff -Nurd zlib/configure zlib/configure
--- zlib/configure	2007-06-19 13:26:13.000000000 +0300
+++ zlib/configure	2008-04-07 18:21:36.000000000 +0300
@@ -232,23 +232,22 @@
   CFLAGS="${CFLAGS} -D_LARGEFILE64_SOURCE=1"
   SFLAGS="${SFLAGS} -D_LARGEFILE64_SOURCE=1"
   echo "Checking for off64_t... Yes."
-  echo "Checking for fseeko... Yes."
 else
   echo "Checking for off64_t... No."
-  cat > $test.c <<EOF
+fi
+cat > $test.c <<EOF
 #include <stdio.h>
 int main(void) {
   fseeko(NULL, 0, 0);
   return 0;
 }
 EOF
-  if test "`($CC $CFLAGS -o $test $test.c) 2>&1`" = ""; then
-    echo "Checking for fseeko... Yes."
-  else
-    CFLAGS="${CFLAGS} -DNO_FSEEKO"
-    SFLAGS="${SFLAGS} -DNO_FSEEKO"
-    echo "Checking for fseeko... No."
-  fi
+if test "`($CC $CFLAGS -o $test $test.c) 2>&1`" = ""; then
+  echo "Checking for fseeko... Yes."
+else
+  CFLAGS="${CFLAGS} -DNO_FSEEKO"
+  SFLAGS="${SFLAGS} -DNO_FSEEKO"
+  echo "Checking for fseeko... No."
 fi
 
 cat > $test.c <<EOF

--- End Message ---
--- Begin Message ---
On Fri, Jun 06, 2008 at 07:02:03PM +0300, Marko Lindqvist wrote:

> Attached patch checks for fseeko separately even if off64_t check
> success. Assuming fseeko when ever off64_t check success caused
> compile failure on MinGW32 compile (don't know if this affects any of
> the official Debian platforms)

I'm not going to apply this patch in Debian since the gzio API needs
fseeko() and breaking that would have a knock on effect on other
packages.  I don't anticipate official Debian architectures not
providing it since it is part of the relevant POSIX API.

Please submit MinGW specific patches like this directly to upstream.

-- 
"You grabbed my hand and we fell into it, like a daydream - or a fever."


--- End Message ---

Reply via email to