summaryrefslogtreecommitdiff
path: root/extra/Configs
diff options
context:
space:
mode:
authorDavid McCullough <davidm@snapgear.com>2002-01-17 06:26:05 +0000
committerDavid McCullough <davidm@snapgear.com>2002-01-17 06:26:05 +0000
commit23457259675d4a21f6840a30e2b41014540eab2d (patch)
tree1e29e4b02bd95566e6aea0205d4e8b564c5ce853 /extra/Configs
parent47e0a8060499c822772437a3ca1765297857c131 (diff)
* Added /etc/shadow support (Config selectable)
* Moved some file paths from code into <paths.h>
Diffstat (limited to 'extra/Configs')
-rw-r--r--extra/Configs/Config.arm3
-rw-r--r--extra/Configs/Config.cross.arm.uclinux3
-rw-r--r--extra/Configs/Config.i3863
-rw-r--r--extra/Configs/Config.m68k3
-rw-r--r--extra/Configs/Config.m68k.coff3
-rw-r--r--extra/Configs/Config.mips3
-rw-r--r--extra/Configs/Config.mipsel3
-rw-r--r--extra/Configs/Config.powerpc3
-rw-r--r--extra/Configs/Config.sh3
9 files changed, 27 insertions, 0 deletions
diff --git a/extra/Configs/Config.arm b/extra/Configs/Config.arm
index ba0023367..deb75ed34 100644
--- a/extra/Configs/Config.arm
+++ b/extra/Configs/Config.arm
@@ -77,6 +77,9 @@ DO_C99_MATH = false
# Also omits strto(u)ll, and (u)lltostr from the library if `false'.
HAS_LONG_LONG = false
+# Set this to 'false if you don't need shadow password support.
+HAS_SHADOW = false
+
# Set this to `false' if you don't have/need locale support; `true' otherwise.
# Note: Currently only affects the ctype functions. You must also generate
# a locale file for anything but the C locale. See directory extra/locale for
diff --git a/extra/Configs/Config.cross.arm.uclinux b/extra/Configs/Config.cross.arm.uclinux
index 2c3f8163f..5e905f636 100644
--- a/extra/Configs/Config.cross.arm.uclinux
+++ b/extra/Configs/Config.cross.arm.uclinux
@@ -73,6 +73,9 @@ DO_C99_MATH = false
# Also omits strto(u)ll, and (u)lltostr from the library if `false'.
HAS_LONG_LONG = true
+# Set this to 'false if you don't need shadow password support.
+HAS_SHADOW = false
+
# Set this to `false' if you don't have/need locale support; `true' otherwise.
# Note: Currently only affects the ctype functions. You must also generate
# a locale file for anything but the C locale. See directory extra/locale for
diff --git a/extra/Configs/Config.i386 b/extra/Configs/Config.i386
index 7d77441d7..ef2ee4e22 100644
--- a/extra/Configs/Config.i386
+++ b/extra/Configs/Config.i386
@@ -73,6 +73,9 @@ DO_C99_MATH = false
# Also omits strto(u)ll, and (u)lltostr from the library if `false'.
HAS_LONG_LONG = true
+# Set this to 'false if you don't need shadow password support.
+HAS_SHADOW = false
+
# Set this to `false' if you don't have/need locale support; `true' otherwise.
# Note: Currently only affects the ctype functions. You must also generate
# a locale file for anything but the C locale. See directory extra/locale for
diff --git a/extra/Configs/Config.m68k b/extra/Configs/Config.m68k
index a2afa37e3..fd6a7da6e 100644
--- a/extra/Configs/Config.m68k
+++ b/extra/Configs/Config.m68k
@@ -73,6 +73,9 @@ DO_C99_MATH = false
# Also omits strto(u)ll, and (u)lltostr from the library if `false'.
HAS_LONG_LONG = true
+# Set this to 'false if you don't need shadow password support.
+HAS_SHADOW = false
+
# Set this to `false' if you don't have/need locale support; `true' otherwise.
# Note: Currently only affects the ctype functions. You must also generate
# a locale file for anything but the C locale. See directory extra/locale for
diff --git a/extra/Configs/Config.m68k.coff b/extra/Configs/Config.m68k.coff
index f18aef30e..00576be6b 100644
--- a/extra/Configs/Config.m68k.coff
+++ b/extra/Configs/Config.m68k.coff
@@ -73,6 +73,9 @@ DO_C99_MATH = false
# Also omits strto(u)ll, and (u)lltostr from the library if `false'.
HAS_LONG_LONG = true
+# Set this to 'false if you don't need shadow password support.
+HAS_SHADOW = false
+
# Set this to `false' if you don't have/need locale support; `true' otherwise.
# Note: Currently only affects the ctype functions. You must also generate
# a locale file for anything but the C locale. See directory extra/locale for
diff --git a/extra/Configs/Config.mips b/extra/Configs/Config.mips
index a7ff1f0c6..1416a3ed1 100644
--- a/extra/Configs/Config.mips
+++ b/extra/Configs/Config.mips
@@ -72,6 +72,9 @@ DO_C99_MATH = false
# Also omits strto(u)ll, and (u)lltostr from the library if `false'.
HAS_LONG_LONG = true
+# Set this to 'false if you don't need shadow password support.
+HAS_SHADOW = false
+
# Set this to `false' if you don't have/need locale support; `true' otherwise.
# Note: Currently only affects the ctype functions. You must also generate
# a locale file for anything but the C locale. See directory extra/locale for
diff --git a/extra/Configs/Config.mipsel b/extra/Configs/Config.mipsel
index a7ff1f0c6..1416a3ed1 100644
--- a/extra/Configs/Config.mipsel
+++ b/extra/Configs/Config.mipsel
@@ -72,6 +72,9 @@ DO_C99_MATH = false
# Also omits strto(u)ll, and (u)lltostr from the library if `false'.
HAS_LONG_LONG = true
+# Set this to 'false if you don't need shadow password support.
+HAS_SHADOW = false
+
# Set this to `false' if you don't have/need locale support; `true' otherwise.
# Note: Currently only affects the ctype functions. You must also generate
# a locale file for anything but the C locale. See directory extra/locale for
diff --git a/extra/Configs/Config.powerpc b/extra/Configs/Config.powerpc
index 16cc2d8b2..91b874f04 100644
--- a/extra/Configs/Config.powerpc
+++ b/extra/Configs/Config.powerpc
@@ -73,6 +73,9 @@ DO_C99_MATH = false
# Also omits strto(u)ll, and (u)lltostr from the library if `false'.
HAS_LONG_LONG = true
+# Set this to 'false if you don't need shadow password support.
+HAS_SHADOW = false
+
# Set this to `false' if you don't have/need locale support; `true' otherwise.
# Note: Currently only affects the ctype functions. You must also generate
# a locale file for anything but the C locale. See directory extra/locale for
diff --git a/extra/Configs/Config.sh b/extra/Configs/Config.sh
index e93b998f6..daf685491 100644
--- a/extra/Configs/Config.sh
+++ b/extra/Configs/Config.sh
@@ -97,6 +97,9 @@ DO_C99_MATH = false
# Also omits strto(u)ll, and (u)lltostr from the library if `false'.
HAS_LONG_LONG = false
+# Set this to 'false if you don't need shadow password support.
+HAS_SHADOW = false
+
# Set this to `false' if you don't have/need locale support; `true' otherwise.
# Note: Currently only affects the ctype functions. You must also generate
# a locale file for anything but the C locale. See directory extra/locale for