diff options
author | sobomax <sobomax@FreeBSD.org> | 2002-09-14 21:32:06 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2002-09-14 21:32:06 +0800 |
commit | 7c5bdc9e42725790d9930beeb578c30ebc8ce8a9 (patch) | |
tree | 9ea2ff2cc7182f0fa38f332ffb8c81d1929f4eeb /print | |
parent | a33bc26ff1a1f6aaf0830cba9032d189c98a2ee8 (diff) | |
download | freebsd-ports-graphics-7c5bdc9e42725790d9930beeb578c30ebc8ce8a9.tar.gz freebsd-ports-graphics-7c5bdc9e42725790d9930beeb578c30ebc8ce8a9.tar.zst freebsd-ports-graphics-7c5bdc9e42725790d9930beeb578c30ebc8ce8a9.zip |
Due to popular demant into each port which might be inserted into dependency
list by bsd.port.mk insert anti foot-shooting device, which prevents
infinite fork loop when the user defines corresponding USE_XXX in global
make.conf, command line or environment.
Similar devices should probably be inserted into ports that might be inserted
into dependency list by others bsd.foo.mk files (bsd.ruby.mk, bsd.python.mk
and so on.)
Diffstat (limited to 'print')
-rw-r--r-- | print/freetype/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/print/freetype/Makefile b/print/freetype/Makefile index 280a86efcaf..d5a83380046 100644 --- a/print/freetype/Makefile +++ b/print/freetype/Makefile @@ -24,6 +24,10 @@ USE_LIBTOOL= yes INSTALLS_SHLIB= yes CONFIGURE_ARGS= --disable-nls --enable-static --enable-shared +.ifdef USE_FREETYPE +.error You have `USE_FREETYPE' variable defined either in environment or in make(1) arguments. Please undefine and try again. +.endif + # Older versions of freetype installed include files in ${PREFIX}/include # this is a compatibility hack for now |