diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-14 09:10:50 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-14 09:10:50 +0000 |
commit | ad3d96f8b792149d4a623584f8b403d40bd60331 (patch) | |
tree | a642f520af5de3923c499f886e068e0b9bbdcef3 /extra/Configs/Config.cross.arm.uclinux | |
parent | 50b14f6bf77048f65377f26fe8737b9bfb8512a1 (diff) |
Patch from Brian Stafford <brian@stafford.uklinux.net> to fixup
support for Unix98 PTYs, and optionally exclude the older junk.
Diffstat (limited to 'extra/Configs/Config.cross.arm.uclinux')
-rw-r--r-- | extra/Configs/Config.cross.arm.uclinux | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/extra/Configs/Config.cross.arm.uclinux b/extra/Configs/Config.cross.arm.uclinux index 3a122b1e0..2c3f8163f 100644 --- a/extra/Configs/Config.cross.arm.uclinux +++ b/extra/Configs/Config.cross.arm.uclinux @@ -25,10 +25,11 @@ # other sundry sources. Files within this library are copyright by their # respective copyright holders. +NATIVE_CC = gcc + # If you are running a cross compiler, you may want to set this # to something more interesting... Target architecture is determined # by asking this compiler what arch it compiles stuff for. -NATIVE_CC = gcc CROSS = arm-elf- CC = $(CROSS)gcc AR = $(CROSS)ar @@ -124,10 +125,21 @@ INCLUDE_RPC = false # Protocol: IP version 6, enable this. This is off by default. INCLUDE_IPV6 = false -# If you want to compile the library as PIC code, turn this on. -DOPIC = false +# 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. +UNIX98PTY_ONLY = true + +# Enable this if /dev/pts is on a devpts or devfs file system. Both +# these filesystems automatically manage permissions on the /dev/pts +# devices. You may need to mount this fs on /dev/pts for this to work. +# This is true by default. +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 = false # Enable support for shared libraries? If this is false, you can # ignore all the rest of the options in this file... |