diff options
author | saintdev <[email protected]> | 2008-06-17 20:01:15 +0000 |
---|---|---|
committer | saintdev <[email protected]> | 2008-06-17 20:01:15 +0000 |
commit | 7e8df78d700a5e9ea581a1965a73922a7555443f (patch) | |
tree | 259977dddf27851ba8c6c0a5e63abc11395af992 /BUILD | |
parent | 8bbd36bcbe75a53b29f7cc62e5ae9d107f92eddc (diff) |
Set svn:eol-style=native on most text files.
Goodbye evil CRLF.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1518 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'BUILD')
-rw-r--r-- | BUILD | 206 |
1 files changed, 103 insertions, 103 deletions
@@ -1,103 +1,103 @@ -$Id: BUILD,v 1.11 2005/10/23 01:35:59 titer Exp $
-
-BUILD file for HandBrake <http://handbrake.fr/>
-
-Building HandBrake with make
-=============================
-
-Step 1: get needed tools
-==============
-
-+ gcc and g++
- There are usually included in your OS' dev tools. On BeOS/Zeta, the
- default gcc isn't enough, gcc 2.95.3 is required.
-
-+ nasm (Only for x86. On Mac OS X Intel, Xcode 2.4.1 include it)
-
-Cygwin setup:
- There are a couple extra things required to make the code build for Cygwin.
- Make sure you have /bin and /usr/bin on your path *first*, before
- the Windows paths. Otherwise the Cygwin find.exe won't be used, and
- lame won't build.
- Also, I have not tried to build this with MinGW, I've only built it with
- the Cygwin environment, so you should build with Cygwin gcc and dev tools.
- Unfortunately this means you need to have cygwin1.dll around to run the
- HandbrakeCLI.exe program, but that's the way it is for now, until I get time
- to try building it with MinGW. If you want to try making it work with
- MinGW, then go for it!
-
-Step 2: configuration
-==============
-
-The HB_BUILD and HB_VERSION are defined in a single file, the Makefile correct the values in Xcode too.
-
-The file where the informations are stored is Makefile.config
-
-Step 3: build
-==============
-
-Run `make'. This will build libhb, Handbrake and HandBrakeCLI as Universal Binary.
-This build method use precompiled contrib libraries. Script to build those binaries are provided too.
-All the build is handled by Xcode 2.4.1, should work on powerPC and Intel Macs.
-
-# To build under Cygwin simply use the command:
-make HandbrakeCLI
-
-This will download pre-compiled libaries and build the handbrake source.
-
------------------------------------------------------------------------------------------------------
-
-Building HandBrake with jam
-=============================
-
-You can build HandBrake on BeOS, MacOS X, Linux, and on Windows using Cygwin.
-If you'd like to port it to another OS, email me ([email protected]).
-
-Step 1: get needed tools
-==============
-
-+ gcc and g++
- There are usually included in your OS' dev tools. On BeOS/Zeta, the
- default gcc isn't enough, gcc 2.95.3 is required.
-
-+ jam
- I use 2.5rc3, earlier versions might cause issues.
- On BeOS, you can download it at <http://www.haiku-os.org/develop.php>.
- On OS X, you cannot use the modified jam shipped with the developer
- tools, use the one included in the Handbrake svn checkout instead.
- On Cygwin, get the jam source from
- http://public.perforce.com/public/jam/index.html,
- compile it with gcc in Cygwin, and put the jam executable somewhere on
- your path.
-
-+ nasm (Only for x86. On Mac OS X Intel, Xcode 2.4.1 include it)
-
-+ libtool, autoconf, automake
- To build libdca (the DTS audio extraction library) on Mac OS X via jam, you'll
- need to update the default Mac OS X versions of libtool, autoconf and automake.
- Compilation has been seen to work with libtool and libtool-shlibs v1.5.22-1000,
- autoconf v2.60-4, and automake v1.9.6-3. You can update these tools using Fink.
- Download the Fink 0.8.1 Binary Installer for your platform (PowerPC or Intel)
- from http://www.finkproject.org/download/index.php?phpLang=en and install Fink
- using the installer. If you want to use a GUI to run Fink, you can install
- FinkCommander. Download the FinkCommander 0.5.4 installer from
- http://finkcommander.sourceforge.net/ and install from the disk image. You can
- install libtool, libtool-shlibs, autoconf and automake using FinkCommander.
-
-Cygwin setup:
- There are a couple extra things required to make the code build for Cygwin.
- Make sure you have /bin and /usr/bin on your path *first*, before
- the Windows paths. Otherwise the Cygwin find.exe won't be used, and
- lame won't build.
- Also, I have not tried to build this with MinGW, I've only built it with
- the Cygwin environment, so you should build with Cygwin gcc and dev tools.
- Unfortunately this means you need to have cygwin1.dll around to run the
- HandbrakeCLI.exe program, but that's the way it is for now, until I get time
- to try building it with MinGW. If you want to try making it work with
- MinGW, then go for it!
-
-Step 2: build
-==============
-
-Run `./configure && jam'. This will build every library HandBrake
-requires, then HandBrake itself.
+$Id: BUILD,v 1.11 2005/10/23 01:35:59 titer Exp $ + +BUILD file for HandBrake <http://handbrake.fr/> + +Building HandBrake with make +============================= + +Step 1: get needed tools +============== + ++ gcc and g++ + There are usually included in your OS' dev tools. On BeOS/Zeta, the + default gcc isn't enough, gcc 2.95.3 is required. + ++ nasm (Only for x86. On Mac OS X Intel, Xcode 2.4.1 include it) + +Cygwin setup: + There are a couple extra things required to make the code build for Cygwin. + Make sure you have /bin and /usr/bin on your path *first*, before + the Windows paths. Otherwise the Cygwin find.exe won't be used, and + lame won't build. + Also, I have not tried to build this with MinGW, I've only built it with + the Cygwin environment, so you should build with Cygwin gcc and dev tools. + Unfortunately this means you need to have cygwin1.dll around to run the + HandbrakeCLI.exe program, but that's the way it is for now, until I get time + to try building it with MinGW. If you want to try making it work with + MinGW, then go for it! + +Step 2: configuration +============== + +The HB_BUILD and HB_VERSION are defined in a single file, the Makefile correct the values in Xcode too. + +The file where the informations are stored is Makefile.config + +Step 3: build +============== + +Run `make'. This will build libhb, Handbrake and HandBrakeCLI as Universal Binary. +This build method use precompiled contrib libraries. Script to build those binaries are provided too. +All the build is handled by Xcode 2.4.1, should work on powerPC and Intel Macs. + +# To build under Cygwin simply use the command: +make HandbrakeCLI + +This will download pre-compiled libaries and build the handbrake source. + +----------------------------------------------------------------------------------------------------- + +Building HandBrake with jam +============================= + +You can build HandBrake on BeOS, MacOS X, Linux, and on Windows using Cygwin. +If you'd like to port it to another OS, email me ([email protected]). + +Step 1: get needed tools +============== + ++ gcc and g++ + There are usually included in your OS' dev tools. On BeOS/Zeta, the + default gcc isn't enough, gcc 2.95.3 is required. + ++ jam + I use 2.5rc3, earlier versions might cause issues. + On BeOS, you can download it at <http://www.haiku-os.org/develop.php>. + On OS X, you cannot use the modified jam shipped with the developer + tools, use the one included in the Handbrake svn checkout instead. + On Cygwin, get the jam source from + http://public.perforce.com/public/jam/index.html, + compile it with gcc in Cygwin, and put the jam executable somewhere on + your path. + ++ nasm (Only for x86. On Mac OS X Intel, Xcode 2.4.1 include it) + ++ libtool, autoconf, automake + To build libdca (the DTS audio extraction library) on Mac OS X via jam, you'll + need to update the default Mac OS X versions of libtool, autoconf and automake. + Compilation has been seen to work with libtool and libtool-shlibs v1.5.22-1000, + autoconf v2.60-4, and automake v1.9.6-3. You can update these tools using Fink. + Download the Fink 0.8.1 Binary Installer for your platform (PowerPC or Intel) + from http://www.finkproject.org/download/index.php?phpLang=en and install Fink + using the installer. If you want to use a GUI to run Fink, you can install + FinkCommander. Download the FinkCommander 0.5.4 installer from + http://finkcommander.sourceforge.net/ and install from the disk image. You can + install libtool, libtool-shlibs, autoconf and automake using FinkCommander. + +Cygwin setup: + There are a couple extra things required to make the code build for Cygwin. + Make sure you have /bin and /usr/bin on your path *first*, before + the Windows paths. Otherwise the Cygwin find.exe won't be used, and + lame won't build. + Also, I have not tried to build this with MinGW, I've only built it with + the Cygwin environment, so you should build with Cygwin gcc and dev tools. + Unfortunately this means you need to have cygwin1.dll around to run the + HandbrakeCLI.exe program, but that's the way it is for now, until I get time + to try building it with MinGW. If you want to try making it work with + MinGW, then go for it! + +Step 2: build +============== + +Run `./configure && jam'. This will build every library HandBrake +requires, then HandBrake itself. |