summaryrefslogtreecommitdiffstats
path: root/source/ap/ash/patches/ash-makefile.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2018-05-28 19:12:29 +0000
committer Eric Hameleers <alien@slackware.com>2018-05-31 23:39:35 +0200
commit646a5c1cbfd95873950a87b5f75d52073a967023 (patch)
treeb8b8d2ab3b0d432ea69ad1a64d1c789649d65020 /source/ap/ash/patches/ash-makefile.patch
parentd31c50870d0bee042ce660e445c9294a59a3a65b (diff)
downloadcurrent-20180528191229.tar.gz
current-20180528191229.tar.xz
Mon May 28 19:12:29 UTC 201820180528191229
a/pkgtools-15.0-noarch-13.txz: Rebuilt. installpkg: default line length for --terselength is the number of columns. removepkg: added --terse mode. upgradepkg: default line length for --terselength is the number of columns. upgradepkg: accept -option in addition to --option. ap/vim-8.1.0026-x86_64-1.txz: Upgraded. d/bison-3.0.5-x86_64-1.txz: Upgraded. e/emacs-26.1-x86_64-1.txz: Upgraded. kde/kopete-4.14.3-x86_64-8.txz: Rebuilt. Recompiled against libidn-1.35. n/conntrack-tools-1.4.5-x86_64-1.txz: Upgraded. n/libnetfilter_conntrack-1.0.7-x86_64-1.txz: Upgraded. n/libnftnl-1.1.0-x86_64-1.txz: Upgraded. n/links-2.16-x86_64-2.txz: Rebuilt. Rebuilt to enable X driver for -g mode. n/lynx-2.8.9dev.19-x86_64-1.txz: Upgraded. n/nftables-0.8.5-x86_64-1.txz: Upgraded. n/p11-kit-0.23.11-x86_64-1.txz: Upgraded. n/ulogd-2.0.7-x86_64-1.txz: Upgraded. n/whois-5.3.1-x86_64-1.txz: Upgraded. xap/network-manager-applet-1.8.12-x86_64-1.txz: Upgraded. xap/vim-gvim-8.1.0026-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/ap/ash/patches/ash-makefile.patch')
-rw-r--r--source/ap/ash/patches/ash-makefile.patch115
1 files changed, 0 insertions, 115 deletions
diff --git a/source/ap/ash/patches/ash-makefile.patch b/source/ap/ash/patches/ash-makefile.patch
deleted file mode 100644
index c3b16a1f5..000000000
--- a/source/ap/ash/patches/ash-makefile.patch
+++ /dev/null
@@ -1,115 +0,0 @@
-diff -u ash-0.4.0/Makefile ash-0.4.0-/Makefile
---- ash-0.4.0/Makefile Fri Jan 12 17:50:34 2001
-+++ ash-0.4.0-/Makefile Tue Apr 24 00:49:56 2001
-@@ -7,56 +7,68 @@
- SHSRCS= alias.c cd.c echo.c error.c eval.c exec.c expand.c \
- histedit.c input.c jobs.c mail.c main.c memalloc.c miscbltin.c \
- mystring.c options.c parser.c redir.c show.c trap.c output.c var.c \
-- test.c
--GENSRCS=arith.c arith.h arith_lex.c builtins.c builtins.h init.c nodes.c \
-- nodes.h syntax.c syntax.h token.h
-+ test.c setmode.c test.c
-+GENSRCS=builtins.c builtins.h init.c nodes.c arith.c arith.h lex.yy.c \
-+ nodes.h syntax.c syntax.h token.h signames.c
- SRCS= ${SHSRCS} ${GENSRCS}
-
--LDADD+= -ll -ledit -ltermcap
--DPADD+= ${LIBL} ${LIBEDIT} ${LIBTERMCAP}
-+OBJS=alias.o cd.o bltin/echo.o error.o eval.o exec.o expand.o \
-+ histedit.o input.o jobs.o mail.o main.o memalloc.o miscbltin.o \
-+ mystring.o options.o output.o parser.o redir.o show.o \
-+ trap.o var.o bltin/test.o signames.o \
-+ builtins.o init.o nodes.o syntax.o arith.o lex.yy.o \
-+ setmode.o bltin/times.o
-+
-+OPT_FLAGS=-O2 -g
-+LDFLAGS=-g
-+CFLAGS=$(OPT_FLAGS) -DSHELL -I. -DNO_HISTORY -DBSD=1 -DSMALL -D_GNU_SOURCE \
-+ -DGLOB_BROKEN -D__COPYRIGHT\(x\)= -D__RCSID\(x\)= -D_DIAGASSERT\(x\)=
-+
-+all: $(PROG)
-+
-+$(PROG): build-tools $(GENSRCS) $(GENHDRS) $(OBJS)
-+ $(CC) $(LDFLAGS) -o $(PROG) $(OBJS) $(LDLIBS) -lfl
-+
-+lex.yy.c: arith_lex.l
-+ flex -8 $<
-+
-+CLEANFILES+= mkinit mkinit.o mknodes mknodes.o \
-+ mksyntax mksyntax.o
-+
-+CLEANFILES+= ${GENSRCS} ${GENHDRS}
-+
-+build-tools: mkinit mknodes mksyntax
-+
-+.ORDER: builtins.c builtins.h
-+builtins.c builtins.h: mkbuiltins builtins.def
-+ sh mkbuiltins shell.h builtins.def `pwd`
-+
-+INIT_DEPS = alias.c eval.c exec.c input.c jobs.c options.c parser.c \
-+ redir.c trap.c var.c output.c
-+
-+init.c: mkinit $(INIT_DEPS)
-+ ./mkinit $(INIT_DEPS)
-+
-+mkinit: mkinit.o
-+mknodes: mknodes.o
-+mksyntax: mksyntax.o
-
--LFLAGS= -8 # 8-bit lex scanner for arithmetic
--YFLAGS= -d
--
--CPPFLAGS+=-DSHELL -I. -I${.CURDIR}
--
--.PATH: ${.CURDIR}/bltin ${.CURDIR}/../../usr.bin/printf ${.CURDIR}/../test
--
--CLEANFILES+= mkinit mknodes mksyntax
--CLEANFILES+= ${GENSRCS} y.tab.h
--
--token.h: mktokens
-- sh ${.ALLSRC}
--
--builtins.c builtins.h: mkbuiltins shell.h builtins.def
-- sh ${.ALLSRC} ${.OBJDIR}
--
--init.c: mkinit ${SHSRCS}
-- ./${.ALLSRC}
-+signames.c: mksignames
-+ ./mksignames
-
- nodes.c nodes.h: mknodes nodetypes nodes.c.pat
-- ./${.ALLSRC}
-+ ./mknodes ./nodetypes ./nodes.c.pat
-
- syntax.c syntax.h: mksyntax
-- ./${.ALLSRC}
--
--mkinit: mkinit.c
-- ${HOST_LINK.c} -o mkinit ${.IMPSRC}
--
--mknodes: mknodes.c
-- ${HOST_LINK.c} -o mknodes ${.IMPSRC}
-+ ./mksyntax
-
--.if (${MACHINE_ARCH} == "powerpc") || \
-- (${MACHINE_ARCH} == "arm32") || \
-- (${MACHINE_ARCH} == "arm26")
--TARGET_CHARFLAG= -DTARGET_CHAR="u_int8_t"
--.else
--TARGET_CHARFLAG= -DTARGET_CHAR="int8_t"
--.endif
-+arith.c arith.h: arith.y
-+ yacc -d arith.y
-+ mv y.tab.h arith.h
-+ mv y.tab.c arith.c
-
--mksyntax: mksyntax.c
-- ${HOST_LINK.c} ${TARGET_CHARFLAG} -o mksyntax ${.IMPSRC}
--
--.include <bsd.prog.mk>
-+token.h: mktokens
-+ sh ./mktokens
-
--${OBJS}: builtins.h nodes.h syntax.h token.h
-+clean:
-+ rm -f $(PROG) $(OBJS) $(CLEANFILES) core