aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-objc-checks.m4
diff options
context:
space:
mode:
authorMark Crichton <crichton@src.gnome.org>1999-03-01 13:21:53 +0800
committerMark Crichton <crichton@src.gnome.org>1999-03-01 13:21:53 +0800
commit6c842e8bbd4d96a1741e33dc4ff330aa9eb887d6 (patch)
tree8d00307d50f442f560e18f1ff98c5aa7e1fa5b74 /macros/gnome-objc-checks.m4
parentc97af7103f0558993b505f5d8199bca7caacc836 (diff)
downloadgsoc2013-evolution-6c842e8bbd4d96a1741e33dc4ff330aa9eb887d6.tar
gsoc2013-evolution-6c842e8bbd4d96a1741e33dc4ff330aa9eb887d6.tar.gz
gsoc2013-evolution-6c842e8bbd4d96a1741e33dc4ff330aa9eb887d6.tar.bz2
gsoc2013-evolution-6c842e8bbd4d96a1741e33dc4ff330aa9eb887d6.tar.lz
gsoc2013-evolution-6c842e8bbd4d96a1741e33dc4ff330aa9eb887d6.tar.xz
gsoc2013-evolution-6c842e8bbd4d96a1741e33dc4ff330aa9eb887d6.tar.zst
gsoc2013-evolution-6c842e8bbd4d96a1741e33dc4ff330aa9eb887d6.zip
Ok, this was bugging me.... ....for a while my objc compiler was borked. I
Ok, this was bugging me.... ....for a while my objc compiler was borked. I had it, but it didn't work. gnome-network would abuse and abuse me since it only checked for the objc compiler and not gnome-objc. Noticed we didn't have a HAVE_GNOME_OBJC conditional, so I added it. It works (so far...) Mark Crichton svn path=/trunk/; revision=718
Diffstat (limited to 'macros/gnome-objc-checks.m4')
-rw-r--r--macros/gnome-objc-checks.m47
1 files changed, 7 insertions, 0 deletions
diff --git a/macros/gnome-objc-checks.m4 b/macros/gnome-objc-checks.m4
index aa7fc580e5..dc9691cf20 100644
--- a/macros/gnome-objc-checks.m4
+++ b/macros/gnome-objc-checks.m4
@@ -62,10 +62,17 @@ AC_DEFUN([GNOME_INIT_OBJC],
if test -f $my_gnome_libdir/obGnomeConf.sh; then
. $my_gnome_libdir/obGnomeConf.sh
AC_MSG_RESULT(found $my_gnome_libdir)
+ ac_cv_have_gnome_objc=yes
else
AC_MSG_RESULT(not found)
AC_MSG_WARN(Could not find the obGnomeConf.sh file that is generated by gnome-objc install)
+ ac_cv_have_gnome_objc=no
fi
+
+ dnl Add a conditional on whether or not we have gnome-objc
+ AM_CONDITIONAL(HAVE_GNOME_OBJC, test x$ac_cv_have_gnome_objc = xyes)
+ HAVE_GNOME_OBJC=$ac_cv_have_gnome_objc
+
AC_SUBST(OBGNOME_INCLUDEDIR)
AC_SUBST(OBGNOME_LIBS)
AC_SUBST(OBGTK_LIBS)