Home | History | Annotate | Line # | Download | only in hello-objc-gnome
      1  1.1  christos dnl Example for use of GNU gettext.
      2  1.1  christos dnl Copyright (C) 2003-2004, 2006 Free Software Foundation, Inc.
      3  1.1  christos dnl This file is in the public domain.
      4  1.1  christos dnl
      5  1.1  christos dnl Configuration file - processed by autoconf.
      6  1.1  christos 
      7  1.1  christos AC_INIT
      8  1.1  christos AC_CONFIG_SRCDIR(hello.m)
      9  1.1  christos AM_INIT_AUTOMAKE(hello-objc-gnome, 0)
     10  1.1  christos 
     11  1.1  christos AC_PROG_CC
     12  1.1  christos AC_SUBST([OBJC],["$CC"])
     13  1.1  christos AC_SUBST([OBJCFLAGS],["$CFLAGS"])
     14  1.1  christos 
     15  1.1  christos GNOME_INIT
     16  1.1  christos OBGNOME_INCLUDES=
     17  1.1  christos obgnome_prefix=`obgnome-config --prefix`
     18  1.1  christos if test -n "$obgnome_prefix"; then
     19  1.1  christos   OBGNOME_INCLUDES="-I $obgnome_prefix/include"
     20  1.1  christos fi
     21  1.1  christos AC_SUBST([OBGNOME_INCLUDES])
     22  1.1  christos 
     23  1.1  christos AC_CHECK_HEADERS([unistd.h])
     24  1.1  christos AM_GNU_GETTEXT([external])
     25  1.1  christos AM_GNU_GETTEXT_VERSION(0.15)
     26  1.1  christos 
     27  1.1  christos AC_CONFIG_FILES([Makefile])
     28  1.1  christos AC_CONFIG_FILES([m4/Makefile])
     29  1.1  christos AC_CONFIG_FILES([po/Makefile.in])
     30  1.1  christos AC_OUTPUT
     31