1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
--- a/configure.in 2024-07-20 18:29:54.970614466 +0200
+++ b/configure.in 2024-07-10 08:54:01.816936770 +0200
@@ -1,5 +1,5 @@
-AC_PREREQ(2.60)
-AC_INIT(gnome-system-tools, 3.0.0, http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-system-tools)
+AC_PREREQ([2.72])
+AC_INIT([gnome-system-tools],[3.0.0],[http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-system-tools])
AC_CONFIG_SRCDIR(src/common/gst-tool.c)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
@@ -16,12 +16,20 @@
dnl Checking the above
AC_CONFIG_SRCDIR(src/common/gst-tool.c)
-AM_PROG_LIBTOOL
+LT_INIT
-AC_ISC_POSIX
+AC_SEARCH_LIBS([strerror],[cposix])
AC_PROG_CC
AM_PROG_CC_STDC
-AC_HEADER_STDC
+m4_warn([obsolete],
+[The preprocessor macro 'STDC_HEADERS' is obsolete.
+ Except in unusual embedded environments, you can safely include all
+ C89 headers unconditionally.])dnl
+# Autoupdate added the next two lines to ensure that your configure
+# script's behavior did not change. They are probably safe to remove.
+AC_CHECK_INCLUDES_DEFAULT
+AC_PROG_EGREP
+
AC_PROG_INSTALL
AC_PROG_MAKE_SET
@@ -161,8 +169,6 @@
dnl Translations
dnl ========================================================
-AM_GNU_GETTEXT([external])
-AM_GNU_GETTEXT_VERSION([0.17])
GETTEXT_PACKAGE=gnome-system-tools
AC_SUBST(GETTEXT_PACKAGE) # needed by gettext in po directory
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",[fix])
@@ -260,7 +266,7 @@
if test "x$enable_nautilus" = "xyes"; then
PKG_CHECK_MODULES(NAUTILUS,[
- libnautilus-extension >= 2.9.3
+ libnautilus-extension-4 >= 2.9.3
liboobs-1 >= $LIBOOBS_REQUIRED
gio-2.0 >= $GLIB_REQUIRED
])
@@ -270,14 +276,14 @@
AC_SUBST(NAUTILUS_CFLAGS)
dnl Determine the install dir for nautilus extension.
-NAUTILUSDIR=`pkg-config --variable=extensiondir libnautilus-extension`
+NAUTILUSDIR=`pkg-config --variable=extensiondir libnautilus-extension-4`
AC_SUBST(NAUTILUSDIR)
dnl ===========================
dnl END: NAUTILUS EXTENSION
dnl ===========================
-AC_OUTPUT([
+AC_CONFIG_FILES([
Makefile
doc/Makefile
doc/network/Makefile
@@ -320,6 +326,7 @@
po/Makefile.in
gnome-system-tools.pc
])
+AC_OUTPUT
echo "
|