mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Hack Makefile, gtk-gui.c and divelist.c to allow building w/o osm-gps-map
While we are waiting for an autotools generated Makefile, this should allow people to build that don't have osm-gps-map. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
91d6d12416
commit
d0d4bbece7
3 changed files with 18 additions and 7 deletions
10
gtk-gui.c
10
gtk-gui.c
|
@ -1062,7 +1062,9 @@ static GtkActionEntry menu_items[] = {
|
|||
{ "Preferences", GTK_STOCK_PREFERENCES, N_("Preferences..."), PREFERENCE_ACCEL, NULL, G_CALLBACK(preferences_dialog) },
|
||||
{ "Renumber", NULL, N_("Renumber..."), NULL, NULL, G_CALLBACK(renumber_dialog) },
|
||||
{ "YearlyStats", NULL, N_("Yearly Statistics"), NULL, NULL, G_CALLBACK(show_yearly_stats) },
|
||||
#if HAVE_OSM_GPS_MAP
|
||||
{ "DivesLocations", NULL, N_("Dives Locations"), CTRLCHAR "M", NULL, G_CALLBACK(show_gps_locations) },
|
||||
#endif
|
||||
{ "SelectEvents", NULL, N_("Select Events..."), NULL, NULL, G_CALLBACK(selectevents_dialog) },
|
||||
{ "Quit", GTK_STOCK_QUIT, N_("Quit"), CTRLCHAR "Q", NULL, G_CALLBACK(quit) },
|
||||
{ "About", GTK_STOCK_ABOUT, N_("About Subsurface"), NULL, NULL, G_CALLBACK(about_dialog) },
|
||||
|
@ -1108,9 +1110,11 @@ static const gchar* ui_string = " \
|
|||
<menuitem name=\"Renumber\" action=\"Renumber\" /> \
|
||||
<menuitem name=\"Autogroup\" action=\"Autogroup\" /> \
|
||||
<menuitem name=\"Toggle Zoom\" action=\"ToggleZoom\" /> \
|
||||
<menuitem name=\"YearlyStats\" action=\"YearlyStats\" /> \
|
||||
<menuitem name=\"DivesLocations\" action=\"DivesLocations\" /> \
|
||||
<menu name=\"View\" action=\"ViewMenuAction\"> \
|
||||
<menuitem name=\"YearlyStats\" action=\"YearlyStats\" /> "
|
||||
#if HAVE_OSM_GPS_MAP
|
||||
"<menuitem name=\"DivesLocations\" action=\"DivesLocations\" /> "
|
||||
#endif
|
||||
"<menu name=\"View\" action=\"ViewMenuAction\"> \
|
||||
<menuitem name=\"List\" action=\"ViewList\" /> \
|
||||
<menuitem name=\"Profile\" action=\"ViewProfile\" /> \
|
||||
<menuitem name=\"Info\" action=\"ViewInfo\" /> \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue