Author: tack Date: Wed Dec 13 21:48:12 2006 New Revision: 2231 Modified: trunk/xine/src/xine.c
Log: Move dlfcn include to bottom since python.h blindly defines _POSIX_C_SOURCE and dlfcn.h already defines this (avoids macro redefined warning). Modified: trunk/xine/src/xine.c ============================================================================== --- trunk/xine/src/xine.c (original) +++ trunk/xine/src/xine.c Wed Dec 13 21:48:12 2006 @@ -1,5 +1,3 @@ -#include <dlfcn.h> - #include "xine.h" #include "structmember.h" #include "vo_driver.h" @@ -21,6 +19,8 @@ #include "drivers/dummy.h" #include "drivers/common.h" +#include <dlfcn.h> + PyObject *xine_error; extern PyObject *xine_object_to_pyobject_dict; ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Freevo-cvslog mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-cvslog
