mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
1fba8b7cda
Nudged from: Jeroen Ruigrok/Asmodai <asmodai@wxs.nl>
35 lines
1009 B
Plaintext
35 lines
1009 B
Plaintext
--- Makefile.orig Sat Oct 10 00:15:02 1998
|
|
+++ Makefile Sat Jan 15 00:13:40 2000
|
|
@@ -1,11 +1,12 @@
|
|
# Copyright (c) 1994, 1995 James Clark
|
|
# See the file COPYING for copying permission.
|
|
|
|
-prefix=/opt/local
|
|
+prefix=/usr/local
|
|
exec_prefix=$(prefix)
|
|
# Where to install the binaries
|
|
bindir=$(exec_prefix)/bin
|
|
-INSTALL=cp
|
|
+INSTALL=install -c
|
|
+libdir=$(exec_prefix)/lib
|
|
# You might want to uncomment this on BSD systems
|
|
#INSTALL=install
|
|
|
|
@@ -48,14 +49,14 @@
|
|
# If you defined SP_HAVE_SOCKET, add any libraries that are needed for sockets
|
|
# -lsocket -lnsl needed on Solaris 2.x
|
|
# -lnsl on SunOS 4.1.3
|
|
-XLIBS=#-lsocket -lnsl
|
|
+XLIBS=-lgcc
|
|
# -L/usr/local/lib may be needed on the RS/6000
|
|
LIBS=-lm $(XLIBS)
|
|
# If you're building in another directory, copy or link this Makefile
|
|
# to the build directory, and set srcdir to point to the source directory.
|
|
srcdir=.
|
|
AR=ar
|
|
-RANLIB=:
|
|
+RANLIB=ranlib
|
|
# Uncomment this for SunOS 4.1.3 or FreeBSD
|
|
# (and probably other BSD flavor systems as well)
|
|
#RANLIB=ranlib
|