diff options
author | jmagne <jmagne@fba4d07e-fe0f-4d7f-8147-e0026e666dc0> | 2007-01-18 01:05:07 +0000 |
---|---|---|
committer | jmagne <jmagne@fba4d07e-fe0f-4d7f-8147-e0026e666dc0> | 2007-01-18 01:05:07 +0000 |
commit | befcfc503218ee5df3b92c982229f7b4fa131c46 (patch) | |
tree | ed3b1b57784cb6104f205b14000c099b7fb69937 /src | |
parent | 06850fbe0584c70bc7f3e0e042fc4655f36c2825 (diff) |
Use define MAC instead of DARWIN for Mac ifdefs. Allows program to compile on the Mac.
git-svn-id: http://svn.fedorahosted.org/svn/coolkey/trunk@41 fba4d07e-fe0f-4d7f-8147-e0026e666dc0
Diffstat (limited to 'src')
-rw-r--r-- | src/install/pk11install.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install/pk11install.c b/src/install/pk11install.c index 54b88ae..1e0c9c4 100644 --- a/src/install/pk11install.c +++ b/src/install/pk11install.c @@ -144,7 +144,7 @@ DirList dirList[] = { { AppDataDir, "Thunderbird\\Profiles\\*", NULL }, { NetscapeInstallDir, "..\\Users\\*", NULL }, #endif -#ifndef DARWIN +#ifndef MAC #ifdef UNIX { HomeDir, ".mozilla/firefox/*", NULL }, { HomeDir, ".mozilla/*", NULL }, @@ -152,7 +152,7 @@ DirList dirList[] = { { HomeDir, ".netscape", NULL }, #endif #endif -#ifdef DARWIN +#ifdef MAC { HomeDir, "Library/Mozilla/Profiles/*", "*.slt"}, { HomeDir, "Library/Application Support/Firefox/Profiles/*", NULL }, |