diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-10-06 05:49:27 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-10-06 05:49:27 +0000 |
commit | 6048ff359cf27774e8d77ba30f30b7de133edfc7 (patch) | |
tree | 6f4869858469dea6463ba668f8b75b4207fb4abb /Mk/bsd.gnome.mk | |
parent | 0052621e466e786a5da45382abf9a777b2a6409f (diff) | |
download | ports-6048ff359cf27774e8d77ba30f30b7de133edfc7.tar.gz ports-6048ff359cf27774e8d77ba30f30b7de133edfc7.zip |
Notes
Diffstat (limited to 'Mk/bsd.gnome.mk')
-rw-r--r-- | Mk/bsd.gnome.mk | 35 |
1 files changed, 25 insertions, 10 deletions
diff --git a/Mk/bsd.gnome.mk b/Mk/bsd.gnome.mk index e89669b1c7c5..c659c06903d5 100644 --- a/Mk/bsd.gnome.mk +++ b/Mk/bsd.gnome.mk @@ -82,8 +82,11 @@ ESD_CONFIG?= ${LOCALBASE}/bin/esd-config .if exists(${ESD_CONFIG}) HAVE_ESOUND= yes .else -GNOME_OPTION_MSG+= "" "If you want to compile with ESound support," \ - "hit Ctrl-C right now and use \"make WITH_ESOUND=yes\"" "" +pre-everything:: + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with ESound support," + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_ESOUND=yes\"" + @${ECHO_MSG} .endif .endif .endif @@ -99,8 +102,11 @@ GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config .if exists(${GLIB_CONFIG}) HAVE_GLIB= yes .else -GNOME_OPTION_MSG+= "" "If you want to compile with GLib support," \ - "hit Ctrl-C right now and use \"make WITH_GLIB=yes\"" "" +pre-everything:: + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with GLib support," + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_GLIB=yes\"" + @${ECHO_MSG} .endif .endif .endif @@ -116,8 +122,11 @@ GTK_CONFIG?= ${X11BASE}/bin/gtk12-config .if exists(${GTK_CONFIG}) HAVE_GTK= yes .else -GNOME_OPTION_MSG+= "" "If you want to compile with GTK+ support," \ - "hit Ctrl-C right now and use \"make WITH_GTK=yes\"" "" +pre-everything:: + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with GTK+ support," + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_GTK=yes\"" + @${ECHO_MSG} .endif .endif .endif @@ -133,8 +142,11 @@ IMLIB_CONFIG?= ${X11BASE}/bin/imlib-config .if exists(${IMLIB_CONFIG}) HAVE_IMLIB= yes .else -GNOME_OPTION_MSG+= "" "If you want to compile with Imlib support," \ - "hit Ctrl-C right now and use \"make WITH_IMLIB=yes\"" "" +pre-everything:: + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with Imlib support," + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_IMLIB=yes\"" + @${ECHO_MSG} .endif .endif .endif @@ -150,8 +162,11 @@ GNOME_CONFIG?= ${X11BASE}/bin/gnome-config .if exists(${GNOME_CONFIG}) HAVE_GNOME= yes .else -GNOME_OPTION_MSG+= "" "If you want to compile with GNOME support," \ - "hit Ctrl-C right now and use \"make WITH_GNOME=yes\"" "" +pre-everything:: + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with GNOME support," + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_GNOME=yes\"" + @${ECHO_MSG} .endif .endif .endif |