dnl -*-fundamental-*- dnl dnl $Id: configure.in,v 1.1 1999/10/23 10:58:49 mdw Exp $ dnl dnl Configuration script for PGP pixie dnl dnl (c) 1999 Mark Wooding dnl dnl ----- Licensing notice -------------------------------------------------- dnl dnl PGP pixie is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 2 of the License, or dnl (at your option) any later version. dnl dnl PGP pixie is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the dnl GNU General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License dnl along with PGP pixie; if not, write to the Free Software Foundation, dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. dnl ----- Revision history -------------------------------------------------- dnl dnl $Log: configure.in,v $ dnl Revision 1.1 1999/10/23 10:58:49 mdw dnl Initial revision dnl AC_INIT(pixie.c) AM_INIT_AUTOMAKE(pixie, 1.0.0) AC_PROG_CC mdw_GCC_FLAGS AC_PATH_PROG(PATH_XGETLINE, xgetline) if test -n "$PATH_XGETLINE"; then AC_DEFINE_UNQUOTED(PATH_XGETLINE, "$PATH_XGETLINE") fi AC_CHECK_FUNCS(mlock) mdw_prefix=$prefix mdw_exec_prefix=$exec_prefix test "$prefix" = "NONE" && prefix=$ac_default_prefix test "$exec_prefix" = "NONE" && exec_prefix=$prefix PIXIE=`eval echo $bindir`/`echo pixie|sed ${program_transform_name}` AC_SUBST(PIXIE) AC_OUTPUT(Makefile pgp-pixie) dnl ----- That's all, folks -------------------------------------------------