Add an OS_LINUX conditional.
authorMatthias Clasen <mclasen@redhat.com>
Mon, 27 Dec 2004 06:55:08 +0000 (06:55 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 27 Dec 2004 06:55:08 +0000 (06:55 +0000)
2004-12-27  Matthias Clasen  <mclasen@redhat.com>

* configure.in: Add an OS_LINUX conditional.

* glib/Makefile.am (TESTS): Only check the ABI on
linux, since the shell script is not portable, and libtool
deficiencies may distort the ABI on other platforms.  (#161741)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
configure.in
glib/Makefile.am
gobject/ChangeLog
gobject/Makefile.am

index 3515a4e..7a1e990 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-12-27  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Add an OS_LINUX conditional.
+
+       * glib/Makefile.am (TESTS): Only check the ABI on 
+       linux, since the shell script is not portable, and libtool
+       deficiencies may distort the ABI on other platforms.  (#161741)
+
 2004-12-21  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/goption.c (print_entry): Don't show
index 3515a4e..7a1e990 100644 (file)
@@ -1,3 +1,11 @@
+2004-12-27  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Add an OS_LINUX conditional.
+
+       * glib/Makefile.am (TESTS): Only check the ABI on 
+       linux, since the shell script is not portable, and libtool
+       deficiencies may distort the ABI on other platforms.  (#161741)
+
 2004-12-21  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/goption.c (print_entry): Don't show
index 3515a4e..7a1e990 100644 (file)
@@ -1,3 +1,11 @@
+2004-12-27  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Add an OS_LINUX conditional.
+
+       * glib/Makefile.am (TESTS): Only check the ABI on 
+       linux, since the shell script is not portable, and libtool
+       deficiencies may distort the ABI on other platforms.  (#161741)
+
 2004-12-21  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/goption.c (print_entry): Don't show
index 3515a4e..7a1e990 100644 (file)
@@ -1,3 +1,11 @@
+2004-12-27  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Add an OS_LINUX conditional.
+
+       * glib/Makefile.am (TESTS): Only check the ABI on 
+       linux, since the shell script is not portable, and libtool
+       deficiencies may distort the ABI on other platforms.  (#161741)
+
 2004-12-21  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/goption.c (print_entry): Don't show
index 3515a4e..7a1e990 100644 (file)
@@ -1,3 +1,11 @@
+2004-12-27  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Add an OS_LINUX conditional.
+
+       * glib/Makefile.am (TESTS): Only check the ABI on 
+       linux, since the shell script is not portable, and libtool
+       deficiencies may distort the ABI on other platforms.  (#161741)
+
 2004-12-21  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/goption.c (print_entry): Don't show
index 45df862..a001976 100644 (file)
@@ -147,9 +147,17 @@ case "$host" in
     glib_pid_type=int
     ;;
 esac
+case $host in
+  *-*-linux*)
+    glib_os_linux=yes
+    ;;
+esac
+
+
 AC_MSG_RESULT([$glib_native_win32])
 AM_CONDITIONAL(OS_WIN32, [test "$glib_native_win32" = "yes"])
 AM_CONDITIONAL(OS_UNIX, [test "$glib_native_win32" != "yes"])
+AM_CONDITIONAL(OS_LINUX, [test "$glib_os_linux" = "yes"])
 AC_SUBST(G_LIB_WIN32_RESOURCE)
 AC_SUBST(G_MODULE_WIN32_RESOURCE)
 AC_SUBST(G_OBJECT_WIN32_RESOURCE)
index c07dac4..bae30d3 100644 (file)
@@ -19,7 +19,7 @@ glib.def: glib.symbols
 galias.h: glib.symbols
          $(PERL) $(srcdir)/makegalias.pl < $(srcdir)/glib.symbols > galias.h
 
-if OS_UNIX
+if OS_LINUX
 TESTS = abicheck.sh
 endif
 
index 484d0fd..6ec362d 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-27  Matthias Clasen  <mclasen@redhat.com>
+
+       * Makefile.am: Only check the ABI on linux, since
+       the shell script is not portable.  (#161734, Adrian Bunk)
+
 2004-12-16  Matthias Clasen  <mclasen@redhat.com>
 
        * === Released 2.6.0 ===
index e2ee042..3c2e1d9 100644 (file)
@@ -19,7 +19,7 @@ gobject.def: gobject.symbols
 gobjectalias.h: gobject.symbols
        $(PERL) $(srcdir)/makegobjectalias.pl < $(srcdir)/gobject.symbols > gobjectalias.h
 
-if OS_UNIX
+if OS_LINUX
 TESTS = abicheck.sh
 endif