diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1998-11-10 19:47:00 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1998-11-10 19:47:00 -0500 |
commit | d3f9d5478df478427c2aa5db4507ddd0a38f0eb6 (patch) | |
tree | e27eacd6bbda653dd77f11cc020b9e0a59f7f4fc /build.com | |
parent | 18024037b515bfff83e0230b35151babe6005e18 (diff) | |
download | lynx-snapshots-d3f9d5478df478427c2aa5db4507ddd0a38f0eb6.tar.gz |
snapshot of project "lynx", label v2-8-2dev_2
Diffstat (limited to 'build.com')
-rw-r--r-- | build.com | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/build.com b/build.com index bfec6e39..ea4eda84 100644 --- a/build.com +++ b/build.com @@ -86,7 +86,7 @@ $ read sys$command/prompt="Agent [1,2,3,4,5,6] (RETURN = [1]) " agent $ EndIf $ ENDIF $ option = "" -$ if agent .eq. 1 .or. agent .eqs. "" .or. p1 .eqs. "MULTINET" then - +$ if agent .eq. 1 .or. agent .eqs. "" .or. p1 .eqs. "" .or. p1 .eqs. "MULTINET" then - option = "MULTINET" $ if agent .eq. 2 .or. p1 .eqs. "UCX" then option = "UCX" $ if agent .eq. 3 .or. p1 .eqs. "WIN_TCP" then option = "WIN_TCP" @@ -94,6 +94,12 @@ $ if agent .eq. 4 .or. p1 .eqs. "CMU_TCP" then option = "CMU_TCP" $ if agent .eq. 5 .or. p1 .eqs. "SOCKETSHR_TCP" then option = "SOCKETSHR_TCP" $ if agent .eq. 6 .or. p1 .eqs. "TCPWARE" then option = "TCPWARE" $! +$ if option .eqs. "" +$ then +$ write sys$output "TCP/IP agent could not be determined" +$ exit 18 +$ endif +$ $ if option .eqs. "TCPWARE" $ then $ write sys$output "Building Lynx for TCPWARE with UCX emulation..." @@ -194,9 +200,9 @@ $ if option .eqs. "MULTINET" then - extra = extra + ",_DECC_V4_SOURCE,__SOCKET_TYPEDEFS" $ v1 = f$verify(1) $! DECC: -$ cc := cc/decc/prefix=all/nomember'cc_opts'- +$ cc := cc/decc/prefix=all/nomember'cc_opts' - /DEFINE=(DEBUG,ACCESS_AUTH,'option''extra',__VMS_CURSES)- - /INCLUDE=([-],[-.WWW.Library.Implementation],[.chrtrans]) + /INCLUDE=([],[-],[-.WWW.Library.Implementation],[.chrtrans]) $ v1 = 'f$verify(0)' $ ELSE $ if option .eqs. "UCX" then optfile = "UCXOLB" @@ -208,7 +214,7 @@ $ v1 = f$verify(1) $! GNUC: $ cc := gcc'cc_opts' - /DEFINE=(DEBUG,ACCESS_AUTH,'option''extra')- - /INCLUDE=([-],[-.WWW.Library.Implementation],[.chrtrans]) + /INCLUDE=([],[-],[-.WWW.Library.Implementation],[.chrtrans]) $ v1 = 'f$verify(0)' $ ELSE $ compiler := "VAXC" @@ -216,7 +222,7 @@ $ v1 = f$verify(1) $! VAXC: $ cc := cc'cc_opts' - /DEFINE=(DEBUG,ACCESS_AUTH,'option''extra')- - /INCLUDE=([-],[-.WWW.Library.Implementation],[.chrtrans]) + /INCLUDE=([],[-],[-.WWW.Library.Implementation],[.chrtrans]) $ v1 = 'f$verify(0)' $ ENDIF $ ENDIF |