summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornima <nima@abc39116-655e-4be6-ad55-d661dc543056>2008-10-16 15:52:48 +0000
committernima <nima@abc39116-655e-4be6-ad55-d661dc543056>2008-10-16 15:52:48 +0000
commit259d4088f61379786d1889c2e5bc7df2687ea6c3 (patch)
tree8704132bc9b979c2648310d964df4adc1cf53c31
parentc3078cd8c661c23b3ecc0928169a9a7b4613b6ee (diff)
downloadpython-dmidecode-259d4088f61379786d1889c2e5bc7df2687ea6c3.tar.gz
python-dmidecode-259d4088f61379786d1889c2e5bc7df2687ea6c3.tar.xz
python-dmidecode-259d4088f61379786d1889c2e5bc7df2687ea6c3.zip
Remove efence.
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@70 abc39116-655e-4be6-ad55-d661dc543056
-rw-r--r--Makefile3
-rw-r--r--setup.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7af6808..b66ffac 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,8 @@ CFLAGS += -g
SOFLAGS = -shared -fPIC
# Pass linker flags here
-LDFLAGS = -I/usr/include/$(PY) -lefence
+#LDFLAGS = -I/usr/include/$(PY) -lefence
+LDFLAGS = -I/usr/include/$(PY)
DESTDIR =
prefix = /usr/local
diff --git a/setup.py b/setup.py
index fb76d3a..056201f 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,8 @@ setup(
"dmidecode",
sources = [ "dmidecodemodule.c", "util.c", "catsprintf.c", "dmioem.c", "dmiopt.c", "dmidecode.c" ],
library_dirs = [ "/home/nima/dev-room/projects/dmidecode" ],
- libraries = [ "util", "efence" ],
+ libraries = [ "util" ],
+ #libraries = [ "util", "efence" ],
)
]
)