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 2eb2297be1325e4e77db812a68dc7417bf9be7fe..e45be319fcc179957c708cd7763fc2e9605a2f4e 100644 (file)
@@ -1,3 +1,9 @@
+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.
index 1f1ae729fb3d3516fe327443646329425047bb63..29386c9205333aab33348c5e9742343ed8070c5e 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"