|
|
|
|
# Set it to `true' otherwise.
|
|
|
# Affects *printf and *scanf functions.
|
|
|
# Also omits strto(u)ll, and (u)lltostr from the library if `false'.
|
|
|
-HAS_LONG_LONG = true
|
|
|
+HAS_LONG_LONG = false
|
|
|
|
|
|
# Set this to `false' if you don't have/need locale support
|
|
|
# Note: Currently only affects the ctype functions. You must also generate
|
|
|
|
|
# Do not enable this unless your kernel provides large file support.
|
|
|
DOLFS = false
|
|
|
|
|
|
+# Posix regular expression code is really big -- 27k all by itself.
|
|
|
+# If you don't use regular expressions, turn this off and save space.
|
|
|
+# Of course, if you only staticly link, leave this on, since it will
|
|
|
+# only be included in your apps if you use regular expressions.
|
|
|
+INCLUDE_REGEX=true
|
|
|
+
|
|
|
# If you want to include RPC support, enable this. RPC is almost never used
|
|
|
# for anything except NFS support, so unless you plan to use NFS, leave this
|
|
|
# disabled. This is off by default.
|
|
|
|
|
INCLUDE_IPV6 = false
|
|
|
|
|
|
# If you want to compile the library as PIC code, turn this on.
|
|
|
-DOPIC = false
|
|
|
+DOPIC = true
|
|
|
|
|
|
|
|
|
|