Bugs item #423587, was updated on 2001-05-12 10:31
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=103152&aid=423587&group_id=3152

Category: Configuration: Server
Group: aolserver3_3
Status: Open
Resolution: None
Priority: 5
Submitted By: Tyge Cawthon (tyge)
Assigned to: Nobody/Anonymous (nobody)
Summary: gmake on FreeBSD 4.3/Aolserver-3.3.1

Initial Comment:
gmake does not work correctly on FreeBSD 4.3 and
Aolserver-3.3.1.

I believe the problem is the file
/aolserver-3.3.1/include/Makefile.global

Towards the end of the file there is line:
 TCL8X_LIB=libtcl83g.
I am not sure, but I believe the line should be:
 TCL8X_LIB=libtcl8.3g.

Could someone please check into this.
See example below:

BEFORE:
 #Note:  Tcl 7.6 on *BSD has a different name for no
apparent reason.
 #
    TCL8X_DIR=tcl8.3.2
    TCL76_DIR=tcl7.6
      ifeq (bsd, $(findstring bsd, $(PLATFORM)))
           TCL76_LIB=libtcl76.a
    ===>   TCL8X_LIB=libtcl83g.a <===
      else
           TCL76_LIB=libtcl7.6.a#
           TCL8X_LIB=libtcl8.3g.a
      endif

AFTER:
 #NOTE:  Tcl 7.6 on *BSD has a different name for no
apparent reason.
 #
    TCL8X_DIR=tcl8.3.2
    TCL76_DIR=tcl7.6
      ifeq (bsd, $(findstring bsd, $(PLATFORM)))
           TCL76_LIB=libtcl76.a
    ===>   TCL8X_LIB=libtcl8.3g.a  <===
      else
           TCL76_LIB=libtcl7.6.a
           TCL8X_LIB=libtcl8.3g.a
      endif


----------------------------------------------------------------------

You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=103152&aid=423587&group_id=3152

Reply via email to