summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create branch 'new_mdi'.new_mdinobody2005-03-11103-16593/+0
| | | | svn path=/branches/new_mdi/; revision=3580
* I used wrong ChangeLogStepan Kasal2005-03-112-5/+5
| | | | svn path=/trunk/; revision=3508
* fix the URL of automake-1.4Stepan Kasal2005-02-182-2/+7
| | | | svn path=/trunk/; revision=3490
* update usage with a note about adding the macro dir to ACLOCAL_AMFLAGS ifJames Henstridge2005-02-111-2/+4
| | | | | | AC_CONFIG_MACRO_DIR is being used. svn path=/trunk/; revision=3489
* preserve COPYING and INSTALL files over the "automake --force" call. FixesJames Henstridge2005-02-113-11/+17
| | | | | | | | | 2005-02-11 James Henstridge <james@jamesh.id.au> * gnome-autogen.sh: preserve COPYING and INSTALL files over the "automake --force" call. Fixes bug #161916. svn path=/trunk/; revision=3488
* Fix the (AC|IT)_PROG_INTLTOOL support for both places where we grep for itRodney Dawes2005-01-222-5/+20
| | | | | | | | | | | | | | 2005-01-22 Rodney Dawes <dobey@novell.com> * gnome-autogen.sh: Fix the (AC|IT)_PROG_INTLTOOL support for both places where we grep for it (version_check): If we are checking for automake = 1.4, then make sure we error out with that error when we find it, and not >= 1.4 since we don't actually check for >= 1.4 Fixes #129903 svn path=/trunk/; revision=3487
* add some code to add the directory given to AC_CONFIG_MACRO_DIR toJames Henstridge2005-01-033-1/+22
| | | | | | | | | | | | 2005-01-03 James Henstridge <james@jamesh.id.au> * macros2/gnome-common.m4 (GNOME_COMMON_INIT): add some code to add the directory given to AC_CONFIG_MACRO_DIR to ACLOCAL_FLAGS. * doc-build/xmldocs.make (clean-local-doc): add rule to clean up copied entities if srcdir!=builddir. svn path=/trunk/; revision=3486
* grep wants basic regexps, not extended ones: fix the regular expressionMariano Suárez-Alvarez2004-11-252-1/+6
| | | | | | | | | 2004-11-24 Mariano Suárez-Alvarez <mariano@gnome.org> * gnome-autogen.sh: grep wants basic regexps, not extended ones: fix the regular expression for INTLTOOL. svn path=/trunk/; revision=3485
* Add support for IT_PROG_INTLTOOL which deprecates AC_PROG_INTLTOOLRodney Dawes2004-11-242-1/+6
| | | | | | | | | 2004-11-24 Rodney Dawes <dobey@novell.com> * gnome-autogen.sh: Add support for IT_PROG_INTLTOOL which deprecates AC_PROG_INTLTOOL svn path=/trunk/; revision=3484
* Fix for automake1.4.Jordi Mallach2004-11-092-1/+11
| | | | svn path=/trunk/; revision=3483
* Call all the bootstrap programs (libtoolize, intltoolize, gtkdocize,Jordi Mallach2004-11-092-4/+10
| | | | | | | | | | 2004-11-09 Jordi Mallach <jordi@sindominio.net> * gnome-autogen.sh: Call all the bootstrap programs (libtoolize, intltoolize, gtkdocize, automake) using --force and --copy consistently. svn path=/trunk/; revision=3482
* get rid of the code that modified PATH, ACLOCAL_FLAGS and LD_LIBRARY_PATHJames Henstridge2004-10-282-22/+6
| | | | | | | | | | | | 2004-10-28 James Henstridge <james@jamesh.id.au> * gnome-autogen.sh: get rid of the code that modified PATH, ACLOCAL_FLAGS and LD_LIBRARY_PATH based on $GNOME2_PATH, since this was broken. It could cause configure tests to pass, when the subsequent build would fail due to path problems. For more details, see bug #140210. svn path=/trunk/; revision=3481
* if the directory is read only, skip it. This helps in cases where aJames Henstridge2004-10-282-2/+8
| | | | | | | | | | 2004-10-28 James Henstridge <james@jamesh.id.au> * gnome-autogen.sh: if the directory is read only, skip it. This helps in cases where a directory from a failed "make distcheck" is lying around. Should fix bug #136093. svn path=/trunk/; revision=3480
* fix up the AC_CONFIG_MACRO_DIR check to work with sub-packageJames Henstridge2004-10-282-1/+6
| | | | | | | | | 2004-10-28 James Henstridge <james@jamesh.id.au> * gnome-autogen.sh (m4dir): fix up the AC_CONFIG_MACRO_DIR check to work with sub-package configure.in's. svn path=/trunk/; revision=3479
* if AC_CONFIG_MACRO_DIR() is used in configure.ac, pass that directory toJames Henstridge2004-10-272-4/+19
| | | | | | | | | | | 2004-10-27 James Henstridge <james@jamesh.id.au> * gnome-autogen.sh (ACLOCAL): if AC_CONFIG_MACRO_DIR() is used in configure.ac, pass that directory to aclocal. Run libtoolize if the configure.ac file calls LT_INIT (the new name for AC_PROG_LIBTOOL in libtool-2.0). svn path=/trunk/; revision=3478
* use $(DESTDIR) in uninstall rule. This is needed to allow packages toJames Henstridge2004-10-062-4/+10
| | | | | | | | | | 2004-10-06 James Henstridge <james@jamesh.id.au> * doc-build/omf.make (uninstall-local-omf): use $(DESTDIR) in uninstall rule. This is needed to allow packages to distcheck with newer versions of automake. svn path=/trunk/; revision=3477
* bump version number to 2.8.0GNOME_COMMON_2_8_0James Henstridge2004-09-142-1/+5
| | | | | | | | 2004-09-14 James Henstridge <james@jamesh.id.au> * configure.in: bump version number to 2.8.0 svn path=/trunk/; revision=3475
* fix up error message when a required M4 file isn't found. Fixes bugJames Henstridge2004-08-302-11/+9
| | | | | | | | | | | | 2004-08-30 James Henstridge <james@jamesh.id.au> * macros2/gnome-autogen.sh: fix up error message when a required M4 file isn't found. Fixes bug #147417. * macros2/gnome-autogen.sh: Revert Rodney's changes, since glib-gettextize has been fixed on the HEAD and 2.4 branches. svn path=/trunk/; revision=3474
* Add some foo to handle automake-1.9.x too.Kjartan Maraas2004-08-162-4/+9
| | | | | | | | 2004-08-16 Kjartan Maraas <kmaraas@gnome.org> * gnome-autogen.sh: Add some foo to handle automake-1.9.x too. svn path=/trunk/; revision=3473
* Glibify a bit more. Closes #147618.Benoît Dejean2004-07-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/reference.texi: * include/glibtop/command.h: * include/glibtop/glib-arrays.h: * include/glibtop/proclist.h: * lib/glib-arrays.c: (glibtop_get_proclist_as_array_l): * lib/lib.pl: * scripts/c_types.pl: * src/daemon/main.c: (handle_parent_connection): * src/daemon/slave.c: (handle_slave_connection): * support/mkstemp.c: * sysdeps/aix/proclist.c: (glibtop_get_proclist_s): * sysdeps/freebsd/cpu.c: (glibtop_get_cpu_p): * sysdeps/freebsd/prockernel.c: (glibtop_get_proc_kernel_p): * sysdeps/freebsd/proclist.c: (glibtop_get_proclist_p): * sysdeps/freebsd/procmem.c: (glibtop_get_proc_mem_p): * sysdeps/kernel/proclist.c: (glibtop_get_proclist_s): * sysdeps/linux/proclist.c: (glibtop_get_proclist_s): * sysdeps/osf1/proclist.c: (glibtop_get_proclist_p): * sysdeps/solaris/proclist.c: (glibtop_get_proclist_s): * sysdeps/stub/proclist.c: (glibtop_get_proclist_s): * sysdeps/stub_suid/proclist.c: (glibtop_get_proclist_p): * sysdeps/sun4/proclist.c: (glibtop_get_proclist_p): Glibify a bit more. Closes #147618. svn path=/trunk/; revision=3455
* *** empty log message ***Benoît Dejean2004-06-181-12/+12
| | | | svn path=/trunk/; revision=3452
* Add code to check for mkinstalldirs in the shared automake filesRodney Dawes2004-06-102-0/+18
| | | | | | | | | | | | | 2004-06-10 Rodney Dawes <dobey@ximian.com> * macros2/gnome-autogen.sh: Add code to check for mkinstalldirs in the shared automake files directory, and copy it in if we are using AM_GLIB_GNU_GETTEXT Fixes #144069 CVS: ---------------------------------------------------------------------- svn path=/trunk/; revision=3451
* whitespace clean up.Benoît Dejean2004-06-0915-53/+53
| | | | | | * *.{c,h} : whitespace clean up. svn path=/trunk/; revision=3450
* Cleaned.Benoît Dejean2004-06-062-5/+2
| | | | | | | | | * lib/parameter.c: * support/popt.c: (poptGetContext): Cleaned. * support/vsnprintf.c: s/strncpy/g_strlcpy svn path=/trunk/; revision=3449
* Many apologies, building from a clean tree generates VERSION andRichard Kinder2004-06-042-7/+2
| | | | | | PACKAGE correctly. Reverting previous commit. svn path=/trunk/; revision=3448
* Make gnome-doc-common work properly.Richard Kinder2004-06-042-2/+7
| | | | svn path=/trunk/; revision=3447
* simplify documentation, and bring it into line with the current stateJames Henstridge2004-05-261-70/+29
| | | | | | of gnome-common. svn path=/trunk/; revision=3446
* remove a few more unused files.James Henstridge2004-05-264-5/+1
| | | | svn path=/trunk/; revision=3445
* delete some files that were unused after the reorganisationJames Henstridge2004-05-264-61/+0
| | | | svn path=/trunk/; revision=3444
* some small cleanups.James Henstridge2004-05-2610-423/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2004-05-26 James Henstridge <james@daa.com.au> * macros2/gnome-compiler-warnings.m4: some small cleanups. * macros2/gnome-common.m4 (GNOME_COMMON_INIT): since caching is turned off in all recent Autoconfs, it doesn't make sense to use it. Change implementation to instead make sure ${ACLOCAL_FLAGS} gets passed to aclocal when called from the makefile. * macros2/Makefile.am: alter installation so that it puts the macros directly into $(datadir)/aclocal instead of $(datadir)/aclocal/gnome2-macros * autogen.sh (REQUIRED_AUTOMAKE_VERSION): use a modern version of automake. * macros2/gnome-compiler-flags.m4: move from compiler-flags.m4 to reduce chance of collisions. * macros2/gnome-autogen.sh: move from autogen.sh * Makefile.am (SUBDIRS): don't build bin/ and macros/ directories. * configure.in: don't create makefiles for bin/ and macros/ directories. Since we don't actually build the support/ directory (since 2001), remove the matching parts from the configure script. svn path=/trunk/; revision=3443
* simplify and update spec file.gnome-2-6-anchorJames Henstridge2004-05-132-64/+25
| | | | | | | | 2004-05-13 James Henstridge <james@daa.com.au> * gnome-common.spec.in: simplify and update spec file. svn path=/trunk/; revision=3440
* Change the order the various tools are called in to match that ofJames Henstridge2004-05-132-18/+35
| | | | | | | | | 2004-05-13 James Henstridge <james@daa.com.au> * autogen.sh: Change the order the various tools are called in to match that of autoconf's autoupdate tool. See bug 138584. svn path=/trunk/; revision=3439
* fix bug #135557Sven Herzberg2004-02-272-1/+5
| | | | svn path=/trunk/; revision=3438
* fix one last occurrence of not using $(DESTDIR).Mark McLoughlin2004-02-172-1/+6
| | | | | | | | | 2004-02-17 Mark McLoughlin <mark@skynet.ie> * doc-build/xmldocs.make: fix one last occurrence of not using $(DESTDIR). svn path=/trunk/; revision=3437
* Use automake-1.8 if available. Patch from alexander.winston@comcast.netMalcolm Tredinnick2004-01-312-3/+9
| | | | | | | * autogen.sh: Use automake-1.8 if available. Patch from alexander.winston@comcast.net (Alexander Winston). Bug #132966. svn path=/trunk/; revision=3436
* Deprecate the use of GNOME2_DIR and allow the use of GNOME2_PATH (bugMalcolm Tredinnick2004-01-252-10/+27
| | | | | | | * autogen.sh: Deprecate the use of GNOME2_DIR and allow the use of GNOME2_PATH (bug #130516). svn path=/trunk/; revision=3435
* Run intltoolize after automake, since intltoolize wants mkinstalldirs now.Malcolm Tredinnick2004-01-022-4/+12
| | | | | | | * autogen.sh: Run intltoolize after automake, since intltoolize wants mkinstalldirs now. Should fix bugs #130309 and #130366. svn path=/trunk/; revision=3434
* Change the use of head to be 'head -n -1', since the GNU version of headMalcolm Tredinnick2003-12-122-1/+8
| | | | | | | | | * autogen.sh: Change the use of head to be 'head -n -1', since the GNU version of head appears to have changed behaviour between version 5.0 and 5.0.9 somewhere. This should be portable across all versions now. Fixed bug #128867. svn path=/trunk/; revision=3433
* Release 0.30.0Carlos Garnacho Parro2003-12-091-0/+4
| | | | | | | | 2003-12-09 Carlos Garnacho Parro <garnacho@tuxerver.net> * Release 0.30.0 svn path=/trunk/; revision=3072
* Update automake checks to check incremental versions in the correct order,Rodney Dawes2003-12-082-2/+7
| | | | | | | | | 2003-12-08 Rodney Dawes <dobey@free.fr> * autogen.sh: Update automake checks to check incremental versions in the correct order, Fixes #128691 svn path=/trunk/; revision=3071
* Replace use of -or in a find command with -o. Makes things work for peopleMalcolm Tredinnick2003-11-192-1/+7
| | | | | | | | * autogen.sh: Replace use of -or in a find command with -o. Makes things work for people with less functional versions of find. Fixes bug #127354 reported by Rolf Sponsel. svn path=/trunk/; revision=3070
* Removed ENABLE_WERROR and changed name to GNOME_MAINTAINER_MODE_DEFINES.32003-11-032-6/+8
| | | | | | | | | 2003-11-03 <clahey@ximian.com> * gnome-common.m4: Removed ENABLE_WERROR and changed name to GNOME_MAINTAINER_MODE_DEFINES. svn path=/trunk/; revision=3069
* Make version checking work, as pointed out by Michael H Schimek in bugMalcolm Tredinnick2003-11-012-1/+6
| | | | | | | * autogen.sh: Make version checking work, as pointed out by Michael H Schimek in bug #125818. svn path=/trunk/; revision=3068
* Changed name of new macro to AM_MAINTAINER_MODE_DEFINES and added12003-10-312-5/+13
| | | | | | | | | 2003-10-31 <clahey@ximian.com> * gnome-common.m4: Changed name of new macro to AM_MAINTAINER_MODE_DEFINES and added definition for ENABLE_WERROR. svn path=/trunk/; revision=3067
* New macro to disable deprecated functions and widgets when maintainer mode12003-10-312-0/+18
| | | | | | | | | 2003-10-31 <clahey@ximian.com> * gnome-common.m4: New macro to disable deprecated functions and widgets when maintainer mode is on. svn path=/trunk/; revision=3066
* make it compileBastien Nocera2003-10-202-4/+10
| | | | | | | | 2003-10-20 Bastien Nocera <hadess@hadess.net> * configure.in: make it compile svn path=/trunk/; revision=3062
* Reverted libgtop changes. It's a common module and I should not modify it.Carlos Perelló Marín2003-10-1910-330/+379
| | | | | | | | | | 2003-10-19 Carlos Perelló Marín <carlos@gnome.org> * support/*: Reverted libgtop changes. It's a common module and I should not modify it. * Added/removed files. Now the move should be done. svn path=/trunk/; revision=3060
* libgtop-GNOME-2-0-branch moved to HEAD.Carlos Perelló Marín2003-10-1910-379/+330
| | | | | | | | 2003-10-19 Carlos Perelló Marín <carlos@gnome.org> * libgtop-GNOME-2-0-branch moved to HEAD. svn path=/trunk/; revision=3059
* Distribute README in place of the non-existent ChangeLog. Doh!GNOME_COMMON_2_4_0Malcolm Tredinnick2003-10-024-3/+13
| | | | | | | | | | * doc-build/Makefile.am: Distribute README in place of the non-existent ChangeLog. Doh! * autogen.sh: Use the GNOME 2 autogen.sh script by default. * configure.in: Version number bumped. svn path=/trunk/; revision=3057
* Define WARN_CXXFLAGS instead of overwriting CXXFLAGS (like WARN_FLAGS).Marco Pesenti Gritti2003-08-232-5/+10
| | | | | | | | | | | 2003-08-23 Marco Pesenti Gritti <marco@gnome.org> * macros2/compiler-flags.m4: Define WARN_CXXFLAGS instead of overwriting CXXFLAGS (like WARN_FLAGS). svn path=/trunk/; revision=3055