diff options
author | jstebbins <[email protected]> | 2012-07-07 00:11:57 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2012-07-07 00:11:57 +0000 |
commit | 453619f81000de7b2622ab0403f880f6dd3db4d0 (patch) | |
tree | a44286a3d162439401588bffb5f92e5ca8056605 /make/variant | |
parent | 5e4a58cc2d39db9c5e8b4f5201c6bf9352412688 (diff) |
Forgotten part of portability patches
This should have been committed with 4717
Thanks to Rogério Theodoro de Brito and Pino Toscano for contributing
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4815 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'make/variant')
-rw-r--r-- | make/variant/gnu.defs | 11 | ||||
-rw-r--r-- | make/variant/kfreebsd.defs | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/make/variant/gnu.defs b/make/variant/gnu.defs new file mode 100644 index 000000000..c70327292 --- /dev/null +++ b/make/variant/gnu.defs @@ -0,0 +1,11 @@ +TARGET.dylib.ext = .so + +GCC.start = 1 +GCC.end = 1 +GCC.args.dylib = -shared +GCC.args.pic = 1 + +GCC.args.g.none = -g0 +GCC.args.g.min = -g1 +GCC.args.g.std = -g2 +GCC.args.g.max = -g3 diff --git a/make/variant/kfreebsd.defs b/make/variant/kfreebsd.defs new file mode 100644 index 000000000..c70327292 --- /dev/null +++ b/make/variant/kfreebsd.defs @@ -0,0 +1,11 @@ +TARGET.dylib.ext = .so + +GCC.start = 1 +GCC.end = 1 +GCC.args.dylib = -shared +GCC.args.pic = 1 + +GCC.args.g.none = -g0 +GCC.args.g.min = -g1 +GCC.args.g.std = -g2 +GCC.args.g.max = -g3 |