Browse Source

plAgeLoader needs unistd for getpid.

Darryl Pogue 13 years ago
parent
commit
2160df9cd3
  1. 6
      Sources/Plasma/PubUtilLib/plAgeLoader/plAgeLoader.cpp

6
Sources/Plasma/PubUtilLib/plAgeLoader/plAgeLoader.cpp

@ -46,7 +46,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
//#include "hsTimer.h"
#include "plResPatcher.h"
#include "plBackgroundDownloader.h"
#include "process.h" // for getpid()
#if HS_BUILD_FOR_WIN32
# include "process.h" // for getpid()
#else
# include <unistd.h>
#endif
#include "pnProduct/pnProduct.h"

Loading…
Cancel
Save