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-az | |
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-az')
-rw-r--r-- | graphics/mpegedit/files/patch-az | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/graphics/mpegedit/files/patch-az b/graphics/mpegedit/files/patch-az new file mode 100644 index 000000000000..a0a3117b1d5f --- /dev/null +++ b/graphics/mpegedit/files/patch-az @@ -0,0 +1,39 @@ +--- editor/Makefile.orig Mon Jul 24 00:01:16 1995 ++++ editor/Makefile Thu Jun 15 09:02:18 2000 +@@ -25,12 +25,12 @@ + # Mr A S R Ashley B.Eng (Hons) 23rd July 1995 + + AR = ar r +-CC = gcc +-CPP = g++ ++#CC = gcc ++CPP = ${CXX} + RANLIB = ranlib + RM = rm -f + INCLUDES = -I../globals -I../ui -I../MpegCodec -I../MpegCodec/decoder \ +- -I../MpegCodec/encoder -I$(PBMDIR) ++ -I../MpegCodec/encoder -I$(PBMDIR) -I$(X11BASE)/include + + DEPFILE = Dependancies + HEADERS = yuv.H 2x2_window.H mono_window.H bw_window.H effects.H \ +@@ -62,17 +62,17 @@ + + dep: FORCE + $(RM) $(DEPFILE) +- make $(DEPFILE) ++ $(MAKE) $(DEPFILE) + + FORCE: + + + $(DEPFILE): + set -e; for i in $(SOURCES) ; do $(CC) $(INCLUDES) -M $$i >>$(DEPFILE) ; done +- ++ + # + # include a dependency file if one exists + # + #ifeq ($(DEPFILE),$(wildcard $(DEPFILE))) +-include $(DEPFILE) ++#include $(DEPFILE) + #endif |