Fixed configure.in to AC_CONFIG_SUBDIRS(glib)

This commit is contained in:
Elliot Lee
1998-01-01 23:45:23 +00:00
parent f7443e0e85
commit 26c35927f7
3 changed files with 11 additions and 11 deletions

View File

@ -14,7 +14,7 @@ VERSION=$GTK_VERSION
PACKAGE=gtk+ PACKAGE=gtk+
# Configure glib # Configure glib
#AC_CONFIG_SUBDIRS(glib) AC_CONFIG_SUBDIRS(glib)
# Save this value here, since automake will set cflags later # Save this value here, since automake will set cflags later
cflags_set=${CFLAGS+set} cflags_set=${CFLAGS+set}

View File

@ -40,6 +40,10 @@
#define SAMPLE_WIDTH WHEEL_WIDTH+VALUE_WIDTH+5 #define SAMPLE_WIDTH WHEEL_WIDTH+VALUE_WIDTH+5
#define SAMPLE_HEIGHT 28 #define SAMPLE_HEIGHT 28
static void gtk_color_selection_class_init (GtkColorSelectionClass *klass);
static void gtk_color_selection_init (GtkColorSelection *colorsel);
static void gtk_color_selection_dialog_class_init(GtkColorSelectionDialogClass *klass);
static void gtk_color_selection_dialog_init(GtkColorSelectionDialog *colorseldiag);
enum enum
{ {
@ -201,7 +205,7 @@ gtk_color_selection_get_type ()
return color_selection_type; return color_selection_type;
} }
void static void
gtk_color_selection_class_init (GtkColorSelectionClass *klass) gtk_color_selection_class_init (GtkColorSelectionClass *klass)
{ {
GtkObjectClass *object_class; GtkObjectClass *object_class;
@ -228,7 +232,7 @@ gtk_color_selection_class_init (GtkColorSelectionClass *klass)
widget_class->realize = gtk_color_selection_realize; widget_class->realize = gtk_color_selection_realize;
} }
void static void
gtk_color_selection_init (GtkColorSelection *colorsel) gtk_color_selection_init (GtkColorSelection *colorsel)
{ {
GtkWidget *frame, *hbox, *vbox, *hbox2, *label, *table; GtkWidget *frame, *hbox, *vbox, *hbox2, *label, *table;
@ -1407,19 +1411,19 @@ gtk_color_selection_dialog_get_type ()
return color_selection_dialog_type; return color_selection_dialog_type;
} }
void static void
gtk_color_selection_dialog_class_init (GtkColorSelectionDialogClass *class) gtk_color_selection_dialog_class_init (GtkColorSelectionDialogClass *klass)
{ {
GtkObjectClass *object_class; GtkObjectClass *object_class;
object_class = (GtkObjectClass*) class; object_class = (GtkObjectClass*) klass;
color_selection_dialog_parent_class = gtk_type_class (gtk_window_get_type ()); color_selection_dialog_parent_class = gtk_type_class (gtk_window_get_type ());
object_class->destroy = gtk_color_selection_dialog_destroy; object_class->destroy = gtk_color_selection_dialog_destroy;
} }
void static void
gtk_color_selection_dialog_init (GtkColorSelectionDialog *colorseldiag) gtk_color_selection_dialog_init (GtkColorSelectionDialog *colorseldiag)
{ {
GtkWidget *action_area, *frame; GtkWidget *action_area, *frame;

View File

@ -119,8 +119,6 @@ struct _GtkColorSelectionDialogClass
/* ColorSelection */ /* ColorSelection */
guint gtk_color_selection_get_type (void); guint gtk_color_selection_get_type (void);
void gtk_color_selection_class_init (GtkColorSelectionClass *klass);
void gtk_color_selection_init (GtkColorSelection *colorsel);
GtkWidget* gtk_color_selection_new (void); GtkWidget* gtk_color_selection_new (void);
@ -139,8 +137,6 @@ void gtk_color_selection_get_color (GtkColorSelection *colorse
/* ColorSelectionDialog */ /* ColorSelectionDialog */
guint gtk_color_selection_dialog_get_type (void); guint gtk_color_selection_dialog_get_type (void);
void gtk_color_selection_dialog_class_init (GtkColorSelectionDialogClass *klass);
void gtk_color_selection_dialog_init (GtkColorSelectionDialog *colorseldiag);
GtkWidget* gtk_color_selection_dialog_new (const gchar *title); GtkWidget* gtk_color_selection_dialog_new (const gchar *title);