Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdan Gheorghe2013-08-27 19:30:36 +0000
committerBogdan Gheorghe2013-08-27 19:30:36 +0000
commitf6e9442cd090786347c6c86e66bdbc958146002f (patch)
treed39026d5b2d673f0dac63c962d88044d5cf27538
parent21f2a03fbe7694f7be1fca5b3a734e7312dc1b23 (diff)
downloadeclipse.platform.swt-f6e9442cd090786347c6c86e66bdbc958146002f.tar.gz
eclipse.platform.swt-f6e9442cd090786347c6c86e66bdbc958146002f.tar.xz
eclipse.platform.swt-f6e9442cd090786347c6c86e66bdbc958146002f.zip
Add default GTK_VERSION to build.sh
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh
index 440c28aee3..45e4d49168 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh
@@ -15,6 +15,10 @@
cd `dirname $0`
MAKE_TYPE=make
+if [ "${GTK_VERSION}" = "" ]; then
+ GTK_VERSION=2.0
+ export GTK_VERSION
+fi
# Check if we have to compile external.xpt from external.idl
COMPONENTS_DIR=`pwd`/../../components

Back to the top