GNOME/python configure detection

svn: r2002
This commit is contained in:
Don Allingham 2003-08-14 03:53:41 +00:00
parent b0697ae037
commit efdad54c62
16 changed files with 67 additions and 142 deletions

View File

@ -73,18 +73,13 @@ DEPDIR = @DEPDIR@
GNOMEHELP = @GNOMEHELP@ GNOMEHELP = @GNOMEHELP@
GNOMEINC = @GNOMEINC@ GNOMEINC = @GNOMEINC@
GNOMELIB = @GNOMELIB@ GNOMELIB = @GNOMELIB@
GPREF = @GPREF@
GPREFIX = @GPREFIX@ GPREFIX = @GPREFIX@
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@ INTLLIBS = @INTLLIBS@
LANGUAGES = @LANGUAGES@ LANGUAGES = @LANGUAGES@
LIBS = @LIBS@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
P15_INCLUDES = @P15_INCLUDES@
P20_INCLUDES = @P20_INCLUDES@
P21_INCLUDES = @P21_INCLUDES@
P22_INCLUDES = @P22_INCLUDES@ P22_INCLUDES = @P22_INCLUDES@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
POFILES = @POFILES@ POFILES = @POFILES@

71
gramps2/configure vendored
View File

@ -3852,6 +3852,11 @@ try:
pygtk.require('2.0') pygtk.require('2.0')
except ImportError: except ImportError:
pass pass
def out(str):
f = open('conftest.out', 'w')
f.write(str)
f.close()
" "
@ -3861,18 +3866,14 @@ cat > conftest.py <<EOF
$pygtk_require $pygtk_require
try: try:
import gobject import gobject
f = open("conftest.out", "w") out("YES")
f.write("YES")
f.close()
except ImportError: except ImportError:
f = open("conftest.out", "w") out("No")
f.write("NO")
f.close()
EOF EOF
$PYTHON conftest.py $PYTHON conftest.py
has_pygtk=`cat conftest.out` has_pygtk=`cat conftest.out`
rm -f conftest.out conftest.py rm -f conftest.out conftest.py
if test "YES" != $has_pygtk if test YES != "$has_pygtk"
then then
{ { echo "$as_me:$LINENO: error: { { echo "$as_me:$LINENO: error:
@ -3890,19 +3891,19 @@ echo $ECHO_N "checking Python bindings for GNOME... $ECHO_C" >&6
cat > conftest.py <<EOF cat > conftest.py <<EOF
$pygtk_require $pygtk_require
try: try:
import gnome, gnome.ui import gnome
f = open("conftest.out", "w") # Do not import gnome.ui, this can kill python if the
f.write("YES") # display cannot be opened. Just search it.
f.close() import imp
imp.find_module('gnome/ui')
out("YES")
except ImportError: except ImportError:
f = open("conftest.out", "w") out("NO")
f.write("NO")
f.close()
EOF EOF
$PYTHON conftest.py $PYTHON conftest.py
has_pygnome=`cat conftest.out` has_pygnome=`cat conftest.out`
rm -f conftest.out conftest.py rm -f conftest.out conftest.py
if test "YES" != $has_pygnome if test YES != "$has_pygnome"
then then
{ { echo "$as_me:$LINENO: error: { { echo "$as_me:$LINENO: error:
**** The python bindings for GNOME 2.0 (gnome-python2) could not be found." >&5 **** The python bindings for GNOME 2.0 (gnome-python2) could not be found." >&5
@ -3919,18 +3920,14 @@ cat > conftest.py <<EOF
$pygtk_require $pygtk_require
try: try:
import gconf import gconf
f = open("conftest.out", "w") out("YES")
f.write("YES")
f.close()
except ImportError: except ImportError:
f = open("conftest.out", "w") out("NO")
f.write("NO")
f.close()
EOF EOF
$PYTHON conftest.py $PYTHON conftest.py
has_gconf=`cat conftest.out` has_gconf=`cat conftest.out`
rm -f conftest.out conftest.py rm -f conftest.out conftest.py
if test "YES" != $has_gconf if test YES != "$has_gconf"
then then
{ { echo "$as_me:$LINENO: error: { { echo "$as_me:$LINENO: error:
**** The python bindings for gconf (gnome-python2-gconf) could not be found." >&5 **** The python bindings for gconf (gnome-python2-gconf) could not be found." >&5
@ -3946,19 +3943,18 @@ echo $ECHO_N "checking Python bindings for GNOME canvas... $ECHO_C" >&6
cat > conftest.py <<EOF cat > conftest.py <<EOF
$pygtk_require $pygtk_require
try: try:
import gnome.canvas # Do not import gnome.canvas, this can raise a RuntimeError if the
f = open("conftest.out", "w") # display cannot be opened. Just search it.
f.write("YES") import imp
f.close() imp.find_module('gnome/canvas')
out("YES")
except ImportError: except ImportError:
f = open("conftest.out", "w") out("NO")
f.write("NO")
f.close()
EOF EOF
$PYTHON conftest.py $PYTHON conftest.py
has_canvas=`cat conftest.out` has_canvas=`cat conftest.out`
rm -f conftest.out conftest.py rm -f conftest.out conftest.py
if test "YES" != $has_canvas if test YES != "$has_canvas"
then then
{ { echo "$as_me:$LINENO: error: { { echo "$as_me:$LINENO: error:
**** The python bindings for GNOME canvas (gnome-python2-canvas) could not be found." >&5 **** The python bindings for GNOME canvas (gnome-python2-canvas) could not be found." >&5
@ -3974,19 +3970,18 @@ echo $ECHO_N "checking Python bindin for glade... $ECHO_C" >&6
cat > conftest.py <<EOF cat > conftest.py <<EOF
$pygtk_require $pygtk_require
try: try:
import gtk.glade # Do not import gtk.glade, this can raise a RuntimeError if the
f = open("conftest.out", "w") # display cannot be opened. Just search it.
f.write("YES") import imp
f.close() imp.find_module('gtk/glade')
out("YES")
except ImportError: except ImportError:
f = open("conftest.out", "w") out("NO")
f.write("NO")
f.close()
EOF EOF
$PYTHON conftest.py $PYTHON conftest.py
has_pygtk=`cat conftest.out` has_pygtk=`cat conftest.out`
rm -f conftest.out conftest.py rm -f conftest.out conftest.py
if test "YES" != $has_pygtk if test YES != "$has_pygtk"
then then
{ { echo "$as_me:$LINENO: error: { { echo "$as_me:$LINENO: error:

View File

@ -75,6 +75,11 @@ try:
pygtk.require('2.0') pygtk.require('2.0')
except ImportError: except ImportError:
pass pass
def out(str):
f = open('conftest.out', 'w')
f.write(str)
f.close()
" "
dnl Check if python bindings for gtk are installed dnl Check if python bindings for gtk are installed
@ -84,18 +89,14 @@ cat > conftest.py <<EOF
$pygtk_require $pygtk_require
try: try:
import gobject import gobject
f = open("conftest.out", "w") out("YES")
f.write("YES")
f.close()
except ImportError: except ImportError:
f = open("conftest.out", "w") out("No")
f.write("NO")
f.close()
EOF EOF
$PYTHON conftest.py $PYTHON conftest.py
has_pygtk=`cat conftest.out` has_pygtk=`cat conftest.out`
rm -f conftest.out conftest.py rm -f conftest.out conftest.py
if test "YES" != $has_pygtk if test YES != "$has_pygtk"
then then
AC_MSG_ERROR([ AC_MSG_ERROR([
@ -107,19 +108,19 @@ AC_MSG_CHECKING(Python bindings for GNOME)
cat > conftest.py <<EOF cat > conftest.py <<EOF
$pygtk_require $pygtk_require
try: try:
import gnome, gnome.ui import gnome
f = open("conftest.out", "w") # Do not import gnome.ui, this can kill python if the
f.write("YES") # display cannot be opened. Just search it.
f.close() import imp
imp.find_module('gnome/ui')
out("YES")
except ImportError: except ImportError:
f = open("conftest.out", "w") out("NO")
f.write("NO")
f.close()
EOF EOF
$PYTHON conftest.py $PYTHON conftest.py
has_pygnome=`cat conftest.out` has_pygnome=`cat conftest.out`
rm -f conftest.out conftest.py rm -f conftest.out conftest.py
if test "YES" != $has_pygnome if test YES != "$has_pygnome"
then then
AC_MSG_ERROR([ AC_MSG_ERROR([
**** The python bindings for GNOME 2.0 (gnome-python2) could not be found.]) **** The python bindings for GNOME 2.0 (gnome-python2) could not be found.])
@ -131,18 +132,14 @@ cat > conftest.py <<EOF
$pygtk_require $pygtk_require
try: try:
import gconf import gconf
f = open("conftest.out", "w") out("YES")
f.write("YES")
f.close()
except ImportError: except ImportError:
f = open("conftest.out", "w") out("NO")
f.write("NO")
f.close()
EOF EOF
$PYTHON conftest.py $PYTHON conftest.py
has_gconf=`cat conftest.out` has_gconf=`cat conftest.out`
rm -f conftest.out conftest.py rm -f conftest.out conftest.py
if test "YES" != $has_gconf if test YES != "$has_gconf"
then then
AC_MSG_ERROR([ AC_MSG_ERROR([
**** The python bindings for gconf (gnome-python2-gconf) could not be found.]) **** The python bindings for gconf (gnome-python2-gconf) could not be found.])
@ -153,19 +150,18 @@ AC_MSG_CHECKING(Python bindings for GNOME canvas)
cat > conftest.py <<EOF cat > conftest.py <<EOF
$pygtk_require $pygtk_require
try: try:
import gnome.canvas # Do not import gnome.canvas, this can raise a RuntimeError if the
f = open("conftest.out", "w") # display cannot be opened. Just search it.
f.write("YES") import imp
f.close() imp.find_module('gnome/canvas')
out("YES")
except ImportError: except ImportError:
f = open("conftest.out", "w") out("NO")
f.write("NO")
f.close()
EOF EOF
$PYTHON conftest.py $PYTHON conftest.py
has_canvas=`cat conftest.out` has_canvas=`cat conftest.out`
rm -f conftest.out conftest.py rm -f conftest.out conftest.py
if test "YES" != $has_canvas if test YES != "$has_canvas"
then then
AC_MSG_ERROR([ AC_MSG_ERROR([
**** The python bindings for GNOME canvas (gnome-python2-canvas) could not be found.]) **** The python bindings for GNOME canvas (gnome-python2-canvas) could not be found.])
@ -176,19 +172,18 @@ AC_MSG_CHECKING(Python bindin for glade)
cat > conftest.py <<EOF cat > conftest.py <<EOF
$pygtk_require $pygtk_require
try: try:
import gtk.glade # Do not import gtk.glade, this can raise a RuntimeError if the
f = open("conftest.out", "w") # display cannot be opened. Just search it.
f.write("YES") import imp
f.close() imp.find_module('gtk/glade')
out("YES")
except ImportError: except ImportError:
f = open("conftest.out", "w") out("NO")
f.write("NO")
f.close()
EOF EOF
$PYTHON conftest.py $PYTHON conftest.py
has_pygtk=`cat conftest.out` has_pygtk=`cat conftest.out`
rm -f conftest.out conftest.py rm -f conftest.out conftest.py
if test "YES" != $has_pygtk if test YES != "$has_pygtk"
then then
AC_MSG_ERROR([ AC_MSG_ERROR([

View File

@ -73,18 +73,13 @@ DEPDIR = @DEPDIR@
GNOMEHELP = @GNOMEHELP@ GNOMEHELP = @GNOMEHELP@
GNOMEINC = @GNOMEINC@ GNOMEINC = @GNOMEINC@
GNOMELIB = @GNOMELIB@ GNOMELIB = @GNOMELIB@
GPREF = @GPREF@
GPREFIX = @GPREFIX@ GPREFIX = @GPREFIX@
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@ INTLLIBS = @INTLLIBS@
LANGUAGES = @LANGUAGES@ LANGUAGES = @LANGUAGES@
LIBS = @LIBS@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
P15_INCLUDES = @P15_INCLUDES@
P20_INCLUDES = @P20_INCLUDES@
P21_INCLUDES = @P21_INCLUDES@
P22_INCLUDES = @P22_INCLUDES@ P22_INCLUDES = @P22_INCLUDES@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
POFILES = @POFILES@ POFILES = @POFILES@

View File

@ -133,18 +133,13 @@ DEPDIR = @DEPDIR@
GNOMEHELP = @GNOMEHELP@ GNOMEHELP = @GNOMEHELP@
GNOMEINC = @GNOMEINC@ GNOMEINC = @GNOMEINC@
GNOMELIB = @GNOMELIB@ GNOMELIB = @GNOMELIB@
GPREF = @GPREF@
GPREFIX = @GPREFIX@ GPREFIX = @GPREFIX@
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@ INTLLIBS = @INTLLIBS@
LANGUAGES = @LANGUAGES@ LANGUAGES = @LANGUAGES@
LIBS = @LIBS@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
P15_INCLUDES = @P15_INCLUDES@
P20_INCLUDES = @P20_INCLUDES@
P21_INCLUDES = @P21_INCLUDES@
P22_INCLUDES = @P22_INCLUDES@ P22_INCLUDES = @P22_INCLUDES@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
POFILES = @POFILES@ POFILES = @POFILES@

View File

@ -73,18 +73,13 @@ DEPDIR = @DEPDIR@
GNOMEHELP = @GNOMEHELP@ GNOMEHELP = @GNOMEHELP@
GNOMEINC = @GNOMEINC@ GNOMEINC = @GNOMEINC@
GNOMELIB = @GNOMELIB@ GNOMELIB = @GNOMELIB@
GPREF = @GPREF@
GPREFIX = @GPREFIX@ GPREFIX = @GPREFIX@
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@ INTLLIBS = @INTLLIBS@
LANGUAGES = @LANGUAGES@ LANGUAGES = @LANGUAGES@
LIBS = @LIBS@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
P15_INCLUDES = @P15_INCLUDES@
P20_INCLUDES = @P20_INCLUDES@
P21_INCLUDES = @P21_INCLUDES@
P22_INCLUDES = @P22_INCLUDES@ P22_INCLUDES = @P22_INCLUDES@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
POFILES = @POFILES@ POFILES = @POFILES@

View File

@ -71,18 +71,13 @@ DEPDIR = @DEPDIR@
GNOMEHELP = @GNOMEHELP@ GNOMEHELP = @GNOMEHELP@
GNOMEINC = @GNOMEINC@ GNOMEINC = @GNOMEINC@
GNOMELIB = @GNOMELIB@ GNOMELIB = @GNOMELIB@
GPREF = @GPREF@
GPREFIX = @GPREFIX@ GPREFIX = @GPREFIX@
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@ INTLLIBS = @INTLLIBS@
LANGUAGES = @LANGUAGES@ LANGUAGES = @LANGUAGES@
LIBS = @LIBS@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
P15_INCLUDES = @P15_INCLUDES@
P20_INCLUDES = @P20_INCLUDES@
P21_INCLUDES = @P21_INCLUDES@
P22_INCLUDES = @P22_INCLUDES@ P22_INCLUDES = @P22_INCLUDES@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
POFILES = @POFILES@ POFILES = @POFILES@

View File

@ -72,18 +72,13 @@ DEPDIR = @DEPDIR@
GNOMEHELP = @GNOMEHELP@ GNOMEHELP = @GNOMEHELP@
GNOMEINC = @GNOMEINC@ GNOMEINC = @GNOMEINC@
GNOMELIB = @GNOMELIB@ GNOMELIB = @GNOMELIB@
GPREF = @GPREF@
GPREFIX = @GPREFIX@ GPREFIX = @GPREFIX@
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@ INTLLIBS = @INTLLIBS@
LANGUAGES = @LANGUAGES@ LANGUAGES = @LANGUAGES@
LIBS = @LIBS@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
P15_INCLUDES = @P15_INCLUDES@
P20_INCLUDES = @P20_INCLUDES@
P21_INCLUDES = @P21_INCLUDES@
P22_INCLUDES = @P22_INCLUDES@ P22_INCLUDES = @P22_INCLUDES@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
POFILES = @POFILES@ POFILES = @POFILES@

View File

@ -1,5 +1,5 @@
%define ver 0.9.3 %define ver 0.9.3
%define rel 0.CVS20030810 %define rel 0.CVS20030813
%define prefix /usr %define prefix /usr
%define localstatedir /var/lib %define localstatedir /var/lib
# Ensure that internal RPM macros for configure & makeinstall # Ensure that internal RPM macros for configure & makeinstall

View File

@ -71,18 +71,13 @@ DEPDIR = @DEPDIR@
GNOMEHELP = @GNOMEHELP@ GNOMEHELP = @GNOMEHELP@
GNOMEINC = @GNOMEINC@ GNOMEINC = @GNOMEINC@
GNOMELIB = @GNOMELIB@ GNOMELIB = @GNOMELIB@
GPREF = @GPREF@
GPREFIX = @GPREFIX@ GPREFIX = @GPREFIX@
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = intl22.so INTLLIBS = intl22.so
LANGUAGES = @LANGUAGES@ LANGUAGES = @LANGUAGES@
LIBS = @LIBS@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
P15_INCLUDES = @P15_INCLUDES@
P20_INCLUDES = @P20_INCLUDES@
P21_INCLUDES = @P21_INCLUDES@
P22_INCLUDES = @P22_INCLUDES@ P22_INCLUDES = @P22_INCLUDES@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
POFILES = @POFILES@ POFILES = @POFILES@

View File

@ -76,18 +76,13 @@ DEPDIR = @DEPDIR@
GNOMEHELP = @GNOMEHELP@ GNOMEHELP = @GNOMEHELP@
GNOMEINC = @GNOMEINC@ GNOMEINC = @GNOMEINC@
GNOMELIB = @GNOMELIB@ GNOMELIB = @GNOMELIB@
GPREF = @GPREF@
GPREFIX = @GPREFIX@ GPREFIX = @GPREFIX@
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@ INTLLIBS = @INTLLIBS@
LANGUAGES = @LANGUAGES@ LANGUAGES = @LANGUAGES@
LIBS = @LIBS@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
P15_INCLUDES = @P15_INCLUDES@
P20_INCLUDES = @P20_INCLUDES@
P21_INCLUDES = @P21_INCLUDES@
P22_INCLUDES = @P22_INCLUDES@ P22_INCLUDES = @P22_INCLUDES@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
POFILES = @POFILES@ POFILES = @POFILES@

View File

@ -71,18 +71,13 @@ DEPDIR = @DEPDIR@
GNOMEHELP = @GNOMEHELP@ GNOMEHELP = @GNOMEHELP@
GNOMEINC = @GNOMEINC@ GNOMEINC = @GNOMEINC@
GNOMELIB = @GNOMELIB@ GNOMELIB = @GNOMELIB@
GPREF = @GPREF@
GPREFIX = @GPREFIX@ GPREFIX = @GPREFIX@
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@ INTLLIBS = @INTLLIBS@
LANGUAGES = @LANGUAGES@ LANGUAGES = @LANGUAGES@
LIBS = @LIBS@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
P15_INCLUDES = @P15_INCLUDES@
P20_INCLUDES = @P20_INCLUDES@
P21_INCLUDES = @P21_INCLUDES@
P22_INCLUDES = @P22_INCLUDES@ P22_INCLUDES = @P22_INCLUDES@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
POFILES = @POFILES@ POFILES = @POFILES@

View File

@ -72,18 +72,13 @@ DEPDIR = @DEPDIR@
GNOMEHELP = @GNOMEHELP@ GNOMEHELP = @GNOMEHELP@
GNOMEINC = @GNOMEINC@ GNOMEINC = @GNOMEINC@
GNOMELIB = @GNOMELIB@ GNOMELIB = @GNOMELIB@
GPREF = @GPREF@
GPREFIX = @GPREFIX@ GPREFIX = @GPREFIX@
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@ INTLLIBS = @INTLLIBS@
LANGUAGES = @LANGUAGES@ LANGUAGES = @LANGUAGES@
LIBS = @LIBS@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
P15_INCLUDES = @P15_INCLUDES@
P20_INCLUDES = @P20_INCLUDES@
P21_INCLUDES = @P21_INCLUDES@
P22_INCLUDES = @P22_INCLUDES@ P22_INCLUDES = @P22_INCLUDES@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
POFILES = @POFILES@ POFILES = @POFILES@

View File

@ -75,18 +75,13 @@ DEPDIR = @DEPDIR@
GNOMEHELP = @GNOMEHELP@ GNOMEHELP = @GNOMEHELP@
GNOMEINC = @GNOMEINC@ GNOMEINC = @GNOMEINC@
GNOMELIB = @GNOMELIB@ GNOMELIB = @GNOMELIB@
GPREF = @GPREF@
GPREFIX = @GPREFIX@ GPREFIX = @GPREFIX@
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@ INTLLIBS = @INTLLIBS@
LANGUAGES = @LANGUAGES@ LANGUAGES = @LANGUAGES@
LIBS = @LIBS@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
P15_INCLUDES = @P15_INCLUDES@
P20_INCLUDES = @P20_INCLUDES@
P21_INCLUDES = @P21_INCLUDES@
P22_INCLUDES = @P22_INCLUDES@ P22_INCLUDES = @P22_INCLUDES@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
POFILES = @POFILES@ POFILES = @POFILES@

View File

@ -71,18 +71,13 @@ DEPDIR = @DEPDIR@
GNOMEHELP = @GNOMEHELP@ GNOMEHELP = @GNOMEHELP@
GNOMEINC = @GNOMEINC@ GNOMEINC = @GNOMEINC@
GNOMELIB = @GNOMELIB@ GNOMELIB = @GNOMELIB@
GPREF = @GPREF@
GPREFIX = @GPREFIX@ GPREFIX = @GPREFIX@
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@ INTLLIBS = @INTLLIBS@
LANGUAGES = @LANGUAGES@ LANGUAGES = @LANGUAGES@
LIBS = @LIBS@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
P15_INCLUDES = @P15_INCLUDES@
P20_INCLUDES = @P20_INCLUDES@
P21_INCLUDES = @P21_INCLUDES@
P22_INCLUDES = @P22_INCLUDES@ P22_INCLUDES = @P22_INCLUDES@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
POFILES = @POFILES@ POFILES = @POFILES@

View File

@ -72,18 +72,13 @@ DEPDIR = @DEPDIR@
GNOMEHELP = @GNOMEHELP@ GNOMEHELP = @GNOMEHELP@
GNOMEINC = @GNOMEINC@ GNOMEINC = @GNOMEINC@
GNOMELIB = @GNOMELIB@ GNOMELIB = @GNOMELIB@
GPREF = @GPREF@
GPREFIX = @GPREFIX@ GPREFIX = @GPREFIX@
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@ INTLLIBS = @INTLLIBS@
LANGUAGES = @LANGUAGES@ LANGUAGES = @LANGUAGES@
LIBS = @LIBS@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
MSGFMT = @MSGFMT@ MSGFMT = @MSGFMT@
P15_INCLUDES = @P15_INCLUDES@
P20_INCLUDES = @P20_INCLUDES@
P21_INCLUDES = @P21_INCLUDES@
P22_INCLUDES = @P22_INCLUDES@ P22_INCLUDES = @P22_INCLUDES@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
POFILES = @POFILES@ POFILES = @POFILES@