diff options
author | will <will@FreeBSD.org> | 2000-10-29 13:38:04 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-10-29 13:38:04 +0800 |
commit | b55d4ceeb69ba163b57276d991cf7de0789a9c30 (patch) | |
tree | 6e694b74547e4f0930c9cf510a7e65fb2470817e /x11-toolkits | |
parent | fa34ccb36a44ec507603d077850f3755f2ceae5a (diff) | |
download | freebsd-ports-gnome-b55d4ceeb69ba163b57276d991cf7de0789a9c30.tar.gz freebsd-ports-gnome-b55d4ceeb69ba163b57276d991cf7de0789a9c30.tar.zst freebsd-ports-gnome-b55d4ceeb69ba163b57276d991cf7de0789a9c30.zip |
Sigh.. fix another bogon.. and take a logic class.
Submitted by: Andrzej Tobola <san@tmp.iem.pw.edu.pl>
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/qt22/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/qt23/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/qt30/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/qt31/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/qt32/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/qt33/Makefile | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/x11-toolkits/qt22/Makefile b/x11-toolkits/qt22/Makefile index 5c78272563ac..ca8a9225d376 100644 --- a/x11-toolkits/qt22/Makefile +++ b/x11-toolkits/qt22/Makefile @@ -48,7 +48,7 @@ INSTALLS_SHLIB=yes .endif pre-fetch: -.if !defined(QT_GIF_AVAILABLE) || !defined(HAVE_UNISYS_LICENSE) +.if !defined(QT_GIF_AVAILABLE) && !defined(HAVE_UNISYS_LICENSE) @${ECHO} @${ECHO} "GIF support is disabled in QT by default due to the" @${ECHO} "restrictive license on LZW compression owned by Unisys." diff --git a/x11-toolkits/qt23/Makefile b/x11-toolkits/qt23/Makefile index 5c78272563ac..ca8a9225d376 100644 --- a/x11-toolkits/qt23/Makefile +++ b/x11-toolkits/qt23/Makefile @@ -48,7 +48,7 @@ INSTALLS_SHLIB=yes .endif pre-fetch: -.if !defined(QT_GIF_AVAILABLE) || !defined(HAVE_UNISYS_LICENSE) +.if !defined(QT_GIF_AVAILABLE) && !defined(HAVE_UNISYS_LICENSE) @${ECHO} @${ECHO} "GIF support is disabled in QT by default due to the" @${ECHO} "restrictive license on LZW compression owned by Unisys." diff --git a/x11-toolkits/qt30/Makefile b/x11-toolkits/qt30/Makefile index 5c78272563ac..ca8a9225d376 100644 --- a/x11-toolkits/qt30/Makefile +++ b/x11-toolkits/qt30/Makefile @@ -48,7 +48,7 @@ INSTALLS_SHLIB=yes .endif pre-fetch: -.if !defined(QT_GIF_AVAILABLE) || !defined(HAVE_UNISYS_LICENSE) +.if !defined(QT_GIF_AVAILABLE) && !defined(HAVE_UNISYS_LICENSE) @${ECHO} @${ECHO} "GIF support is disabled in QT by default due to the" @${ECHO} "restrictive license on LZW compression owned by Unisys." diff --git a/x11-toolkits/qt31/Makefile b/x11-toolkits/qt31/Makefile index 5c78272563ac..ca8a9225d376 100644 --- a/x11-toolkits/qt31/Makefile +++ b/x11-toolkits/qt31/Makefile @@ -48,7 +48,7 @@ INSTALLS_SHLIB=yes .endif pre-fetch: -.if !defined(QT_GIF_AVAILABLE) || !defined(HAVE_UNISYS_LICENSE) +.if !defined(QT_GIF_AVAILABLE) && !defined(HAVE_UNISYS_LICENSE) @${ECHO} @${ECHO} "GIF support is disabled in QT by default due to the" @${ECHO} "restrictive license on LZW compression owned by Unisys." diff --git a/x11-toolkits/qt32/Makefile b/x11-toolkits/qt32/Makefile index 5c78272563ac..ca8a9225d376 100644 --- a/x11-toolkits/qt32/Makefile +++ b/x11-toolkits/qt32/Makefile @@ -48,7 +48,7 @@ INSTALLS_SHLIB=yes .endif pre-fetch: -.if !defined(QT_GIF_AVAILABLE) || !defined(HAVE_UNISYS_LICENSE) +.if !defined(QT_GIF_AVAILABLE) && !defined(HAVE_UNISYS_LICENSE) @${ECHO} @${ECHO} "GIF support is disabled in QT by default due to the" @${ECHO} "restrictive license on LZW compression owned by Unisys." diff --git a/x11-toolkits/qt33/Makefile b/x11-toolkits/qt33/Makefile index 5c78272563ac..ca8a9225d376 100644 --- a/x11-toolkits/qt33/Makefile +++ b/x11-toolkits/qt33/Makefile @@ -48,7 +48,7 @@ INSTALLS_SHLIB=yes .endif pre-fetch: -.if !defined(QT_GIF_AVAILABLE) || !defined(HAVE_UNISYS_LICENSE) +.if !defined(QT_GIF_AVAILABLE) && !defined(HAVE_UNISYS_LICENSE) @${ECHO} @${ECHO} "GIF support is disabled in QT by default due to the" @${ECHO} "restrictive license on LZW compression owned by Unisys." |