From: Andreas Schwab Date: Fri, 21 Sep 2012 12:57:34 +0000 (+0000) Subject: * python/python.c (finalize_python): Only define if HAVE_PYTHON. X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=810849a34e6e2b0f488c0ccbbf45ee324cd5182c;p=deliverable%2Fbinutils-gdb.git * python/python.c (finalize_python): Only define if HAVE_PYTHON. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a956b4b976..2fb946d9d4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2012-09-21 Andreas Schwab + + * python/python.c (finalize_python): Only define if HAVE_PYTHON. + 2012-09-21 Siddhesh Poyarekar * eval.c (evaluate_subexp_standard): Eliminate single-use diff --git a/gdb/python/python.c b/gdb/python/python.c index c66dc60356..97f8506054 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -1266,6 +1266,8 @@ user_show_python (char *args, int from_tty) /* Initialize the Python code. */ +#ifdef HAVE_PYTHON + /* This is installed as a final cleanup and cleans up the interpreter. This lets Python's 'atexit' work. */ @@ -1283,6 +1285,7 @@ finalize_python (void *ignore) Py_Finalize (); } +#endif /* Provide a prototype to silence -Wmissing-prototypes. */ extern initialize_file_ftype _initialize_python;