Compiling FileZilla 3 under macOS: Difference between revisions
m (Reverted edits by 188.143.232.12 (talk) to last revision by CodeSquid) |
|||
Line 43: | Line 43: | ||
If you are using Xcode 2.5, you will need to customize the install. Ensure all options under "Command Line Support" are checked. In Xcode 3, this is not necessary. | If you are using Xcode 2.5, you will need to customize the install. Ensure all options under "Command Line Support" are checked. In Xcode 3, this is not necessary. | ||
Hi Aleks, nice option, thkans, i have tried it offline and it works very well. just a little hesitation to use it online for its a development version. is it stable enough to be safe? [I am an absolute "noob" in this kind of thing ] | |||
== Building [[FileZilla 3]] == | == Building [[FileZilla 3]] == |
Revision as of 00:43, 13 June 2012
This documentation explains how to setup a build environment for FileZilla 3 and how to compile it under Mac OS X using Xcode. These directions have been tested under Tiger and Leopard on an Intel Mac. Other Mac OS versions may or may not work.
See this post for more information about the build process on Tiger along with some automated build files.
Automated building with Fink
You may find it easier to use Fink to automate the process of building FileZilla from source.
Advantages of Fink
- works under Tiger and Leopard on Intel and PPC
- all necessary dependencies are downloaded, built, and installed automatically with a single command
- does not interfere with any system software or other third-party software on your machine
- as new versions of FileZilla are released, rebuilding and upgrading is automated
Disadvantages of Fink
- packaged version of FileZilla can sometimes lag behind the newest release
- customizing the build process is not straightforward
Instructions
- Install Fink per the User's Guide.
- Enable the "unstable" tree per this FAQ entry.
- Run
fink install filezilla
in a Terminal window.
Once the build process completes successfully, you will find a FileZilla icon in your Applications folder.
Setting up the build environment
This includes the compiler and the required tools to build FileZilla 3 and its dependencies.
Xcode
You will need to download the version of Xcode appropriate for your version of OS X.
- Xcode 2.5 for Tiger
- Xcode 3.2.6 for Leopard and Snow Leopard
- Xcode 4 for Lion can be found in the App Store
If you are using Xcode 2.5, you will need to customize the install. Ensure all options under "Command Line Support" are checked. In Xcode 3, this is not necessary.
Hi Aleks, nice option, thkans, i have tried it offline and it works very well. just a little hesitation to use it online for its a development version. is it stable enough to be safe? [I am an absolute "noob" in this kind of thing ]
Building FileZilla 3
Download the FileZilla source. The current version is FileZilla_3.5.1.src.tar.bz2.
Start Terminal from the Applications/Utilities folder and enter the following commands:
cd /tmp tar xjf ~/Desktop/FileZilla_3.5.1_src.tar.bz2 cd filezilla-3.5.1 export PATH=$HOME/filezilla/wxMac/bin:$HOME/filezilla/gettext/bin:$HOME/filezilla/pkg-config/bin:$PATH export PKG_CONFIG_PATH=$HOME/filezilla/gnutls/lib/pkgconfig:$HOME/filezilla/sqlite/lib/pkgconfig export CPPFLAGS="-I$HOME/filezilla/libidn/include" export LDFLAGS="-L$HOME/filezilla/libidn/lib" ./configure && nice make cd FileZilla.app/Contents/MacOS strip filezilla fzputtygen fzsftp cd - && mv FileZilla.app ~/Desktop
If you get an error after "nice make", try this:
rm -rf FileZilla.app && nice make
Troubleshooting
If you run into problems, please make sure you've followed each step exactly how it is explained and that you haven't missed any steps along the way. Feel free to ask questions on the FileZilla forums.
Building under 10.6 Snow Leopard
When trying to build these codes under 10.6 you might - on certain machines - end up with errors. The reason is that we fail to compile wxWidgets for 64 bits. See [1] for how to build wxMac for 32 bits, or we may just use the Macports to install wxWidgets:
sudo port install wxwidgets
And now we also need to build libgpg-error, libgcrypt, GNU TLS and GNU libidn for 32 bits. Here is the commands for libgpg-error:
$ arch_flags="-arch i386" $ ./configure --prefix $HOME/filezilla/libgpg-error CFLAGS="$arch_flags" CXXFLAGS="$arch_flags" \ CPPFLAGS="$arch_flags" LDFLAGS="$arch_flags" OBJCFLAGS="$arch_flags" OBJCXXFLAGS="$arch_flags" $ nice make -j5 && make install
The commands for installing libgcrypt:
cd libgcrypt-1.4.6 ./configure --prefix $HOME/filezilla/libgcrypt --with-gpg-error-prefix=$HOME/filezilla/libgpg-error CC="gcc -m32" nice make -j5 && make install
Note CC="gcc -m32" is used for building Assemble code for 32 bits. For GNU TLS:
$ ./configure --prefix $HOME/filezilla/gnutls --with-libgcrypt --with-libgcrypt-prefix=$HOME/filezilla/libgcrypt \ CFLAGS="$arch_flags" CXXFLAGS="$arch_flags" CPPFLAGS="$arch_flags" LDFLAGS="$arch_flags" \ OBJCFLAGS="$arch_flags" OBJCXXFLAGS="$arch_flags" $ nice make -j5 && make install
And for GNU libidn:
$ cd libidn-1.22 $ ./configure --prefix $HOME/filezilla/libidn CFLAGS="$arch_flags" CXXFLAGS="$arch_flags" CPPFLAGS="$arch_flags" \ LDFLAGS="$arch_flags" OBJCFLAGS="$arch_flags" OBJCXXFLAGS="$arch_flags" $ nice make -j5 && make install
Now we can build FileZilla:
cd filezilla-3.5.0 export PATH=$HOME/filezilla/wxMac/bin:$HOME/filezilla/gettext/bin:$HOME/filezilla/pkg-config/bin:$PATH export PKG_CONFIG_PATH=$HOME/filezilla/gnutls/lib/pkgconfig:$HOME/filezilla/sqlite/lib/pkgconfig export CPPFLAGS="-I$HOME/filezilla/libidn/include" $ ./configure CFLAGS="$arch_flags" CXXFLAGS="$arch_flags" CPPFLAGS="$arch_flags" LDFLAGS="$arch_flags" \ OBJCFLAGS="$arch_flags" OBJCXXFLAGS="$arch_flags" --with-tinyxml=builtin --with-idn-lib=$HOME/filezilla/libidn/lib/libidn.dylib $ nice make -j5 $ cd FileZilla.app/Contents/MacOS $ strip filezilla fzputtygen fzsftp $ cd - $ mv FileZilla.app/ ~/Desktop/