SVN commit 727631 by hasso: Correct includes. For getpid(2) is required, and sys/types.h has to be included before utime.h. Fixes compile problems in DragonFly BSD. M +4 -0 gpssync/kmlexport.cpp M +2 -2 jpeglossless/utils.cpp M +1 -0 timeadjust/timeadjustdialog.cpp --- branches/extragear/kde3/libs/kipi-plugins/gpssync/kmlexport.cpp #727630:727631 @@ -17,6 +17,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ +extern "C" { +#include +}; + // Local includes. #include "kmlexport.h" --- branches/extragear/kde3/libs/kipi-plugins/jpeglossless/utils.cpp #727630:727631 @@ -30,10 +30,10 @@ extern "C" { +#include +#include #include #include -#include -#include } // Qt includes. --- branches/extragear/kde3/libs/kipi-plugins/timeadjust/timeadjustdialog.cpp #727630:727631 @@ -25,6 +25,7 @@ extern "C" { +#include #include }