From 9e979e542165358b5c3684078e193f9c706f1eab Mon Sep 17 00:00:00 2001
From: Kenneth Russel <kbrussel@alum.mit.edu>
Date: Fri, 15 May 2009 21:07:37 +0000
Subject: Updated .cfg files to properly #include headers; updated build
 scripts to correctly pick up OS

git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/trunk@133 a78bb65f-1512-4460-ba86-f6dc96a7bf27
---
 doc/manual/example5/function.cfg | 3 +++
 doc/manual/example5/gen.sh       | 6 +++---
 2 files changed, 6 insertions(+), 3 deletions(-)

(limited to 'doc/manual/example5')

diff --git a/doc/manual/example5/function.cfg b/doc/manual/example5/function.cfg
index cb158ca..35af56f 100644
--- a/doc/manual/example5/function.cfg
+++ b/doc/manual/example5/function.cfg
@@ -7,3 +7,6 @@ NativeOutputDir gensrc/native
 # Tell GlueGen that default_screen_depth() returns a pointer to a
 # single ScreenInfo
 ReturnValueCapacity default_screen_depth sizeof(ScreenInfo)
+
+# Include the function.h header in the generated glue code
+CustomCCode #include "function.h"
diff --git a/doc/manual/example5/gen.sh b/doc/manual/example5/gen.sh
index 6fb971e..c44676f 100644
--- a/doc/manual/example5/gen.sh
+++ b/doc/manual/example5/gen.sh
@@ -2,13 +2,13 @@
 
 JAVA=java
 GLUEGEN_JAR=../../../build/gluegen.jar
-ANTLR_JAR=../../../../../ANTLR/antlr-2.7.4/antlr.jar
+ANTLR_JAR=../../../../../ANTLR/antlr-2.7.5.jar
 
 NAME=`uname`
 
-if [ $NAME="Windows*" ] ; then
+if [[ $NAME == "Windows*" ]] ; then
   SEP=\;
-elif [ $NAME="CYGWIN*" ] ; then
+elif [[ $NAME == "CYGWIN*" ]] ; then
   SEP=\;
 else
   SEP=:
-- 
cgit v1.2.3