diff options
author | marcus <marcus@FreeBSD.org> | 2003-04-08 09:11:35 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-04-08 09:11:35 +0800 |
commit | d3da34d4cf2bf790104263afa67f484ba46b4192 (patch) | |
tree | f976b6299f4a6917487042a5f0e417c21009a57e /Mk/bsd.gnome.mk | |
parent | f1efabed90db107d3e6ca03b7c9ec7d16ac2144f (diff) | |
download | freebsd-ports-gnome-d3da34d4cf2bf790104263afa67f484ba46b4192.tar.gz freebsd-ports-gnome-d3da34d4cf2bf790104263afa67f484ba46b4192.tar.zst freebsd-ports-gnome-d3da34d4cf2bf790104263afa67f484ba46b4192.zip |
Append to USE_GNOME when dealing with the obsolete macros. This will
allow old ports that check to see if HAVE_GNOME is simply defined to still
work.
Diffstat (limited to 'Mk/bsd.gnome.mk')
-rw-r--r-- | Mk/bsd.gnome.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mk/bsd.gnome.mk b/Mk/bsd.gnome.mk index a4b61b8e8e5a..f7d03b372e7c 100644 --- a/Mk/bsd.gnome.mk +++ b/Mk/bsd.gnome.mk @@ -435,13 +435,13 @@ HAVE_GNOME+= ${component} # backward compatibility with old ports that have not converted to the new # GNOME infrastructure. .if defined(USE_GTK) -USE_GNOME= gtk12 +USE_GNOME+= gtk12 .endif .if defined(USE_ESOUND) -USE_GNOME= esound +USE_GNOME+= esound .endif .if defined(USE_IMLIB) -USE_GNOME= imlib +USE_GNOME+= imlib .endif # End of obsolete macros @@ -449,7 +449,7 @@ USE_GNOME= imlib # Hack USE_GNOME to the modular infrastructure for port maintainers that # didn't do so themselves. New ports should NOT set USE_GNOME=yes. . if ${USE_GNOME}=="yes" -USE_GNOME=gnomeprefix gnomehack gtkhtml libpanel +USE_GNOME+=gnomeprefix gnomehack gtkhtml libpanel . endif # Set a reasonable (overrideable) configure target for GNOME apps. |