Add an OS_LINUX conditional.

2005-01-13  Matthias Clasen  <mclasen@redhat.com>

	* configure.in: Add an OS_LINUX conditional.

	* gdk/Makefile.am (TESTS):
	* gdk-pixbuf/Makefile.am (TESTS):
	* gtk/Makefile.am (TESTS): Only run abicheck on Linux.  (#163917,
	Roger Leigh)
This commit is contained in:
Matthias Clasen 2005-01-13 15:19:27 +00:00 committed by Matthias Clasen
parent 52a86bc677
commit 130b7826b5
7 changed files with 36 additions and 3 deletions

View File

@ -1,3 +1,12 @@
2005-01-13 Matthias Clasen <mclasen@redhat.com>
* configure.in: Add an OS_LINUX conditional.
* gdk/Makefile.am (TESTS):
* gdk-pixbuf/Makefile.am (TESTS):
* gtk/Makefile.am (TESTS): Only run abicheck on Linux. (#163917,
Roger Leigh)
2005-01-13 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreeview.c: (gtk_tree_view_class_init),

View File

@ -1,3 +1,12 @@
2005-01-13 Matthias Clasen <mclasen@redhat.com>
* configure.in: Add an OS_LINUX conditional.
* gdk/Makefile.am (TESTS):
* gdk-pixbuf/Makefile.am (TESTS):
* gtk/Makefile.am (TESTS): Only run abicheck on Linux. (#163917,
Roger Leigh)
2005-01-13 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreeview.c: (gtk_tree_view_class_init),

View File

@ -1,3 +1,12 @@
2005-01-13 Matthias Clasen <mclasen@redhat.com>
* configure.in: Add an OS_LINUX conditional.
* gdk/Makefile.am (TESTS):
* gdk-pixbuf/Makefile.am (TESTS):
* gtk/Makefile.am (TESTS): Only run abicheck on Linux. (#163917,
Roger Leigh)
2005-01-13 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreeview.c: (gtk_tree_view_class_init),

View File

@ -123,6 +123,11 @@ case "$host" in
esac
AC_MSG_RESULT([$os_win32])
case $host in
*-*-linux*)
os_linux=yes
;;
esac
dnl Initialize libtool
AC_PROG_CC
AM_DISABLE_STATIC
@ -162,6 +167,7 @@ AM_CONDITIONAL(PLATFORM_WIN32, test "$platform_win32" = "yes")
AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
AM_CONDITIONAL(OS_UNIX, test "$os_win32" != "yes")
AM_CONDITIONAL(OS_LINUX, test "$os_linux" = "yes")
if test "$os_win32" = "yes"; then
AC_CHECK_PROG(ms_librarian, lib.exe, yes, no)

View File

@ -52,7 +52,7 @@ gdk_pixbuf.def: gdk-pixbuf.symbols
gdk-pixbuf-alias.h: gdk-pixbuf.symbols
$(PERL) $(srcdir)/makegdkpixbufalias.pl < $(srcdir)/gdk-pixbuf.symbols > gdk-pixbuf-alias.h
if OS_UNIX
if OS_LINUX
TESTS = abicheck.sh
endif

View File

@ -182,7 +182,7 @@ gdk.def: gdk.symbols
gdkalias.h: gdk.symbols
$(PERL) $(srcdir)/makegdkalias.pl < $(srcdir)/gdk.symbols > gdkalias.h
if OS_UNIX
if OS_LINUX
TESTS = abicheck.sh
endif

View File

@ -80,7 +80,7 @@ gtk.def: gtk.symbols
gtkalias.h: gtk.symbols
$(PERL) $(srcdir)/makegtkalias.pl < $(srcdir)/gtk.symbols > gtkalias.h
if OS_UNIX
if OS_LINUX
TESTS = abicheck.sh
endif