diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-03-25 19:41:33 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-03-25 19:41:33 +0000 |
commit | 84365ef5e9ae00d46785d14b99a3533a8cf25476 (patch) | |
tree | f5dfa4d996e5854642070e8972056ad33a578c06 | |
parent | 3e2a8b618ac5078e449c69bfc430cdb7f53d9b6b (diff) |
Mips config fixes from Steven J. Hill
-rw-r--r-- | extra/Configs/Config.mips | 6 | ||||
-rw-r--r-- | extra/Configs/Config.mipsel | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/extra/Configs/Config.mips b/extra/Configs/Config.mips index 9dd618610..2e3bc2862 100644 --- a/extra/Configs/Config.mips +++ b/extra/Configs/Config.mips @@ -130,6 +130,10 @@ INCLUDE_RPC = false # Protocol: IP version 6, enable this. This is off by default. INCLUDE_IPV6 = false +# If you want to include threads support, enable this. The C library will +# be compiled thread-safe, and the libpthread library will be built. +INCLUDE_THREADS = true + # If you want to support only Unix 98 PTYs enable this. Some older # applications may need this disabled. For most current programs, # you can generally leave this true. @@ -143,7 +147,7 @@ ASSUME_DEVPTS = true # If you want to compile the library as PIC code, turn this on. # This is automagically enabled when HAVE_SHARED is true -DOPIC = true +DOPIC = false # Enable support for shared libraries? If this is false, you can # ignore all the rest of the options in this file... diff --git a/extra/Configs/Config.mipsel b/extra/Configs/Config.mipsel index 7dcb77c3a..54e846cde 100644 --- a/extra/Configs/Config.mipsel +++ b/extra/Configs/Config.mipsel @@ -130,6 +130,10 @@ INCLUDE_RPC = false # Protocol: IP version 6, enable this. This is off by default. INCLUDE_IPV6 = false +# If you want to include threads support, enable this. The C library will +# be compiled thread-safe, and the libpthread library will be built. +INCLUDE_THREADS = true + # If you want to support only Unix 98 PTYs enable this. Some older # applications may need this disabled. For most current programs, # you can generally leave this true. @@ -143,7 +147,7 @@ ASSUME_DEVPTS = true # If you want to compile the library as PIC code, turn this on. # This is automagically enabled when HAVE_SHARED is true -DOPIC = true +DOPIC = false # Enable support for shared libraries? If this is false, you can # ignore all the rest of the options in this file... |