Silence gcc 3.4 warnings on ReactOS.  Mostly unused var warnings.  (patch 1015696)
diff --git a/src/mesa/shader/program.c b/src/mesa/shader/program.c
index daec925..c451fed 100644
--- a/src/mesa/shader/program.c
+++ b/src/mesa/shader/program.c
@@ -167,6 +167,7 @@
 						   struct program *prog,
 						   GLenum target, GLuint id)
 {
+   (void) ctx;
    if (prog) {
       prog->Id = id;
       prog->Target = target;
@@ -239,6 +240,7 @@
 void
 _mesa_delete_program(GLcontext *ctx, struct program *prog)
 {
+   (void) ctx;
    ASSERT(prog);
 
    if (prog->String)