1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-14 23:46:10 +00:00
freebsd-ports/comms/mgetty+sendfax/files/patch-ab

127 lines
3.5 KiB
Plaintext
Raw Normal View History

1996-09-13 23:52:16 +00:00
*** Makefile~ Sat Jul 13 12:46:57 1996
--- Makefile Fri Sep 13 03:15:16 1996
***************
*** 4,11 ****
#
# this is the C compiler to use (on SunOS, the standard "cc" does not
# grok my code, so please use gcc there. On ISC 4.0, use "icc".).
! CC=gcc
! #CC=cc
#
#### C Compiler Flags ####
#
--- 4,11 ----
#
# this is the C compiler to use (on SunOS, the standard "cc" does not
# grok my code, so please use gcc there. On ISC 4.0, use "icc".).
! #CC=gcc
! CC=cc
#
#### C Compiler Flags ####
#
***************
1996-09-13 23:52:16 +00:00
*** 107,113 ****
# prompt first. Don't forget to activate the /AutoPPP/ line in login.config!
#
#CFLAGS=-Wall -O2 -pipe -DSECUREWARE -DUSE_POLL
! CFLAGS=-O2 -Wall -pipe
#CFLAGS=-O -DSVR4
#CFLAGS=-O -DSVR4 -DSVR42
#CFLAGS=-O -DUSE_POLL
1996-09-13 23:52:16 +00:00
--- 107,113 ----
# prompt first. Don't forget to activate the /AutoPPP/ line in login.config!
#
#CFLAGS=-Wall -O2 -pipe -DSECUREWARE -DUSE_POLL
! #CFLAGS=-O2 -Wall -pipe
#CFLAGS=-O -DSVR4
#CFLAGS=-O -DSVR4 -DSVR42
#CFLAGS=-O -DUSE_POLL
***************
1996-09-13 23:52:16 +00:00
*** 144,150 ****
# For FreeBSD, add "-lutil" if the linker complains about
# "utmp.o: unresolved symbod _login"
#
! LDFLAGS=
#LDFLAGS=-lprot -lsocket
#LDFLAGS=-s -shlib
#LDFLAGS=-lsocket
1996-09-13 23:52:16 +00:00
--- 144,150 ----
# For FreeBSD, add "-lutil" if the linker complains about
# "utmp.o: unresolved symbod _login"
#
! LDFLAGS=-lutil
#LDFLAGS=-lprot -lsocket
#LDFLAGS=-s -shlib
#LDFLAGS=-lsocket
***************
1996-09-13 23:52:16 +00:00
*** 251,259 ****
# please use the "mg.echo" program provided in the compat/ subdirectory.
# Set ECHO="mg.echo" and INSTALL_MECHO to mg.echo
#
! ECHO="echo"
#
! # INSTALL_MECHO=mg.echo
#
1996-09-13 23:52:16 +00:00
# for mgetty, that's it. If you want to use the voice
--- 251,259 ----
# please use the "mg.echo" program provided in the compat/ subdirectory.
# Set ECHO="mg.echo" and INSTALL_MECHO to mg.echo
#
! ECHO="mg.echo"
#
! INSTALL_MECHO=mg.echo
#
1996-09-13 23:52:16 +00:00
# for mgetty, that's it. If you want to use the voice
***************
*** 530,536 ****
1996-09-13 23:52:16 +00:00
install: install.bin install.doc
1996-09-13 23:52:16 +00:00
install.bin: mgetty sendfax kvg newslock \
! login.config mgetty.config sendfax.config
#
# binaries
#
--- 530,536 ----
1996-09-13 23:52:16 +00:00
install: install.bin install.doc
1996-09-13 23:52:16 +00:00
install.bin: mgetty sendfax kvg newslock \
! login.config #mgetty.config sendfax.config
#
# binaries
#
***************
1996-09-13 23:52:16 +00:00
*** 548,562 ****
# data files + directories
#
test -d $(LIBDIR) || \
! ( mkdir `dirname $(LIBDIR)` $(LIBDIR) ; chmod 755 $(LIBDIR) )
test -d $(CONFDIR) || \
! ( mkdir `dirname $(CONFDIR)` $(CONFDIR); chmod 755 $(CONFDIR))
test -f $(CONFDIR)/login.config || \
$(INSTALL) -o root -m 600 login.config $(CONFDIR)/
! test -f $(CONFDIR)/mgetty.config || \
! $(INSTALL) -o root -m 600 mgetty.config $(CONFDIR)/
! test -f $(CONFDIR)/sendfax.config || \
! $(INSTALL) -o root -m 600 sendfax.config $(CONFDIR)/
test -f $(CONFDIR)/dialin.config || \
$(INSTALL) -o root -m 600 dialin.config $(CONFDIR)/
#
1996-09-13 23:52:16 +00:00
--- 548,562 ----
# data files + directories
#
test -d $(LIBDIR) || \
! ( mkdir -p `dirname $(LIBDIR)` $(LIBDIR) ; chmod 755 $(LIBDIR) )
test -d $(CONFDIR) || \
! ( mkdir -p `dirname $(CONFDIR)` $(CONFDIR); chmod 755 $(CONFDIR))
test -f $(CONFDIR)/login.config || \
$(INSTALL) -o root -m 600 login.config $(CONFDIR)/
! # test -f $(CONFDIR)/mgetty.config || \
! # $(INSTALL) -o root -m 600 mgetty.config $(CONFDIR)/
! # test -f $(CONFDIR)/sendfax.config || \
! # $(INSTALL) -o root -m 600 sendfax.config $(CONFDIR)/
test -f $(CONFDIR)/dialin.config || \
$(INSTALL) -o root -m 600 dialin.config $(CONFDIR)/
#