mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
147 lines
4.6 KiB
Plaintext
147 lines
4.6 KiB
Plaintext
|
*** Makefile.orig Tue Jul 30 19:51:32 1996
|
||
|
--- Makefile Tue Jul 30 20:08:46 1996
|
||
|
***************
|
||
|
*** 5,11 ****
|
||
|
# ===========================================================================
|
||
|
|
||
|
# Note: This Makefile has been set up to be used "as is" for stock
|
||
|
! # Slackware 3.0 Linux systems, assuming the Slackware Tcl/Tk packages
|
||
|
# have been installed and are to be used by TkDesk.
|
||
|
# Else: Just change the options below.
|
||
|
|
||
|
--- 5,11 ----
|
||
|
# ===========================================================================
|
||
|
|
||
|
# Note: This Makefile has been set up to be used "as is" for stock
|
||
|
! # FreeBSD 2.1 and obove systems, assuming the Tcl/Tk 7.5/4.1 ports/packages
|
||
|
# have been installed and are to be used by TkDesk.
|
||
|
# Else: Just change the options below.
|
||
|
|
||
|
***************
|
||
|
*** 35,71 ****
|
||
|
# --------------------------------
|
||
|
|
||
|
# Location of the Tcl include files:
|
||
|
! TCLINCDIR = /usr/include/tcl # Linux with Slackware 3.0
|
||
|
! #TCLINCDIR = /usr/local/include
|
||
|
#TCLINCDIR = /usr/local/include/tcl7.5
|
||
|
#TCLINCDIR = $(HOME)/include
|
||
|
|
||
|
# Location of the Tcl library:
|
||
|
! TCLLIBDIR = /usr/lib
|
||
|
! #TCLLIBDIR = /usr/local/lib
|
||
|
#TCLLIBDIR = $(HOME)/lib
|
||
|
|
||
|
# Flag for linking the Tcl library to TkDesk:
|
||
|
! TCLLIB = -ltcl
|
||
|
#TCLLIB = -ltcl7.4
|
||
|
! #TCLLIB = -ltcl7.5
|
||
|
#TCLLIB = -ltcl7_4
|
||
|
|
||
|
# Location of the Tk include files:
|
||
|
! TKINCDIR = /usr/include/tcl # Linux with Slackware 3.0
|
||
|
! #TKINCDIR = /usr/local/include
|
||
|
#TKINCDIR = /usr/local/include/tcl7.5
|
||
|
#TKINCDIR = $(HOME)/include
|
||
|
|
||
|
# Location of the Tk library:
|
||
|
! TKLIBDIR = /usr/lib
|
||
|
! #TKLIBDIR = /usr/local/lib
|
||
|
#TKLIBDIR = $(HOME)/lib
|
||
|
|
||
|
# Flag for linking the Tk library to TkDesk:
|
||
|
! TKLIB = -ltk
|
||
|
#TKLIB = -ltk4.0
|
||
|
! #TKLIB = -ltk4.1
|
||
|
#TKLIB = -ltk4_0
|
||
|
|
||
|
# --------------------------------
|
||
|
--- 35,71 ----
|
||
|
# --------------------------------
|
||
|
|
||
|
# Location of the Tcl include files:
|
||
|
! #TCLINCDIR = /usr/include/tcl # Linux with Slackware 3.0
|
||
|
! TCLINCDIR = /usr/local/include
|
||
|
#TCLINCDIR = /usr/local/include/tcl7.5
|
||
|
#TCLINCDIR = $(HOME)/include
|
||
|
|
||
|
# Location of the Tcl library:
|
||
|
! #TCLLIBDIR = /usr/lib
|
||
|
! TCLLIBDIR = /usr/local/lib
|
||
|
#TCLLIBDIR = $(HOME)/lib
|
||
|
|
||
|
# Flag for linking the Tcl library to TkDesk:
|
||
|
! #TCLLIB = -ltcl
|
||
|
#TCLLIB = -ltcl7.4
|
||
|
! TCLLIB = -ltcl75
|
||
|
#TCLLIB = -ltcl7_4
|
||
|
|
||
|
# Location of the Tk include files:
|
||
|
! #TKINCDIR = /usr/include/tcl # Linux with Slackware 3.0
|
||
|
! TKINCDIR = /usr/local/include
|
||
|
#TKINCDIR = /usr/local/include/tcl7.5
|
||
|
#TKINCDIR = $(HOME)/include
|
||
|
|
||
|
# Location of the Tk library:
|
||
|
! #TKLIBDIR = /usr/lib
|
||
|
! TKLIBDIR = /usr/local/lib
|
||
|
#TKLIBDIR = $(HOME)/lib
|
||
|
|
||
|
# Flag for linking the Tk library to TkDesk:
|
||
|
! #TKLIB = -ltk
|
||
|
#TKLIB = -ltk4.0
|
||
|
! TKLIB = -ltk41
|
||
|
#TKLIB = -ltk4_0
|
||
|
|
||
|
# --------------------------------
|
||
|
***************
|
||
|
*** 88,99 ****
|
||
|
# (If you're linking with Tcl 7.5 with dynamic loading enabled you need
|
||
|
# to add the appropriate library which allows for dynamic loading on
|
||
|
# your system, such as -ldl for Linux and SGI or -ldld for HP-UX.)
|
||
|
! OTHERLIBS = -lieee # e.g. Linux
|
||
|
#OTHERLIBS = -ldl -lieee # e.g. Linux with Tcl 7.5 and dynamic loading
|
||
|
#OTHERLIBS = -lnsl -lsocket # e.g. for Solaris
|
||
|
#OTHERLIBS = -ldl -lsocket # e.g. for SGI with os5.3 and Tcl 7.5
|
||
|
#OTHERLIBS = -ldld # e.g. for HP-UX 9.05 and Tcl 7.5 (am I right?)
|
||
|
! #OTHERLIBS =
|
||
|
|
||
|
# --------------------------------
|
||
|
# Compiler and Linker Settings:
|
||
|
--- 88,99 ----
|
||
|
# (If you're linking with Tcl 7.5 with dynamic loading enabled you need
|
||
|
# to add the appropriate library which allows for dynamic loading on
|
||
|
# your system, such as -ldl for Linux and SGI or -ldld for HP-UX.)
|
||
|
! #OTHERLIBS = -lieee # e.g. Linux
|
||
|
#OTHERLIBS = -ldl -lieee # e.g. Linux with Tcl 7.5 and dynamic loading
|
||
|
#OTHERLIBS = -lnsl -lsocket # e.g. for Solaris
|
||
|
#OTHERLIBS = -ldl -lsocket # e.g. for SGI with os5.3 and Tcl 7.5
|
||
|
#OTHERLIBS = -ldld # e.g. for HP-UX 9.05 and Tcl 7.5 (am I right?)
|
||
|
! OTHERLIBS =
|
||
|
|
||
|
# --------------------------------
|
||
|
# Compiler and Linker Settings:
|
||
|
***************
|
||
|
*** 108,117 ****
|
||
|
#CFLAGS = -Wall -g
|
||
|
|
||
|
# And options for the linker:
|
||
|
! #LDFLAGS = -s
|
||
|
# Linux Slackware 3.0 users: use the following to prevent static linking
|
||
|
# if you're using the Slackware Tcl/Tk packages:
|
||
|
! LDFLAGS = -s -L/lib
|
||
|
|
||
|
|
||
|
# ---------------------------------------------------------------------------
|
||
|
--- 108,117 ----
|
||
|
#CFLAGS = -Wall -g
|
||
|
|
||
|
# And options for the linker:
|
||
|
! LDFLAGS = -s
|
||
|
# Linux Slackware 3.0 users: use the following to prevent static linking
|
||
|
# if you're using the Slackware Tcl/Tk packages:
|
||
|
! #LDFLAGS = -s -L/lib
|
||
|
|
||
|
|
||
|
# ---------------------------------------------------------------------------
|