To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=82630
Issue #|82630
Summary|Python.h check not effective
Component|tools
Version|OOo 2.3
Platform|All
URL|
OS/Version|All
Status|NEW
Status whiteboard|
Keywords|
Resolution|
Issue type|PATCH
Priority|P3
Subcomponent|configure
Assigned to|rene
Reported by|rene
------- Additional comments from [EMAIL PROTECTED] Mon Oct 15 13:21:55 +0000
2007 -------
The Python.h check currently in the tree is not effective (does nothing really).
Simple patch:
Index: configure.in
===================================================================
RCS file: /cvs/tools/config_office/configure.in,v
retrieving revision 1.221
diff -u -u -r1.221 configure.in
--- config_office/configure.in 4 Oct 2007 07:48:20 -0000 1.221
+++ config_office/configure.in 15 Oct 2007 09:02:22 -0000
@@ -3133,7 +3133,8 @@
dnl check if the headers really work:
save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $PYTHON_CFLAGS"
- AC_TRY_CPP(Python.h, , AC_MSG_ERROR([Python headers not found.]))
+ AC_CHECK_HEADER(Python.h, [],
+ [AC_MSG_ERROR(Python headers not found)], [])
CPPFLAGS="$save_CPPFLAGS"
else
SYSTEM_PYTHON=NO
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]