diff options
author | Aaron Dalton <aaron@FreeBSD.org> | 2006-05-30 20:10:00 +0000 |
---|---|---|
committer | Aaron Dalton <aaron@FreeBSD.org> | 2006-05-30 20:10:00 +0000 |
commit | 0da57b1eba593a5f5655922031c324c4a590e607 (patch) | |
tree | cc369802fe529fb78db75fd975926349109c6c65 /www | |
parent | 4136ed975a0e8b21a4d464e03468cf056dd5e053 (diff) | |
download | ports-0da57b1eba593a5f5655922031c324c4a590e607.tar.gz ports-0da57b1eba593a5f5655922031c324c4a590e607.zip |
Notes
Diffstat (limited to 'www')
-rw-r--r-- | www/mimetex/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/www/mimetex/Makefile b/www/mimetex/Makefile index e561f94821ae..0df71baaaa91 100644 --- a/www/mimetex/Makefile +++ b/www/mimetex/Makefile @@ -28,9 +28,14 @@ CGI_BIN= ${PREFIX}/www/cgi-bin/ CGI_PRG= ${PORTNAME}.cgi WWW_DIR= ${PREFIX}/www/data/mimetex/ +# usefull if you run mimetex on another machine +.if defined(WITH_STATIC) +STATIC_MIMETEX= -static +.endif + do-build: cd ${WRKDIR};\ - ${CC} ${CFLAGS} -DAA mimetex.c gifsave.c -lm -o ${CGI_PRG} + ${CC} ${CFLAGS} ${STATIC_MIMETEX} -DAA mimetex.c gifsave.c -lm -o ${CGI_PRG} do-install: ${MKDIR} ${CGI_BIN} |