summaryrefslogtreecommitdiff
path: root/source4/auth
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-10-23 16:23:01 +1100
committerAndrew Tridgell <tridge@samba.org>2009-10-23 16:23:01 +1100
commit3050f8328862c7c77d3d692453bd9cc0885824e5 (patch)
tree2c49a56892335d182a26b9072082f28e0152b830 /source4/auth
parente34106ca8b001d75182975a89145ded75dc6619d (diff)
downloadsamba-3050f8328862c7c77d3d692453bd9cc0885824e5.tar.gz
samba-3050f8328862c7c77d3d692453bd9cc0885824e5.tar.bz2
samba-3050f8328862c7c77d3d692453bd9cc0885824e5.zip
s4-python: we need to include Python.h first
If we don't include Python.h first then we get a pile of warnings due to broken redefines of XOPEN_SOURCE in the Python includes.
Diffstat (limited to 'source4/auth')
-rw-r--r--source4/auth/credentials/pycredentials.c2
-rw-r--r--source4/auth/gensec/pygensec.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/auth/credentials/pycredentials.c b/source4/auth/credentials/pycredentials.c
index b0433abeab..59a200b09e 100644
--- a/source4/auth/credentials/pycredentials.c
+++ b/source4/auth/credentials/pycredentials.c
@@ -16,8 +16,8 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "includes.h"
#include <Python.h>
+#include "includes.h"
#include "pycredentials.h"
#include "param/param.h"
#include "lib/cmdline/credentials.h"
diff --git a/source4/auth/gensec/pygensec.c b/source4/auth/gensec/pygensec.c
index c799ffd75c..87c38053a7 100644
--- a/source4/auth/gensec/pygensec.c
+++ b/source4/auth/gensec/pygensec.c
@@ -16,8 +16,8 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "includes.h"
#include <Python.h>
+#include "includes.h"
#include "param/pyparam.h"
#include "auth/gensec/gensec.h"
#include "libcli/util/pyerrors.h"