]> git.pld-linux.org Git - packages/ed.git/commitdiff
- obsolete
authorJakub Bogusz <qboosh@pld-linux.org>
Wed, 11 Jul 2007 18:32:42 +0000 (18:32 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    ed-configure.patch -> 1.4
    ed-mkstemp.patch -> 1.2
    ed-regex.patch -> 1.2

ed-configure.patch [deleted file]
ed-mkstemp.patch [deleted file]
ed-regex.patch [deleted file]

diff --git a/ed-configure.patch b/ed-configure.patch
deleted file mode 100644 (file)
index fbfa2d2..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -urN ed-0.2.orig/configure.in ed-0.2/configure.in
---- ed-0.2.orig/configure.in   Sat Oct  5 14:24:30 2002
-+++ ed-0.2/configure.in        Sat Oct  5 14:36:29 2002
-@@ -15,7 +15,8 @@
- AC_FUNC_VPRINTF
- AC_FUNC_ALLOCA
- if test "$ALLOCA" = alloca.o; then
--  AC_SUBST(LIBOBJS)LIBOBJS="$LIBOBJS xmalloc.o error.o"
-+  AC_LIBOBJ(xmalloc)
-+  AC_LIBOBJ(error)
- fi
- AC_OUTPUT(Makefile)
diff --git a/ed-mkstemp.patch b/ed-mkstemp.patch
deleted file mode 100644 (file)
index 2da83d2..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
---- ed-0.2/buf.c.orig  Wed Nov 29 14:45:10 2000
-+++ ed-0.2/buf.c       Wed Nov 29 15:13:16 2000
-@@ -200,15 +200,15 @@
- int
- open_sbuf ()
- {
--  char *mktemp ();
-   int u;
-+  int filedes;
-   isbinary = newline_added = 0;
-   u = umask(077);
-   strcpy (sfn, "/tmp/ed.XXXXXX");
--  if (mktemp (sfn) == NULL || (sfp = fopen (sfn, "w+")) == NULL)
-+  if ((filedes=mkstemp(sfn)) == -1 || (sfp=fdopen(filedes, "w+")) == NULL)
-     {
--      fprintf (stderr, "%s: %s\n", sfn, strerror (errno));
-+      fprintf (stderr, "%s\n", strerror (errno));
-       sprintf (errmsg, "Cannot open temp file");
-       umask(u);
-       return ERR;
-@@ -226,7 +226,7 @@
-     {
-       if (fclose (sfp) < 0)
-       {
--        fprintf (stderr, "%s: %s\n", sfn, strerror (errno));
-+        fprintf (stderr, "%s\n", strerror (errno));
-         sprintf (errmsg, "Cannot close temp file");
-         return ERR;
-       }
-
diff --git a/ed-regex.patch b/ed-regex.patch
deleted file mode 100644 (file)
index 94a733f..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
---- ed-0.2/Makefile.in.regex   2002-12-17 13:08:36.000000000 +0100
-+++ ed-0.2/Makefile.in 2002-12-17 13:09:35.000000000 +0100
-@@ -54,9 +54,9 @@
- SOURCES = buf.c glbl.c io.c main.c re.c signal.c sub.c undo.c version.c
- OBJECTS = buf.o glbl.o io.o main.o re.o signal.o sub.o undo.o version.o
--LIBHDRS = pathmax.h getopt.h regex.h
--LIBSRCS = alloca.c error.c getopt.c getopt1.c regex.c xmalloc.c
--LIBOBJS = @ALLOCA@ getopt.o getopt1.o regex.o @LIBOBJS@
-+LIBHDRS = pathmax.h getopt.h
-+LIBSRCS = alloca.c error.c getopt.c getopt1.c xmalloc.c
-+LIBOBJS = @ALLOCA@ getopt.o getopt1.o @LIBOBJS@
- DISTFILES = $(HEADERS) $(LIBHDRS) $(LIBSRCS) $(SOURCES) ChangeLog COPYING \
- INSTALL Makefile.in NEWS POSIX README TODO THANKS \
-@@ -68,11 +68,11 @@
- ed: $(OBJECTS) libed.a
-       $(CC) $(LDFLAGS) -o ed $(OBJECTS) libed.a $(LIBS)
--buf.o: ed.h config.h regex.h
--ed.o: ed.h config.h regex.h
--main.o: ed.h config.h regex.h getopt.h pathmax.h
--re.o: ed.h config.h regex.h
--signal.o: ed.h config.h regex.h
-+buf.o: ed.h config.h
-+ed.o: ed.h config.h
-+main.o: ed.h config.h getopt.h pathmax.h
-+re.o: ed.h config.h
-+signal.o: ed.h config.h
- libed.a: $(LIBOBJS)
-       rm -f libed.a
-@@ -80,7 +80,6 @@
-       $(RANLIB) libed.a
- getopt.o getopt1.o: getopt.h
--regex.o: regex.h
- check: ed
-       rootme=`pwd`; srcrootme=`cd $(srcdir); pwd`;\
This page took 0.463017 seconds and 4 git commands to generate.