diff options
author | Alexander Langer <alex@FreeBSD.org> | 2000-06-28 13:34:38 +0000 |
---|---|---|
committer | Alexander Langer <alex@FreeBSD.org> | 2000-06-28 13:34:38 +0000 |
commit | 0d731daf26f42272f5017a8ed13501bc198f0e02 (patch) | |
tree | 457342d7af8a5dc19d254f34faa577333abf5607 /graphics/mpegedit/files/patch-ay | |
parent | Update to version 1.10. (diff) |
- Support CC/CXX/CFLAGS/CXXFLAGS/MAKE properly
- Support NOPORTDOCS
- Remove USE_GMAKE
- Add WWW: line into pkg/DESCR
- Add pnm.1 LIB_DEPENDS
PR: 19344
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Notes
Notes:
svn path=/head/; revision=29938
Diffstat (limited to 'graphics/mpegedit/files/patch-ay')
-rw-r--r-- | graphics/mpegedit/files/patch-ay | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/graphics/mpegedit/files/patch-ay b/graphics/mpegedit/files/patch-ay new file mode 100644 index 000000000000..07b62a2016ac --- /dev/null +++ b/graphics/mpegedit/files/patch-ay @@ -0,0 +1,26 @@ +--- MpegCodec/encoder/Makefile.orig Mon Jul 24 00:03:48 1995 ++++ MpegCodec/encoder/Makefile Thu Jun 15 08:56:34 2000 +@@ -26,8 +26,8 @@ + + AR = ar r + RM = rm -f +-CC = gcc +-CPP = g++ ++#CC = gcc ++CPP = ${CXX} + DEPFILE = Dependencies + CCOPTIMISATIONS = -O6 -funroll-loops -fomit-frame-pointer + +@@ -73,10 +73,10 @@ + + $(DEPFILE): + set -e; for i in $(SOURCES); do $(CC) -M $$i $(DEFINES) >>$(DEPFILE); done +- ++ + # + # include a dependency file if one exists + # + #ifeq ($(DEPFILE),$(wildcard $(DEPFILE))) +-include $(DEPFILE) ++#include $(DEPFILE) + #endif |