Home | History | Annotate | Line # | Download | only in hello-c-gnome
      1 dnl Example for use of GNU gettext.
      2 dnl Copyright (C) 2003-2004, 2006 Free Software Foundation, Inc.
      3 dnl This file is in the public domain.
      4 dnl
      5 dnl Configuration file - processed by autoconf.
      6 
      7 AC_INIT
      8 AC_CONFIG_SRCDIR(hello.c)
      9 AM_INIT_AUTOMAKE(hello-c-gnome, 0)
     10 
     11 AC_PROG_CC
     12 GNOME_INIT
     13 AC_CHECK_HEADERS([unistd.h])
     14 AM_GNU_GETTEXT([external])
     15 AM_GNU_GETTEXT_VERSION(0.15)
     16 
     17 AC_CONFIG_FILES([Makefile])
     18 AC_CONFIG_FILES([m4/Makefile])
     19 AC_CONFIG_FILES([po/Makefile.in])
     20 AC_OUTPUT
     21