summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--ChangeLog.pre-2-103
-rw-r--r--ChangeLog.pre-2-63
-rw-r--r--ChangeLog.pre-2-83
-rw-r--r--configure.in10
5 files changed, 22 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5d83a3041..4ec7e0475 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2004-12-27 Matthias Clasen <mclasen@redhat.com>
+ * configure.in: Add a warning about the linux-fb
+ target. (#155488, Zeeshan Ali)
+
* gtk/gtkmain.c (gtk_init_with_args): Typo fix. (#162278,
Torsten Schoenfeld)
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 5d83a3041..4ec7e0475 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,5 +1,8 @@
2004-12-27 Matthias Clasen <mclasen@redhat.com>
+ * configure.in: Add a warning about the linux-fb
+ target. (#155488, Zeeshan Ali)
+
* gtk/gtkmain.c (gtk_init_with_args): Typo fix. (#162278,
Torsten Schoenfeld)
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 5d83a3041..4ec7e0475 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,5 +1,8 @@
2004-12-27 Matthias Clasen <mclasen@redhat.com>
+ * configure.in: Add a warning about the linux-fb
+ target. (#155488, Zeeshan Ali)
+
* gtk/gtkmain.c (gtk_init_with_args): Typo fix. (#162278,
Torsten Schoenfeld)
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 5d83a3041..4ec7e0475 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,5 +1,8 @@
2004-12-27 Matthias Clasen <mclasen@redhat.com>
+ * configure.in: Add a warning about the linux-fb
+ target. (#155488, Zeeshan Ali)
+
* gtk/gtkmain.c (gtk_init_with_args): Typo fix. (#162278,
Torsten Schoenfeld)
diff --git a/configure.in b/configure.in
index e379fc12e..4d0a50918 100644
--- a/configure.in
+++ b/configure.in
@@ -1553,6 +1553,7 @@ fi
AM_CONDITIONAL(ENABLE_MAN, test x$enable_man != xno)
+
##################################################
# Output commands
##################################################
@@ -1685,3 +1686,12 @@ contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.0.pc
])
AC_OUTPUT
+
+echo "configuration:
+ target: $gdktarget"
+
+if test "x$gdktarget" = "xlinux-fb"; then
+ echo "Warning: The linux-fb GDK target is unmaintained"
+ echo " and may not work or even compile"
+fi
+