Branch: refs/heads/master
  Home:   https://github.com/NixOS/nix
  Commit: 464089365e2c72c83e5a8edb5611e537c4898501
      
https://github.com/NixOS/nix/commit/464089365e2c72c83e5a8edb5611e537c4898501
  Author: Eelco Dolstra <[email protected]>
  Date:   2012-05-04 (Fri, 04 May 2012)

  Changed paths:
    M perl/Makefile.am

  Log Message:
  -----------
  Fix some 32-bit builds

Perl on some 32-bit systems needs -D_FILE_OFFSET_BITS=64.  See also commit
02f1363e19b7df7cccc3523805bbf4fafe429529.


diff --git a/perl/Makefile.am b/perl/Makefile.am
index d02c540..ec1a5fd 100644
--- a/perl/Makefile.am
+++ b/perl/Makefile.am
@@ -22,7 +22,8 @@ libNixStore_la_LIBADD = 
$(top_builddir)/src/libstore/libstore.la
 
 AM_CXXFLAGS = \
   -I$(top_srcdir)/src -I$(top_srcdir)/src/libutil -I$(top_srcdir)/src/libstore 
\
-  -I$(shell $(perl) -e 'use Config; print $$Config{archlibexp};')/CORE
+  -I$(shell $(perl) -e 'use Config; print $$Config{archlibexp};')/CORE \
+  -D_FILE_OFFSET_BITS=64
 
 lib/Nix/Store.cc: lib/Nix/Store.xs
        xsubpp $^ -output $@


================================================================

_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to