diff options
author | John Marino <marino@FreeBSD.org> | 2014-09-07 15:04:06 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-09-07 15:04:06 +0000 |
commit | 59d0a3258cced810195f58fdd52334c4edbd3d2a (patch) | |
tree | 52be17508db79847928169a34c79c6022bd62909 /lang/caml-light/files/patch-aa | |
parent | - Pass maintainership to python@ (diff) |
Remove unstaged lang/caml-light
Notes
Notes:
svn path=/head/; revision=367550
Diffstat (limited to 'lang/caml-light/files/patch-aa')
-rw-r--r-- | lang/caml-light/files/patch-aa | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/lang/caml-light/files/patch-aa b/lang/caml-light/files/patch-aa deleted file mode 100644 index 81b7c3f5b325..000000000000 --- a/lang/caml-light/files/patch-aa +++ /dev/null @@ -1,54 +0,0 @@ ---- src/Makefile.orig Wed Mar 3 16:25:57 1999 -+++ src/Makefile Sat Aug 5 09:56:37 2006 -@@ -2,14 +2,14 @@ - - # Which C compiler to use. - # Performance is often improved if you use gcc 2.x instead of cc. --CC=gcc -+#CC=gcc - - # Additional options to $(CC). - # If you are using gcc, add -fno-defer-pop. - # This option circumvents a gcc bug on some platforms (680x0, 80386). - # If you are using Linux with libc6 (RedHat 5, Debian 2), add -D__FAVOR_BSD - # This option avoids signal-related problems. --OPTS=-fno-defer-pop -D__FAVOR_BSD -+OPTS=-fno-defer-pop -D__FAVOR_BSD ${CFLAGS} - - # Extra libraries that have to be linked with the runtime system. - # The math library "-lm" is linked by default. -@@ -26,19 +26,19 @@ - # not all Unix C preprocessors define it. - # If your cpp is too fussy, make tools/clprepro and use this: - # CPP=../../src/tools/clprepro -Dunix --CPP=/lib/cpp -P -traditional -Dunix -+CPP=/usr/bin/cpp -P -traditional -Dunix ${CPPFLAGS} - - # The directory where public executables will be installed --BINDIR=/usr/local/bin -+BINDIR=${PREFIX}/bin - - # The directory where the Caml Light standard library will be installed --LIBDIR=/usr/local/lib/caml-light -+LIBDIR=${PREFIX}/lib/caml-light - - # The manual section where the manual pages will be installed - MANEXT=1 - - # The directory where the manual pages will be installed --MANDIR=/usr/local/man/man$(MANEXT) -+MANDIR=${PREFIX}/man/man$(MANEXT) - - # Some "make"s need this to ensure that they call the Bourne shell, - # not the C shell. Seems harmless on most other "make"s. -@@ -120,8 +120,8 @@ - - # Install the Caml Light system - install: -- if test -d $(BINDIR); then : ; else mkdir $(BINDIR); fi -- if test -d $(LIBDIR); then : ; else mkdir $(LIBDIR); fi -+ if test -d $(BINDIR); then : ; else mkdir -p $(BINDIR); fi -+ if test -d $(LIBDIR); then : ; else mkdir -p $(LIBDIR); fi - cd runtime; make BINDIR=$(BINDIR) LIBDIR=$(LIBDIR) install - cd launch; make BINDIR=$(BINDIR) LIBDIR=$(LIBDIR) install - cd lib; make BINDIR=$(BINDIR) LIBDIR=$(LIBDIR) install |