Hi,
please could you give me a hint, whats wrong here?

The current Homebrew Formula of pan:
————————————
require 'formula'

class Pan < Formula
  homepage 'http://pan.rebelbase.com/'
  url 
'http://pan.rebelbase.com/download/releases/0.139/source/pan-0.139.tar.bz2'
  sha1 '01ea0361a6d81489888e6abb075fd552999c3c60'

  depends_on 'pkg-config' => :build
  depends_on 'intltool' => :build
  depends_on 'gtk+'
  depends_on 'gmime'
  depends_on 'enchant' => :optional
  depends_on 'd-bus' => :optional
  depends_on 'gnutls' => :optional

  # Fix compilation on 64-bit; see 
https://bugzilla.gnome.org/show_bug.cgi?id=673813
  def patches; DATA end

  def install
    ENV.append 'LDFLAGS', ' -liconv ' # iconv detection is broken.

    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--disable-glibtest",
                          "--disable-gtktest"
    system "make install"
  end
end

__END__
diff --git a/pan/gui/gui.cc b/pan/gui/gui.cc
index 2e01ae8..fa7d500 100644
--- a/pan/gui/gui.cc
+++ b/pan/gui/gui.cc
@@ -2223,8 +2223,8 @@ GUI :: set_queue_size_label (unsigned int running,
 
   // build the tooltip
   // todo : perhaps fix this for mac osx automatically....
-  gulong queued, unused, stopped;
-  guint64 KiB_remain;
+  unsigned long queued, unused, stopped;
+  uint64_t KiB_remain;
   double KiBps;
   int hr, min, sec;
   _queue.get_stats (queued, unused, stopped,
@@ -2232,7 +2232,7 @@ GUI :: set_queue_size_label (unsigned int running,
                     hr, min, sec);
 
   g_snprintf (tip, sizeof(tip), _("%lu tasks, %s, %.1f KiBps, ETA 
%d:%02d:%02d"),
-              (running+queued), render_bytes(KiB_remain), KiBps, hr, min, sec);
+              static_cast<gulong>(running+queued), 
render_bytes(static_cast<guint64>(KiB_remain)), KiBps, hr, min, sec);
 
   // update the gui
   gtk_label_set_text (GTK_LABEL(_queue_size_label), str);

--------------------

Anfang der weitergeleiteten Nachricht:

> Betreff: pan installing error on 10.9 Mavericks on a fresh brew installation 
> (2nd)
> Datum: 31. Oktober 2013 14:42:19 MEZ
> An: homeb...@librelist.com
> 
> (I send this twice, the first mail are blocked from you - I get no copy from 
> it)
> 
> Hi,
> now I uninstall and delete my old Homebrew installation completely and 
> installed them new.
> 
> I start the pan installation - but the error comes as before.
> 
> Here the new logs from the installation:
> https://gist.github.com/macuserguru/24d549c88ffbbd9361b8
> 
> My system:
> $ brew doctor
> Your system is ready to brew.
> 
> $ brew --config
> HOMEBREW_VERSION: 0.9.5
> ORIGIN: https://github.com/mxcl/homebrew
> HEAD: ce72980beb18de58c6c535b044c2fb8995d82043
> HOMEBREW_PREFIX: /usr/local
> HOMEBREW_CELLAR: /usr/local/Cellar
> CPU: dual-core 64-bit penryn
> OS X: 10.9-x86_64
> Xcode: 5.0.1
> CLT: 5.0.1.0.1.1382131676
> Clang: 5.0 build 500
> X11: 2.7.4 => /opt/X11
> System Ruby: 1.8.7-358
> Perl: /usr/bin/perl
> Python: /usr/bin/python
> Ruby: /usr/bin/ruby => 
> /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby
> 
> $ xcode-select -p
> /Applications/Xcode.app/Contents/Developer
> 
> $ gcc --version
> Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr 
> --with-gxx-include-dir=/usr/include/c++/4.2.1
> Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
> Target: x86_64-apple-darwin13.0.0
> Thread model: posix
> 
> $ git version
> git version 1.8.3.4 (Apple Git-47)
> 
> My old error log:
> https://gist.github.com/macuserguru/a4d685790e34505e6acd
> 



-- 
FritzS 
fri...@gmx.net




_______________________________________________
Pan-users mailing list
Pan-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/pan-users

Reply via email to