Parcourir la source

Mips config fixes from Steven J. Hill

Eric Andersen il y a 22 ans
Parent
commit
84365ef5e9
2 fichiers modifiés avec 10 ajouts et 2 suppressions
  1. 5 1
      extra/Configs/Config.mips
  2. 5 1
      extra/Configs/Config.mipsel

+ 5 - 1
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...

+ 5 - 1
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...