diff options
-rwxr-xr-x | config.guess | 2 | ||||
-rw-r--r-- | configure.in | 7 |
2 files changed, 3 insertions, 6 deletions
diff --git a/config.guess b/config.guess index fee531d6..d85c1a5c 100755 --- a/config.guess +++ b/config.guess @@ -404,7 +404,7 @@ EOF mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit 0 ;; - i[34]86:LynxOS:2.[2345]*:*) + i[34]86:LynxOS:2.[2345]*:*|i[34]86:LynxOS:3.[01]*:*) echo i386-lynx-lynxos${UNAME_RELEASE} exit 0 ;; TSUNAMI:LynxOS:2.[23]*:*) diff --git a/configure.in b/configure.in index 32ae87e1..89a48ee3 100644 --- a/configure.in +++ b/configure.in @@ -50,11 +50,8 @@ then echo "Adding -lbsd to standard libraries" LIBS="$LIBS -lbsd" LDFLAGS="" - if test `uname -r` = "2.5.0" - then - echo "Prepending standard include path to gcc flags" - CPFLAGS="-I/usr/include" - fi + echo "Prepending standard include path to gcc flags" + CPFLAGS="-I/usr/include" fi # Check for FreeBSD special case: -lkvm needed |