diff options
author | Tim Janik <timj@gtk.org> | 2000-05-12 15:23:16 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2000-05-12 15:23:16 +0000 |
commit | 1df2ec98cbdc4789418f9652c9c90855c86b9dad (patch) | |
tree | f055b3ff5d2fb11bf6adc2715c0b7db706924fa6 /configure.in | |
parent | 397ad5881e972da23eccca1b20bbcfe2e8648f11 (diff) | |
download | glib-1df2ec98cbdc4789418f9652c9c90855c86b9dad.tar.gz |
added gobject
Fri Apr 28 23:54:35 2000 Tim Janik <timj@gtk.org>
* setup things for a new sub-library libgobject:
* Makefile.am (SUBDIRS): added gobject
* glib-config.in: feature -lgobject.
* configure.in (AC_OUTPUT): generate gobject/Makefile.
* glib.m4 (AM_PATH_GLIB): feature gobject module.
* glib.spec.in: added %{prefix}/lib/libgobject-1.3.so.*
Fri Apr 28 21:41:49 2000 Tim Janik <timj@gtk.org>
* glib.h: added G_STRLOC macro.
G_STRUCT_OFFSET(): signedness corrections.
(G_CSET_DIGITS): list 0-9.
* gscanner.c (g_scanner_config_template): use G_CSET_DIGITS.
* glib.h:
* gstrfuncs.c:
(g_strdown):
(g_strup):
(g_strreverse): return the modified string instead of void, so
calls to these functions can be nested.
(g_strcanon): new function, canonicalizes string according to
a given character set.
Fri Apr 28 19:45:16 2000 Tim Janik <timj@gtk.org>
* gasyncqueue.c (g_async_queue_unref): get rid of an unused variable.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 39f205f0c..2c5af751d 100644 --- a/configure.in +++ b/configure.in @@ -19,7 +19,7 @@ dnl we need to AC_DIVERT_PUSH/AC_DIVERT_POP these variable definitions so they dnl are available for $ac_help expansion (don't we all *love* autoconf?) AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl # -# The following version number definitions apply to GLib, GModule and GThread +# The following version number definitions apply to GLib, GModule, GObject and GThread # as a whole, so if changes occoured in any of them, they are all # treated with the same interface and binary age. # @@ -305,7 +305,7 @@ esac # check for bytesex stuff AC_C_BIGENDIAN -# xhexk for header files +# check for header files AC_CHECK_HEADERS(float.h, AC_DEFINE(HAVE_FLOAT_H)) AC_CHECK_HEADERS(limits.h, AC_DEFINE(HAVE_LIMITS_H)) AC_CHECK_HEADERS(pwd.h, AC_DEFINE(HAVE_PWD_H)) @@ -318,6 +318,21 @@ AC_CHECK_HEADERS(unistd.h, AC_DEFINE(HAVE_UNISTD_H)) AC_CHECK_HEADERS(values.h, AC_DEFINE(HAVE_VALUES_H)) AC_CHECK_HEADERS(stdint.h, AC_DEFINE(HAVE_VALUES_H)) +AC_MSG_CHECKING(whether make is GNU Make) +STRIP_BEGIN= +STRIP_END= +if $ac_make --version 2>/dev/null | grep '^GNU Make ' >/dev/null ; then + STRIP_BEGIN='$(strip $(STRIP_DUMMY)' + STRIP_END=')' + AC_MSG_RESULT(yes) +else + AC_MSG_RESULT(no) +fi +STRIP_DUMMY= +AC_SUBST(STRIP_DUMMY) +AC_SUBST(STRIP_BEGIN) +AC_SUBST(STRIP_END) + # check additional type sizes size_includes=[" #include <stdarg.h> @@ -1503,6 +1518,7 @@ Makefile glib-config gmodule/gmoduleconf.h gmodule/Makefile +gobject/Makefile gthread/Makefile docs/Makefile docs/glib-config.1 |