summaryrefslogtreecommitdiffstats
path: root/src/config.h
diff options
context:
space:
mode:
authornima <nima@abc39116-655e-4be6-ad55-d661dc543056>2009-03-31 11:37:58 +0000
committernima <nima@abc39116-655e-4be6-ad55-d661dc543056>2009-03-31 11:37:58 +0000
commit37d1a8117cd212ee9e47bbd4225ba76dece7dad7 (patch)
treef5817d1780670702c0f92c32bd62de53d68b3d36 /src/config.h
parent17cfe3a41998c075991a54a6deace28ba7744ed6 (diff)
downloadpython-dmidecode-37d1a8117cd212ee9e47bbd4225ba76dece7dad7.tar.gz
python-dmidecode-37d1a8117cd212ee9e47bbd4225ba76dece7dad7.tar.xz
python-dmidecode-37d1a8117cd212ee9e47bbd4225ba76dece7dad7.zip
Preparing to migrate to GIT.
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@179 abc39116-655e-4be6-ad55-d661dc543056
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/config.h b/src/config.h
deleted file mode 100644
index c1d7d03..0000000
--- a/src/config.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Configuration
- */
-
-#ifndef CONFIG_H
-#define CONFIG_H
-
-/* Default memory device file */
-#ifdef __BEOS__
-#define DEFAULT_MEM_DEV "/dev/misc/mem"
-#else
-#define DEFAULT_MEM_DEV "/dev/mem"
-#endif
-
-/* Use mmap or not */
-#ifndef __BEOS__
-#define USE_MMAP
-#endif
-
-/* Use memory alignment workaround or not */
-#ifdef __ia64__
-#define ALIGNMENT_WORKAROUND
-#endif
-
-#endif