summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2012-01-15 02:07:36 +0100
committerMatúš Kukan <matus.kukan@gmail.com>2012-01-15 16:11:31 +0100
commita107e4b5ddb5e8d594bc8922062a1a8a32187396 (patch)
tree19d4abd6dd357a1a017167a06add2429c5e8096c
parent1c7c480e7465a077b1ede8be39329b14d31ba847 (diff)
config*: add cflags for gio, gconf and gnomevfs
-rw-r--r--config_host.mk.in6
-rw-r--r--configure.in6
2 files changed, 12 insertions, 0 deletions
diff --git a/config_host.mk.in b/config_host.mk.in
index 57125bd0fcde..280c84432865 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -112,10 +112,16 @@ export FONTCONFIG_CFLAGS="@FONTCONFIG_CFLAGS@"
export FONTCONFIG_LIBS="@FONTCONFIG_LIBS@"
export FREETYPE_CFLAGS="@FREETYPE_CFLAGS@"
export FREETYPE_LIBS="@FREETYPE_LIBS@"
+export GCONF_CFLAGS="@GCONF_CFLAGS@"
+export GCONF_LIBS="@GCONF_LIBS@"
+export GIO_CFLAGS="@GIO_CFLAGS@"
+export GIO_LIBS="@GIO_LIBS@"
export GIT_LINK_SRC="@GIT_LINK_SRC@"
export GIT_REPO_NAMES="@GIT_REPO_NAMES@"
export GMAKE_MODULE_PARALLELISM="@GMAKE_MODULE_PARALLELISM@"
export GMAKE_PARALLELISM="@GMAKE_PARALLELISM@"
+export GNOMEVFS_CFLAGS="@GNOMEVFS_CFLAGS@"
+export GNOMEVFS_LIBS="@GNOMEVFS_LIBS@"
@x_GNUCP@ export GNUCOPY="@GNUCP@"
export GNUMAKE="@GNUMAKE@"
export GNUTAR="@GNUTAR@"
diff --git a/configure.in b/configure.in
index d3b3a7e1448f..cef039eeebdf 100644
--- a/configure.in
+++ b/configure.in
@@ -7762,6 +7762,8 @@ if test "$_os" != "WINNT" -a "$_os" != "Darwin" -a "$enable_gconf" = "yes"; then
else
AC_MSG_RESULT([no])
fi
+AC_SUBST(GCONF_LIBS)
+AC_SUBST(GCONF_CFLAGS)
AC_SUBST(ENABLE_GCONF)
dnl ===================================================================
@@ -7777,6 +7779,8 @@ if test "$_os" != "WINNT" -a "$_os" != "Darwin" -a "$enable_gnome_vfs" = "yes" -
else
AC_MSG_RESULT([no])
fi
+AC_SUBST(GNOMEVFS_LIBS)
+AC_SUBST(GNOMEVFS_CFLAGS)
AC_SUBST(ENABLE_GNOMEVFS)
dnl ===================================================================
@@ -7830,6 +7834,8 @@ if test "$test_gtk" = "yes"; then
fi
fi
AC_SUBST(ENABLE_GIO)
+AC_SUBST(GIO_CFLAGS)
+AC_SUBST(GIO_LIBS)
AC_SUBST(ENABLE_DBUS)
AC_SUBST(ENABLE_SYSTRAY_GTK)
AC_SUBST(GTK_CFLAGS)