aboutsummaryrefslogtreecommitdiffstats
path: root/acconfig.h
diff options
context:
space:
mode:
authorFritz Elfert <felfert@to.com>2000-08-02 03:39:20 +0000
committerFritz Elfert <felfert@to.com>2000-08-02 03:39:20 +0000
commitb6e35c977928bc4fb15b5346128db9823412e6b4 (patch)
treea76fada4bf540347bdf44ee9fff5c15a2100acb9 /acconfig.h
parentdbc2d14e0727d8e2f4b8e805c433e50c8664d64d (diff)
downloadplptools-b6e35c977928bc4fb15b5346128db9823412e6b4.tar.gz
plptools-b6e35c977928bc4fb15b5346128db9823412e6b4.tar.bz2
plptools-b6e35c977928bc4fb15b5346128db9823412e6b4.zip
Get rid of second configuration header defs.h[.in].
Configuration now is in config.h and this is included as the very first header.
Diffstat (limited to 'acconfig.h')
-rw-r--r--acconfig.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h
index 68f0453..5ac67c2 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -1,3 +1,8 @@
+#ifndef _CONFIG_H_
+#define _CONFIG_H_
+
+@TOP@
+
/* Define this, if you have libreadline */
#undef HAVE_LIBREADLINE
@@ -7,6 +12,49 @@
/* Define if the C++ compiler supports BOOL */
#undef HAVE_BOOL
+/* The package version */
#undef VERSION
+/* The package name */
#undef PACKAGE
+
+/* Define this to your mtab's path */
+#undef MTAB_PATH
+
+/* Define this to your temporary mtab's path */
+#undef MTAB_TMP
+
+/* Define this to your serial device node */
+#undef DDEV
+
+/* Define this to your serial device speed */
+#undef DSPEED
+
+/* Define this to the TCP port ncpd should listen on */
+#undef DPORT
+
+/* Define this to your default drive on your Psion */
+#undef DDRIVE
+
+/* Define this to your default directory on your Psion */
+#undef DBASEDIR
+
+/* Define this to your default mountpoint for plpnfsd */
+#undef DMOUNTPOINT
+
+@BOTTOM@
+/* Some reasonable defaults */
+
+#ifndef PSIONHOSTNAME
+# define PSIONHOSTNAME "localhost"
+#endif
+
+/* misc tweaks */
+
+#ifdef _IBMR2
+# undef DONT_UPDATE_MTAB
+# define DONT_UPDATE_MTAB /* The mount table is obtained from the kernel (!?) */
+#endif
+
+#endif /* _CONFIG_H_ */
+