diff options
author | Torsten Blum <torstenb@FreeBSD.org> | 1994-10-23 01:19:51 +0000 |
---|---|---|
committer | Torsten Blum <torstenb@FreeBSD.org> | 1994-10-23 01:19:51 +0000 |
commit | 74fda86565234ce2f5b02523aebf9aebc149013f (patch) | |
tree | 39ab1e7454220eea654e52eb84c93b67e3c90c28 /mail/metamail/files/patch-aa | |
parent | 3dd0bf6fecb29ce0cb5f494f1c5ddc6973e5ce26 (diff) |
Notes
Diffstat (limited to 'mail/metamail/files/patch-aa')
-rw-r--r-- | mail/metamail/files/patch-aa | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/mail/metamail/files/patch-aa b/mail/metamail/files/patch-aa new file mode 100644 index 000000000000..2dd1f4ad79d9 --- /dev/null +++ b/mail/metamail/files/patch-aa @@ -0,0 +1,78 @@ +*** Makefile.orig Wed Jan 26 18:32:33 1994 +--- Makefile Mon Oct 17 21:38:58 1994 +*************** +*** 38,44 **** + + STATICFLAG=FOOBAR${HOST_ARCH} + +! CFLAGS = -g -I. ${$(STATICFLAG)} + # The following is better if you want to make sure you run with SYSV defined + # CFLAGS = -g -I. ${$(STATICFLAG)} -DSYSV + # Also, for SGI Irix, compile in K&R mode +--- 38,44 ---- + + STATICFLAG=FOOBAR${HOST_ARCH} + +! CFLAGS = -g -O -I. ${$(STATICFLAG)} + # The following is better if you want to make sure you run with SYSV defined + # CFLAGS = -g -I. ${$(STATICFLAG)} -DSYSV + # Also, for SGI Irix, compile in K&R mode +*************** +*** 49,57 **** + # LDLIBS variable. + # + # For Sun and BSD systems, the following should work... +! LDLIBS = + # On BSD 4.4 systems, you will need the following +! # LDLIBS = -lcompat + # On SGI machines, we need -lsun for getpw...(), and -lc_s saves some space. + # LDLIBS = -lsun -lc_s + # ISC SysVr3.2.2 has a shared C library and requires libinet.a to resolve +--- 49,57 ---- + # LDLIBS variable. + # + # For Sun and BSD systems, the following should work... +! # LDLIBS = + # On BSD 4.4 systems, you will need the following +! LDLIBS = -lcompat + # On SGI machines, we need -lsun for getpw...(), and -lc_s saves some space. + # LDLIBS = -lsun -lc_s + # ISC SysVr3.2.2 has a shared C library and requires libinet.a to resolve +*************** +*** 75,81 **** + INSTALL = install -c -s + + # Root of installation tree +! INSTROOT = /usr/local + # + # This is where binaries should be copied + LOCALBINDIR = ${INSTROOT}/bin +--- 75,81 ---- + INSTALL = install -c -s + + # Root of installation tree +! INSTROOT = ${PREFIX} + # + # This is where binaries should be copied + LOCALBINDIR = ${INSTROOT}/bin +*************** +*** 96,104 **** + # This helps with the "for" constructs below on some platforms: + SHELL=/bin/sh + +! install: basics + +! basics:: + (cd metamail ; $(MAKE) CONFIGDIR=../${CONFIGDIR} CFLAGS="${CFLAGS}" CC="${CC}" LDLIBS="${LDLIBS}") + -${RM} bin/metamail + (cd bin; ${LN} ../metamail/metamail metamail) +--- 96,104 ---- + # This helps with the "for" constructs below on some platforms: + SHELL=/bin/sh + +! install: install-all + +! all basics:: + (cd metamail ; $(MAKE) CONFIGDIR=../${CONFIGDIR} CFLAGS="${CFLAGS}" CC="${CC}" LDLIBS="${LDLIBS}") + -${RM} bin/metamail + (cd bin; ${LN} ../metamail/metamail metamail) |