diff options
author | DRC <dcommander@users.sourceforge.net> | 2010-07-05 20:18:05 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2010-07-05 20:18:05 +0000 |
commit | f1cd9cc84364f743aa9ff8b96f05e29d7aeb66c7 (patch) | |
tree | 5dec866cedfa5356c97acf841d365c8819f379d8 /unix/build-xorg | |
parent | d9e813d0035cd28cb4e587e23cecdc5edac14f03 (diff) | |
download | tigervnc-f1cd9cc84364f743aa9ff8b96f05e29d7aeb66c7.tar.gz tigervnc-f1cd9cc84364f743aa9ff8b96f05e29d7aeb66c7.zip |
Don't require GTK when building pixman module
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4082 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'unix/build-xorg')
-rwxr-xr-x | unix/build-xorg | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/unix/build-xorg b/unix/build-xorg index 19e84856..bce07af7 100755 --- a/unix/build-xorg +++ b/unix/build-xorg @@ -131,6 +131,9 @@ build () if [ "${module}" = "libSM" ]; then extraoptions="${extraoptions} --without-libuuid" fi + if [ "${module}" = "pixman" ]; then + extraoptions="${extraoptions} --disable-gtk" + fi if [ $STATIC = 1 ]; then extraoptions="${extraoptions} --enable-static --disable-shared" OLD_CFLAGS=${CFLAGS} |