From 881b150aed42c93f5d9229f4a12516e8da825b62 Mon Sep 17 00:00:00 2001 From: skyjake Date: Sun, 11 Mar 2012 11:36:38 +0200 Subject: [PATCH] qmake|Unix: Added deng_nosnowberry for excluding Snowberry The deng_nosnowberry CONFIG option will prevent a generic Unix build from installing the Snowberry files. This only affects generic Unix because on other platforms the installation of Snowberry is handled by the platform_release.py script. (Similarly, "deng_snowberry" only affects generic Unix.) (based on patch by vvv1) --- doomsday/config.pri | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doomsday/config.pri b/doomsday/config.pri index 9db25c0e05..5b1a8d4e3f 100644 --- a/doomsday/config.pri +++ b/doomsday/config.pri @@ -20,6 +20,7 @@ # - deng_fmod Build the FMOD Ex sound driver # - deng_nofixedasm Disable assembler fixed-point math # - deng_nosdlmixer Disable SDL_mixer; use dummy driver as default +# - deng_nosnowberry (Unix) Exclude Snowberry from installation # - deng_openal Build the OpenAL sound driver # - deng_packres Package the Doomsday resources # - deng_rangecheck Parameter range checking/value assertions @@ -112,7 +113,10 @@ unix { } unix:!macx { # Generic Unix build options. - CONFIG += deng_nofixedasm deng_snowberry deng_packres + CONFIG += deng_nofixedasm deng_packres + !deng_nosnowberry { + CONFIG += deng_snowberry + } exists(/etc/apt) { # Choose the apt repository to include in the distribution.