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
This commit is contained in:
Mark Crichton
1999-03-01 05:21:53 +00:00
parent c97af7103f
commit 6c842e8bbd
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,7 @@
1998-03-01 Mark Crichton <crichton@gimp.org>
* gnome-objc-checks : Added HAVE_GNOME_OBJC conditional
1998-02-27 Gregory McLean <gregm@comstar.net>
* gnome-x-checks.m4 : Require at least gtk+ 1.2 (pointless getting

View File

@ -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)