mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
97 lines
3.0 KiB
Plaintext
97 lines
3.0 KiB
Plaintext
*** Makefile.orig Wed Feb 1 23:08:49 1995
|
|
--- Makefile Thu Feb 2 12:40:50 1995
|
|
***************
|
|
*** 11,21 ****
|
|
# hpalib, hplow, hp3, dec, solaris, sparc, linux, freebsd, sgi,
|
|
# soundblaster, aix.
|
|
# gmake needed to handle this file in FreeBSD
|
|
! MACHINE = sparc
|
|
|
|
# The name of your C compiler. For most machines this will be
|
|
# either 'cc' or 'gcc'.
|
|
! CC = gcc
|
|
|
|
OPTS=-c
|
|
|
|
--- 11,21 ----
|
|
# hpalib, hplow, hp3, dec, solaris, sparc, linux, freebsd, sgi,
|
|
# soundblaster, aix.
|
|
# gmake needed to handle this file in FreeBSD
|
|
! MACHINE = freebsd
|
|
|
|
# The name of your C compiler. For most machines this will be
|
|
# either 'cc' or 'gcc'.
|
|
! CC = cc
|
|
|
|
OPTS=-c
|
|
|
|
***************
|
|
*** 26,36 ****
|
|
#
|
|
# If you don't wish to use the 'make install' and 'make install.man'
|
|
# commands, you can ignore these.
|
|
! BIN_DIR = /users/algo/espie/pub/bin
|
|
! MAN_DIR = /usr/local/man
|
|
|
|
# Where to put the compression methods description
|
|
! COMPRESSION_FILE=/users/algo/espie/pub/lib/compression_methods
|
|
|
|
# How to install the binaries and manpage. If you have a unix system,
|
|
# use the GNU install program if you have it, otherwise try 'cp'. For
|
|
--- 26,40 ----
|
|
#
|
|
# If you don't wish to use the 'make install' and 'make install.man'
|
|
# commands, you can ignore these.
|
|
! PREFIX=/usr/local
|
|
! #BIN_DIR = /users/algo/espie/pub/bin
|
|
! BIN_DIR = $(PREFIX)/bin
|
|
! #MAN_DIR = /usr/local/man
|
|
! MAN_DIR = $(PREFIX)/man
|
|
|
|
# Where to put the compression methods description
|
|
! #COMPRESSION_FILE=/users/algo/espie/pub/lib/compression_methods
|
|
! COMPRESSION_FILE=$(PREFIX)/etc/compression_methods
|
|
|
|
# How to install the binaries and manpage. If you have a unix system,
|
|
# use the GNU install program if you have it, otherwise try 'cp'. For
|
|
***************
|
|
*** 51,58 ****
|
|
#
|
|
# If you don't wish to use the 'make install' and 'make install.man'
|
|
# commands, you can ignore these.
|
|
! INST_BIN_OPT = -c -s -m 755 -o root -g root
|
|
! INST_MAN_OPT = -c -m 644 -o root -g root
|
|
###############################################################################
|
|
#
|
|
# C compiler flags and libraries for each machine.
|
|
--- 55,64 ----
|
|
#
|
|
# If you don't wish to use the 'make install' and 'make install.man'
|
|
# commands, you can ignore these.
|
|
! #INST_BIN_OPT = -c -s -m 755 -o root -g root
|
|
! #INST_MAN_OPT = -c -m 644 -o root -g root
|
|
! INST_BIN_OPT = -c -s -m 555 -o bin -g bin
|
|
! INST_MAN_OPT = -c -m 644 -o bin -g bin
|
|
###############################################################################
|
|
#
|
|
# C compiler flags and libraries for each machine.
|
|
*** Unix/ui.c.old Wed Feb 1 23:33:08 1995
|
|
--- Unix/ui.c Thu Feb 2 12:36:44 1995
|
|
***************
|
|
*** 259,265 ****
|
|
ioctl(fileno(stdin), TIOCSETP, psanity);
|
|
#else /* __NeXT__ */
|
|
#ifdef __FreeBSD__
|
|
! tcsetattr(fileno(stdin), psanity);
|
|
#else
|
|
ioctl(fileno(stdin), TCSETA, psanity);
|
|
#endif
|
|
--- 259,265 ----
|
|
ioctl(fileno(stdin), TIOCSETP, psanity);
|
|
#else /* __NeXT__ */
|
|
#ifdef __FreeBSD__
|
|
! tcsetattr(fileno(stdin), TCSADRAIN, psanity);
|
|
#else
|
|
ioctl(fileno(stdin), TCSETA, psanity);
|
|
#endif
|