diff options
author | konablend <[email protected]> | 2009-05-02 21:18:28 +0000 |
---|---|---|
committer | konablend <[email protected]> | 2009-05-02 21:18:28 +0000 |
commit | e5aaf58dc69573414ca03f5721768dc8557d93cf (patch) | |
tree | 9e42ffa26fab78d8d93599f6366d0a7317999dbf /contrib | |
parent | fdee73845cd30f80b18dde06146ac78a5affaebb (diff) |
BuildSystem: fix libmp4v2 error: Error: file number 2 already allocated
- building libmp4v2 w/ --debug=max (-g3) exposes a gch issue.
- workaround is to disable gch.
- corrected variant/*.defs files: GCC.args.g.default -> GCC.args.g.std
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2367 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/libmp4v2/module.defs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/libmp4v2/module.defs b/contrib/libmp4v2/module.defs index 434d93f75..784fc16d4 100644 --- a/contrib/libmp4v2/module.defs +++ b/contrib/libmp4v2/module.defs @@ -10,4 +10,6 @@ LIBMP4V2.CONFIGURE.env.CXXFLAGS = CXXFLAGS="$(call fn.ARGS,LIBMP4V2.GCC,*archs * ## save some build-time by disabling utils LIBMP4V2.CONFIGURE.extra += --disable-util -LIBMP4V2.CONFIGURE.extra += --enable-gch + +## make sure gch is disabled; we get build errors on linux with gcc-4.3.x and -g3 +LIBMP4V2.CONFIGURE.extra += --disable-gch |