mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
b4129e0437
have the same whois output. Reviewed by: Dan Nelson <dnelson@emsphone.com>, billf
68 lines
1.7 KiB
Plaintext
68 lines
1.7 KiB
Plaintext
--- Makefile.old Fri Aug 28 04:40:36 1998
|
|
+++ Makefile Fri Dec 4 16:32:45 1998
|
|
@@ -61,13 +61,13 @@
|
|
# were used to build the resolver library you are linking with.
|
|
# ----------------------------------------------------------------------
|
|
|
|
-INCL = ../include
|
|
+#INCL = ../include
|
|
INCL =
|
|
|
|
-COMPINCL = ../compat/include
|
|
+#COMPINCL = ../compat/include
|
|
COMPINCL =
|
|
|
|
-INCLUDES = -I$(INCL) -I$(COMPINCL)
|
|
+#INCLUDES = -I$(INCL) -I$(COMPINCL)
|
|
INCLUDES =
|
|
|
|
# ----------------------------------------------------------------------
|
|
@@ -79,13 +79,14 @@
|
|
COPTS =
|
|
COPTS = -O
|
|
|
|
-CFLAGS = $(COPTS) $(DEFS)
|
|
+#CFLAGS = $(COPTS) $(DEFS)
|
|
|
|
# Select your favorite compiler.
|
|
-CC = /usr/ucb/cc #if defined(solaris) && BSD
|
|
-CC = /bin/cc -arch m68k -arch i386 #if defined(next)
|
|
-CC = /bin/cc
|
|
-CC = cc
|
|
+#CC = /usr/ucb/cc #if defined(solaris) && BSD
|
|
+#CC = /bin/cc -arch m68k -arch i386 #if defined(next)
|
|
+#CC = /bin/cc
|
|
+#CC = cc
|
|
+cc = ${CC}
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Linking definitions.
|
|
@@ -101,17 +102,17 @@
|
|
# With BIND 4.9.3 the getnet...() calls are in the resolver library.
|
|
# ----------------------------------------------------------------------
|
|
|
|
-RES = -lsocket #if defined(SCO) && default
|
|
-RES =
|
|
-RES = ../res/libresolv.a
|
|
-RES = -lresolv
|
|
-
|
|
-COMPLIB = ../compat/lib/lib44bsd.a
|
|
-COMPLIB = -lnet
|
|
-COMPLIB =
|
|
+#RES = -lsocket #if defined(SCO) && default
|
|
+#RES =
|
|
+#RES = ../res/libresolv.a
|
|
+#RES = -lresolv
|
|
+
|
|
+#COMPLIB = ../compat/lib/lib44bsd.a
|
|
+#COMPLIB = -lnet
|
|
+#COMPLIB =
|
|
|
|
-LIBS = -lsocket -lnsl #if defined(solaris) && not BSD
|
|
-LIBS =
|
|
+#LIBS = -lsocket -lnsl #if defined(solaris) && not BSD
|
|
+#LIBS =
|
|
|
|
LIBRARIES = $(RES) $(COMPLIB) $(LIBS)
|
|
|