summaryrefslogtreecommitdiffstats
path: root/make
Commit message (Collapse)AuthorAgeFilesLines
* build: Configure options cosmetics.Bradley Sepos2017-06-211-7/+10
|
* build: Always enable Libav AAC when building with mingw-w64.Bradley Sepos2017-06-211-1/+1
|
* build: Update to config.guess 2017-03-05.Bradley Sepos2017-04-071-287/+223
| | | | Closes #652.
* Remove Fontconfig on Windows (#610)Oleg Oshmyan2017-03-121-4/+0
| | | | | | | | | | | * Remove Fontconfig on Windows Let libass use its DirectWrite font provider backend instead of Fontconfig. This eliminates Fontconfig's font cache generation delay that occurred at the start of an encode after a system font was (un)installed or when HandBrake was installed and used to burn text subtitles for the first time. * Remove LibHB's dependency on Fontconfig when it's not used
* configure: Modernize Python in configure.py.cclauss2017-03-041-50/+35
| | | | | | | | | file is a Python built-in (https://docs.python.org/2/library/functions.html?highlight=file#file) so it should be avoided as a variable name. Use "with open" syntax to automate file close where possible. os.getenv() will return None if the key is not in os.environ. Use ternary if to simplify conditional assignment where it improves, not hinders, readability. Closes #500.
* Unbreak non-mingw cross.Wouter van Kesteren2017-03-041-1/+1
| | | | | | | | | | | | | Strings in python are immutable and it results in: Traceback (most recent call last): File "make/configure.py", line 1592, in <module> action.run() File "make/configure.py", line 287, in run self._action() File "make/configure.py", line 506, in _action self.systemf[0] = self.systemf[0].upper() TypeError: 'str' object does not support item assignment
* disable fontconfig on macOSDamiano Galassi2017-01-181-1/+4
|
* build: Gracefully exit configure where version info is not present.Bradley Sepos2016-12-271-5/+10
| | | | configure.py fails hard when .git or version.txt are not present, usually when downloading a source archive from GitHub or other git-archive use. This allows configure to fail gracefully, printing instructions to work from a git clone or download a proper source archive.
* doc: Remove legacy documentation.Bradley Sepos2016-12-221-1/+0
| | | | Superseded by https://handbrake.fr/docs
* build: Add install, install-strip, and uninstall targets for Darwin/Mac.Bradley Sepos2016-12-221-1/+13
| | | | | | | Also refactor test.* convenience targets for Darwin/Mac. Configure parameter --prefix now sets HandBrakeCLI install directory [/usr/local] like on other systems. New configure parameter --xcode-prefix sets HandBrake.app install directory [/Applications]. Not used on other systems.
* build: Really ensure tag suffix is not None in configure.py.Bradley Sepos2016-12-181-2/+1
|
* build: Ensure tag suffix is not None in configure.py.Bradley Sepos2016-12-181-1/+2
|
* contrib: Use SHA256 instead of MD5 for contrib archive checksums.Justin Scholz2016-12-153-20/+20
| | | | Closes #356.
* build: Use UTC datetime for build info.Chris Lamb2016-09-091-3/+5
| | | | | | Makes build reproducible per https://wiki.debian.org/ReproducibleBuilds Signed-off-by: Chris Lamb <[email protected]>
* build: Add PKGCONFIG.exe tool.Bradley Sepos2016-09-031-0/+1
|
* contrib: Add opus audio encoder.John Stebbins2016-09-021-0/+1
| | | | | | | | | | Remove: hb_audio_samplerate_get_best() Add: hb_audio_samplerate_is_supported() hb_audio_samplerate_find_closest() hb_audio_samplerate_get_sr_shift()
* build: fix configure error created by flatpak commitJohn Stebbins2016-08-311-2/+2
|
* LinGui: Add flatpak support (#231)John Stebbins2016-08-302-0/+15
| | | | | | | | | | | | | | | | | | | | | | | * LinGui: add --flatpak configure option For building a linux flatpak bundle * LinGui: add rules to build flatpak repo and bundles * LinGui: add flatpak compatible icon * LinGui: add flatpak compatible desktop file * LinGui: add flatpak appdata xml * pkg: disable building LinGui when creating cli flatpak * pkg: clean flatpak build cache when updating source package * pkg: fix source package build dependencies Fixes errors when the git ref being packaged changes and you have not manually deleted stage and pkg build directories.
* configure: check for strerror_r()Sean McGovern2016-07-101-0/+21
|
* contrib: Update to pthreads-win32 2.9.1.Bradley Sepos2016-06-211-0/+1
|
* build: Avoid sending ANSI to Windows terminals.Bradley Sepos2016-05-251-1/+1
|
* contrib: Update to libass 0.13.2 and add HarfBuzz 1.2.6.Bradley Sepos2016-05-251-0/+1
| | | | | | | | | | | | HarfBuzz is now enabled when building libass. Resolves #162. Additional libass notes: - Add yasm dependency for better performance. - Remove no longer valid configure params. - Disable new coretext and directwrite font selection backends pending additional testing (coretext did not build properly).
* build: Add basic termination signal handling to df-*.py.Bradley Sepos2016-05-252-0/+20
|
* build: Add download jobs option and progress display.Bradley Sepos2016-05-253-4/+42
|
* Build: fix configure to escape $ for xcodeKonaBlend2016-05-251-1/+1
|
* Build: more fetch tweaksKonaBlend2016-05-252-13/+10
| | | | | | - df-fetch --disable: exit with error to stop make. - df-fetch raise error when no URLs specified, or available due to ACLs. - df-verify report errors consistent with df-fetch.
* Build: fix duplicate pkgconfig includeKonaBlend2016-05-251-0/+2
| | | | | pkgconfig module is specified twice by the build system, causing much grief. Caused when both local-autotools and local-pkgconfig are enabled.
* Build: add target contrib.fetch.testKonaBlend2016-05-253-3/+7
| | | | - remove configure --df-exhaust-url
* Build: add configure --df-exhaust-urlKonaBlend2016-05-253-6/+11
| | | | | Specifying this option will cause fetching to run through all active URLs. Decent way to test all URLs.
* Build: split fetch into df-fetch and df-verifyKonaBlend2016-05-257-308/+450
| | | | | | | - moved common python code to lib/hb_distfile.py - beautified tmpfile creation - added stack-style resource management to df-fetch - fixed contrib assumptions about single URL
* Build: add configure --verbose-fetchKonaBlend2016-05-252-4/+7
|
* Build: add target: contrib.verifyKonaBlend2016-05-252-11/+68
| | | | | New target sits between extract and fetch. Thus every build ensures that exach tarball is not corrupt before extract.
* Build: refactor fetch for contrib tarballsKonaBlend2016-05-257-33/+321
| | | | | | | | | | | | | | | | | | | | | | | | Fetch is now python-based and runs on the same version as does configure. The source script is make/fetch.py. New features: MD5 hash tracking for tarballs. Data values for all contribs added. Upon download, the file will be verified, and only then will it be moved into place inside downloads/ . Files that exist before the build system does a fetch will not be md5-checked. Multiple URLs for tarballs. Each module may specify one or more URLs and by convention the official HandBrake should be first when possible. Each URL is tried in sequence, and if it fails for any reason, the next URL is tried. If no URL succeeds, a hard-error is reported. Network fetching may be disabled via configure options. --disable-fetch will hard-error if a fetch is attempted. --accept-fetch-url=SPEC and --deny-fetch-url=SPEC offer an ACL-style mechanism using regex to match against URLs. For example, --accept-fecth-url='.*/download.handbrake.fr/.*' would skip any non-matching URLs. Build dependencies have been lightened. wget and curl are no longer required. TODO: GTK packaging should also be able to remove those deps.
* Add ability to set C++ standard (#195)John Stebbins2016-05-242-7/+11
| | | | | | * build: add ability to set c++ standard * fdk-aac: Fix building with g++ 6, set c++98 standard
* build: Increase max logical CPU cores to 64.Bradley Sepos2016-05-241-2/+2
|
* build: Update regex in configure.py to fix buggy Python versions.Bradley Sepos2016-05-241-1/+1
|
* remove dxva hw decode (#189)John Stebbins2016-05-171-3/+0
| | | | | | | | | * remove dxva hw decode It provides practically no speed increase even on a slow CPU and results in a speed decrease on fast CPUs. And the code is exceptionally fugly. * cli: remove USE_HWD
* build: fix regex probeJohn Stebbins2016-03-131-1/+1
|
* build: do not enable fdk-aac by defaultJohn Stebbins2016-02-101-1/+1
| | | | | | There is a license incompatibility with gpl :( (cherry picked from commit 6da861c9dc023e5b7cad648d596f571ee1214bbf)
* configure: use gm4 as a synonym for GNU m4Sean McGovern2015-10-071-1/+1
|
* build: changes to version numbering and build processJohn Stebbins2015-09-231-18/+66
| | | | | | Use date/time for snapshot version numbers, YYYYMMDDHHMMSS-hash-branch. Add --snapshot configure option to force snapshot builds. repo-info.sh and tag-release.sh improvements.
* build: fix errors in last commitJohn Stebbins2015-08-251-1/+1
| | | | Thanks BradleyS
* build: use git version info instead of svnJohn Stebbins2015-08-252-74/+79
| | | | | | Migrate from svn to git. Since our build system automatically generates version info from the svn repo, this needs to change when we move the repo to git.
* MacGui: set the deployment target to 10.7.ritsuka2015-05-211-1/+1
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7216 b64f7644-9d1e-0410-96f1-a4d463321fa5
* libhb: Build local pkgconfig when building local autotools.bradleys2015-04-241-1/+2
| | | | | | | | Prevents missing pkgconfig macros causing build failures on some systems when using local autotools with system pkgconfig. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7123 b64f7644-9d1e-0410-96f1-a4d463321fa5
* Move strtok_r fallback to dedicated "compat" files.Rodeo2015-04-101-0/+15
| | | | | | | Also, check whether the toolchain already provides strtok_r instead of building it unconditionally. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7076 b64f7644-9d1e-0410-96f1-a4d463321fa5
* LinGui: change settings dict from glib to janssonjstebbins2015-03-061-1/+1
| | | | | | | | This will allow for preferences, presets, and queue files to be written as json instead of plists (currently still plists). git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6968 b64f7644-9d1e-0410-96f1-a4d463321fa5
* libhb: Fix lame and i686/mingw builds with SSE enabled.bradleys2015-02-111-7/+7
| | | | | | | | Also fix an old typo in gcc.defs. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6895 b64f7644-9d1e-0410-96f1-a4d463321fa5
* build: fix linux i686 buildjstebbins2015-01-302-3/+8
| | | | | | | Adds -msse2 to compiler flags which is needed by new nlmeans sse acceleration git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6837 b64f7644-9d1e-0410-96f1-a4d463321fa5
* build: fix mingw Jenkins buildsjstebbins2015-01-191-2/+2
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6773 b64f7644-9d1e-0410-96f1-a4d463321fa5