diff options
author | markm <markm@FreeBSD.org> | 1998-03-16 22:40:59 +0800 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1998-03-16 22:40:59 +0800 |
commit | bf597ca3a3cb07b0d6c9e4a0c96aff700aa14c1f (patch) | |
tree | 3623872e233100119635884ad836326f75d7d92e /www/bsdi-netscape47-navigator | |
parent | b8865c1feaf04702d66902352edc142ca0bfbb27 (diff) | |
download | freebsd-ports-gnome-bf597ca3a3cb07b0d6c9e4a0c96aff700aa14c1f.tar.gz freebsd-ports-gnome-bf597ca3a3cb07b0d6c9e4a0c96aff700aa14c1f.tar.zst freebsd-ports-gnome-bf597ca3a3cb07b0d6c9e4a0c96aff700aa14c1f.zip |
Fix for the case where a macro is not defined at all.
Found by: jkh
Diffstat (limited to 'www/bsdi-netscape47-navigator')
-rw-r--r-- | www/bsdi-netscape47-navigator/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/www/bsdi-netscape47-navigator/Makefile b/www/bsdi-netscape47-navigator/Makefile index 16004cf58fa4..1af5f36c99fa 100644 --- a/www/bsdi-netscape47-navigator/Makefile +++ b/www/bsdi-netscape47-navigator/Makefile @@ -3,7 +3,7 @@ # Date created: 24 Feb 1997 # Whom: ache # -# $Id: Makefile,v 1.15 1998/02/18 11:51:05 markm Exp $ +# $Id: Makefile,v 1.16 1998/03/15 15:15:22 markm Exp $ # DISTNAME= netscape-navigator-4.04 @@ -19,16 +19,17 @@ NO_BUILD= Yes NDIR= ${PREFIX}/lib/netscape BINDIR= ${PREFIX}/bin -.if defined(USE_128BIT) && ${USA_RESIDENT} == NO +.if defined(USE_128BIT) && defined(USA_RESIDENT) && ${USA_RESIDENT} == NO MASTER_SITES+= ftp://ftp.fortify.net/pub/Fortify/ \ ftp://ftp.za.freebsd.org/pub/Fortify/ DISTFILES+= Fortify-1.2.1-unix.tar.gz RESTRICTED= "Contains strong cryptography" .endif -.if !defined(USE_128BIT) && ${USA_RESIDENT} == NO +.if !defined(USE_128BIT) pre-extract: @${ECHO} "You can make Netscape use 128-bit encryption by defining USE_128BIT" + @${ECHO} "and defining USA_RESIDENT to NO" .endif do-install: |