Fix build failure when building without Python support.
authorJoel Brobecker <brobecker@gnat.com>
Mon, 18 Jan 2010 10:50:45 +0000 (10:50 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Mon, 18 Jan 2010 10:50:45 +0000 (10:50 +0000)
        * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
        is not defined.

gdb/ChangeLog
gdb/python/python.c

index 2eb2297..e45be31 100644 (file)
@@ -1,5 +1,11 @@
 2010-01-18  Joel Brobecker  <brobecker@adacore.com>
 
+       Fix build failure when building without Python support.
+       * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
+       is not defined.
+
+2010-01-18  Joel Brobecker  <brobecker@adacore.com>
+
        Use XVS field type instead of doing a parallel lookup.
        * ada-lang.c (ada_get_base_type): Follow the XVS field type
        if it is a reference type instead of doing a type lookup using
index 1f1ae72..29386c9 100644 (file)
@@ -27,6 +27,7 @@
 #include "observer.h"
 #include "value.h"
 #include "language.h"
+#include "exceptions.h"
 
 #include <ctype.h>
 
@@ -45,7 +46,6 @@ static int gdbpy_auto_load = 1;
 #include "cli/cli-decode.h"
 #include "charset.h"
 #include "top.h"
-#include "exceptions.h"
 #include "python-internal.h"
 #include "version.h"
 #include "target.h"