mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
adfb495a5b
It can be used to write mail messages to a qmail-style maildir, or to write data to a "spool" directory reliably.
38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
--- Makefile 2000/11/21 08:57:14 1.1.1.1
|
|
+++ Makefile 2000/11/21 09:44:08 1.2
|
|
@@ -196,13 +196,17 @@
|
|
chmod 755 makelib
|
|
|
|
open.a: \
|
|
-makelib open_read.o open_trunc.o open_append.o
|
|
- ./makelib open.a open_read.o open_trunc.o open_append.o
|
|
+makelib open_read.o open_trunc.o open_append.o open_excl.o
|
|
+ ./makelib open.a open_read.o open_trunc.o open_append.o open_excl.o
|
|
|
|
open_append.o: \
|
|
compile open_append.c open.h
|
|
./compile open_append.c
|
|
|
|
+open_excl.o: \
|
|
+compile open_excl.c open.h
|
|
+ ./compile open_excl.c
|
|
+
|
|
open_read.o: \
|
|
compile open_read.c open.h
|
|
./compile open_read.c
|
|
@@ -212,12 +216,12 @@
|
|
./compile open_trunc.c
|
|
|
|
safecat: \
|
|
-load safecat.o getln.a str.a stralloc.a strerr.a substdio.a alloc.o \
|
|
+load safecat.o getln.a str.a stralloc.a strerr.a substdio.a open.a alloc.o \
|
|
alloc_re.o byte_copy.o byte_cr.o envread.o error.o error_str.o fmt_ulong.o \
|
|
hostname.o sig.o stat_dir.o str_diffn.o str_len.o substdio_copy.o \
|
|
substdi.o substdio.o taia_fmtfrac.o taia_now.o taia_tai.o tempfile.o \
|
|
writefile.o
|
|
- ./load safecat getln.a str.a stralloc.a strerr.a substdio.a \
|
|
+ ./load safecat getln.a str.a stralloc.a strerr.a substdio.a open.a \
|
|
alloc.o alloc_re.o byte_copy.o byte_cr.o envread.o error.o \
|
|
error_str.o fmt_ulong.o hostname.o sig.o stat_dir.o str_diffn.o \
|
|
str_len.o substdi.o substdio.o substdio_copy.o taia_fmtfrac.o \
|