summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJay Loden <jloden@gmail.com>2009-02-25 18:48:02 +0000
committerJay Loden <jloden@gmail.com>2009-02-25 18:48:02 +0000
commit30a6a4e83867fca55e184671cf07ebd77f1b1618 (patch)
treec9ac66332418258363dfa3befcfa3be7932a0a63 /setup.py
parent64bf13a18b5a854068ceebff90a5fcc110f4c5fc (diff)
downloadpsutil-30a6a4e83867fca55e184671cf07ebd77f1b1618.tar.gz
Fixed a bunch of compiler warnings that turned up on FreeBSD if using gcc
instead of cc to compile
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 8e481435..1dc68d7d 100644
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@ elif sys.platform.lower().startswith("darwin"):
sources = ['psutil/_psutil_osx.c', 'psutil/arch/osx/process_info.c']
)
-#
+# FreeBSD
elif sys.platform.lower().startswith("freebsd"):
extensions = Extension('_psutil_bsd',
sources = ['psutil/_psutil_bsd.c', 'psutil/arch/bsd/process_info.c']