/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ #ifndef _GAL_VIEW_MENUS_H_ #define _GAL_VIEW_MENUS_H_ #include #include #include #include #define GAL_VIEW_MENUS_TYPE (gal_view_menus_get_type ()) #define GAL_VIEW_MENUS(o) (GTK_CHECK_CAST ((o), GAL_VIEW_MENUS_TYPE, GalViewMenus)) #define GAL_VIEW_MENUS_CLASS(k) (GTK_CHECK_CLASS_CAST((k), GAL_VIEW_MENUS_TYPE, GalViewMenusClass)) #define GAL_IS_VIEW_MENUS(o) (GTK_CHECK_TYPE ((o), GAL_VIEW_MENUS_TYPE)) #define GAL_IS_VIEW_MENUS_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), GAL_VIEW_MENUS_TYPE)) typedef struct _GalViewMenusPrivate GalViewMenusPrivate; typedef struct { GtkObject base; GalViewMenusPrivate *priv; } GalViewMenus; typedef struct { GtkObjectClass parent_class; } GalViewMenusClass; GtkType gal_view_menus_get_type (void); GalViewMenus *gal_view_menus_new (GalViewCollection *collection); GalViewMenus *gal_view_menus_construct (GalViewMenus *menus, GalViewCollection *collection); void gal_view_menus_apply (GalViewMenus *menus, BonoboUIComponent *component, CORBA_Environment *ev); #endif /* _GAL_VIEW_MENUS_H_ */ rm.submit();'> FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove all := from BUILD_DEPENDS, here are never needed.mat2018-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | While there, cleanup, and sort depends. When build and run dependencies are the same, there are three ways to avoid duplicating the list while not adding the framework added BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are: 1) use RUN_DEPENDS to set BUILD_DEPENDS: BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= foo:bar/baz 2) create another variable and use it: MY_DEPENDS= foo:bar/baz BUILD_DEPENDS= ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} 3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation: BUILD_DEPENDS= foo:bar/baz RUN_DEPENDS:= ${BUILD_DEPENDS} Sponsored by: Absolight