mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-23 22:16:16 +01:00
Add an OS_LINUX conditional.
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)
This commit is contained in:
parent
543cd4b10f
commit
b1f6eaf987
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
||||
|
@ -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 ===
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user