diff --git a/ppremake/configure.in b/ppremake/configure.in index f58e2c717c..7bf3d1e498 100644 --- a/ppremake/configure.in +++ b/ppremake/configure.in @@ -72,7 +72,8 @@ else irix*) PLATFORM=Irix;; linux*) PLATFORM=Linux;; cygwin*) PLATFORM=Cygwin;; - *) echo "Cannot determine platform; use --with-platform=name." + darwin*) PLATFORM=OSX;; + *) echo "Cannot determine platform from $host_os; use --with-platform=name." exit 1;; esac fi diff --git a/ppremake/md5.c b/ppremake/md5.c index e2851a12f6..9cba49a9fd 100644 --- a/ppremake/md5.c +++ b/ppremake/md5.c @@ -23,6 +23,7 @@ */ #include "md5.h" +#include /* Constants for MD5Transform routine. */