From 8ec0ffe69a20c1ae605e106bf745803577263d56 Mon Sep 17 00:00:00 2001 From: "scc%netscape.com" Date: Fri, 2 Oct 1998 01:16:14 +0000 Subject: [PATCH] No relative paths for Mac, please. Wrapped #include in #ifdef XP_MAC. git-svn-id: svn://10.0.0.236/trunk@11737 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/modules/plugin/src/nsplugin.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mozilla/modules/plugin/src/nsplugin.cpp b/mozilla/modules/plugin/src/nsplugin.cpp index cbcb4e0d0bb..8bcc88c2c60 100644 --- a/mozilla/modules/plugin/src/nsplugin.cpp +++ b/mozilla/modules/plugin/src/nsplugin.cpp @@ -46,7 +46,11 @@ #include "prthread.h" /* This is a private NSPR header - cls */ #ifdef OJI -#include "private/pprthred.h" + #ifdef XP_MAC + #include "pprthred.h" + #else + #include "private/pprthred.h" + #endif #endif #include "prtypes.h" #include "nsHashtable.h"