1997-09-16 01:07:48 +00:00
|
|
|
AC_INIT(application.make)
|
|
|
|
|
|
|
|
#
|
|
|
|
# configure.in
|
|
|
|
#
|
|
|
|
# Copyright (C) 1997 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Author: Scott Christley <scottc@net-community.com>
|
1997-10-25 03:53:00 +00:00
|
|
|
# Ovidiu Predescu <ovidiu@net-community.com>
|
1997-09-16 01:07:48 +00:00
|
|
|
#
|
|
|
|
# This file is part of the GNUstep Makefile Package.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public
|
|
|
|
# License along with this library; see the file COPYING.LIB.
|
|
|
|
# If not, write to the Free Software Foundation,
|
|
|
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
1997-10-03 21:12:56 +00:00
|
|
|
AC_CONFIG_HEADER(config.h)
|
|
|
|
|
1997-09-16 01:07:48 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# The GNUstep root directory.
|
1997-09-22 22:49:02 +00:00
|
|
|
# The user should have the GNUSTEP_SYSTEM_ROOT environment variable
|
|
|
|
# defined, but if not then we have a global default.
|
1997-09-16 01:07:48 +00:00
|
|
|
#--------------------------------------------------------------------
|
1997-09-22 22:49:02 +00:00
|
|
|
AC_PREFIX_DEFAULT(`if test "x$GNUSTEP_SYSTEM_ROOT" = "x"; then
|
1999-01-02 18:29:44 +00:00
|
|
|
GNUSTEP_SYSTEM_ROOT=/usr/GNUstep ;
|
|
|
|
echo $GNUSTEP_SYSTEM_ROOT ;
|
1997-09-16 01:07:48 +00:00
|
|
|
else
|
1997-09-22 22:49:02 +00:00
|
|
|
echo $GNUSTEP_SYSTEM_ROOT ;
|
1997-09-16 01:07:48 +00:00
|
|
|
fi`)
|
1999-07-06 02:52:31 +00:00
|
|
|
if test "x$prefix" = "xNONE"; then
|
1999-03-10 16:03:00 +00:00
|
|
|
prefix=$ac_default_prefix ;
|
|
|
|
fi
|
1997-09-16 01:07:48 +00:00
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Determine the host, build, and target systems
|
|
|
|
#--------------------------------------------------------------------
|
1999-04-02 05:31:35 +00:00
|
|
|
targetArgument=${target}
|
1997-09-16 01:07:48 +00:00
|
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
|
1998-12-07 16:54:26 +00:00
|
|
|
EXEEXT=
|
1999-04-02 05:31:35 +00:00
|
|
|
if test "x$program_suffix" != "xNONE"; then
|
1998-12-07 16:54:26 +00:00
|
|
|
EXEEXT=$program_suffix
|
|
|
|
fi
|
|
|
|
AC_SUBST(EXEEXT)
|
1998-12-07 16:23:04 +00:00
|
|
|
|
1997-09-16 01:07:48 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Find the binary and compile tools
|
|
|
|
#--------------------------------------------------------------------
|
1999-04-02 05:31:35 +00:00
|
|
|
if test "x$target" != "x$host"; then
|
|
|
|
echo "cross compiling from $host to $target .."
|
|
|
|
cross_compiling="yes"
|
|
|
|
AC_CHECK_PROG(CC, "${targetArgument}-gcc", dnl
|
|
|
|
"${targetArgument}-gcc", gcc)
|
|
|
|
AC_CHECK_PROG(RANLIB, "${targetArgument}-ranlib", dnl
|
|
|
|
"${targetArgument}-ranlib", ranlib)
|
|
|
|
AC_CHECK_PROG(AR, "${targetArgument}-ar", dnl
|
|
|
|
"${targetArgument}-ar", ar)
|
|
|
|
AC_CHECK_PROG(DLLTOOL, "${targetArgument}-dlltool", dnl
|
|
|
|
"${targetArgument}-dlltool", dlltool)
|
|
|
|
else
|
|
|
|
AC_CHECK_PROG(AR, ar, ar)
|
|
|
|
AC_CHECK_PROG(DLLTOOL, dlltool, dlltool)
|
|
|
|
AC_PROG_RANLIB
|
|
|
|
fi
|
|
|
|
|
1997-09-16 01:07:48 +00:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CPP
|
1999-04-02 05:31:35 +00:00
|
|
|
AC_PATH_PROG(PERL, perl, /usr/local/bin/perl)
|
1997-10-03 22:02:27 +00:00
|
|
|
|
1997-10-03 21:12:56 +00:00
|
|
|
AC_PROG_INSTALL
|
1997-10-03 22:02:27 +00:00
|
|
|
# HOST_INSTALL is the name of the install program in config.make so set it up
|
|
|
|
# to point to the install-sh script in the GNUstep tree if no system install is
|
|
|
|
# found.
|
|
|
|
AC_SUBST(HOST_INSTALL)
|
|
|
|
if test "$INSTALL" = "$ac_install_sh"; then
|
|
|
|
HOST_INSTALL=$prefix/Makefiles/$INSTALL
|
|
|
|
else
|
|
|
|
HOST_INSTALL=$INSTALL
|
|
|
|
fi
|
|
|
|
|
1997-09-16 01:07:48 +00:00
|
|
|
AC_LN_S
|
|
|
|
|
1997-09-18 01:36:07 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Find for X windows
|
|
|
|
#--------------------------------------------------------------------
|
1999-04-02 05:31:35 +00:00
|
|
|
AC_PATH_XTRA
|
1997-09-18 01:36:07 +00:00
|
|
|
X_INCLUDE=""
|
|
|
|
if test -n "$x_includes"; then
|
|
|
|
X_INCLUDE="-I$x_includes"
|
|
|
|
fi
|
|
|
|
X_LIBS=""
|
|
|
|
if test -n "$x_libraries"; then
|
|
|
|
X_LIBS="-L$x_libraries"
|
|
|
|
fi
|
1997-10-13 19:38:12 +00:00
|
|
|
if test -r $x_includes/X11/DPS; then
|
|
|
|
X_INCLUDE="$X_INCLUDE -I$x_includes/X11"
|
|
|
|
fi
|
1997-09-18 01:36:07 +00:00
|
|
|
|
1998-09-03 18:50:11 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Find for DPS
|
|
|
|
#--------------------------------------------------------------------
|
1999-03-02 08:58:30 +00:00
|
|
|
AC_ARG_WITH(dps_library,
|
|
|
|
[ --with-dps-library=DIR DPS library file are in DIR], ,
|
|
|
|
with_dps_library=)
|
|
|
|
AC_ARG_WITH(dps_include,
|
|
|
|
[ --with-dps-include=DIR DPS include files are in DIR], ,
|
|
|
|
with_dps_include=)
|
1998-09-03 18:50:11 +00:00
|
|
|
|
|
|
|
# Add the target header file directory as an include path so that the
|
|
|
|
# check for dpsNXargs.h below looks at the appropriate target includes
|
|
|
|
ORIG_CPPFLAGS=${CPPFLAGS}
|
1999-03-02 08:58:30 +00:00
|
|
|
if test -n "$with_dps_include"; then
|
|
|
|
X_INCLUDE="$X_INCLUDE -I$with_dps_include"
|
1999-04-02 05:31:35 +00:00
|
|
|
if test -n "$with_dps_library"; then
|
|
|
|
X_LIBS="$X_LIBS -L$with_dps_library"
|
1999-03-02 08:58:30 +00:00
|
|
|
fi
|
|
|
|
fi
|
1998-09-03 18:50:11 +00:00
|
|
|
CPPFLAGS="${CPPFLAGS} ${X_INCLUDE}"
|
|
|
|
|
|
|
|
# We care about this header file on the target not host system
|
1999-04-21 17:31:41 +00:00
|
|
|
AC_HAVE_HEADERS(DPS/dpsclient.h, DPS_DEFINE=' -DHAVE_DPS_CLIENT_H=1',
|
1998-09-03 18:50:11 +00:00
|
|
|
DPS_DEFINE=' -DHAVE_DPS_CLIENT_H=0')
|
1999-01-02 18:29:44 +00:00
|
|
|
AC_HAVE_HEADERS(DPS/dpsNXargs.h,
|
1999-04-02 17:24:43 +00:00
|
|
|
DPS_DEFINE="$DPS_DEFINE -DHAVE_DPS_DPSNXARGS_H=1",
|
|
|
|
DPS_DEFINE="$DPS_DEFINE -DHAVE_DPS_DPSNXARGS_H=0")
|
1998-09-03 18:50:11 +00:00
|
|
|
|
|
|
|
# Restore back to the original
|
|
|
|
CPPFLAGS=${ORIG_CPPFLAGS}
|
|
|
|
|
|
|
|
AC_SUBST(DPS_DEFINE)
|
1999-03-02 08:58:30 +00:00
|
|
|
AC_SUBST(X_INCLUDE)
|
|
|
|
AC_SUBST(X_LIBS)
|
1999-04-02 05:31:35 +00:00
|
|
|
AC_SUBST(X_PRE_LIBS)
|
1999-03-02 08:58:30 +00:00
|
|
|
|
|
|
|
AC_HEADER_DIRENT
|
|
|
|
AC_HAVE_HEADERS(sys/param.h sys/file.h dir.h string.h stdlib.h sys/types.h dnl
|
|
|
|
sys/stat.h sys/errno.h)
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Find for JPEG
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
AC_ARG_WITH(jpeg_library,
|
|
|
|
[ --with-jpeg-library=DIR JPEG library file are in DIR], ,
|
|
|
|
with_jpeg_library=/usr/local/lib)
|
1999-03-17 16:59:21 +00:00
|
|
|
AC_ARG_WITH(jpeg_include,
|
1999-03-02 08:58:30 +00:00
|
|
|
[ --with-jpeg-include=DIR JPEG include files are in DIR], ,
|
|
|
|
with_jpeg_include=/usr/local/include)
|
|
|
|
|
|
|
|
AC_DEFUN(AC_CHECK_JPEGLIB,
|
1999-03-09 05:30:15 +00:00
|
|
|
[jpeg_check_lib_save_header=${CPPFLAGS}
|
|
|
|
CPPFLAGS="-L$1 -I$2 ${CPPFLAGS}"
|
1999-03-02 08:58:30 +00:00
|
|
|
|
|
|
|
AC_CHECK_LIB(jpeg, jpeg_destroy_decompress,
|
|
|
|
jpeg_ok=yes,
|
1999-03-09 05:30:15 +00:00
|
|
|
jpeg_ok=no)
|
1999-03-02 08:58:30 +00:00
|
|
|
if test "$jpeg_ok" = yes; then
|
1999-03-09 05:30:15 +00:00
|
|
|
AC_MSG_CHECKING([for jpeglib.h])
|
1999-03-02 08:58:30 +00:00
|
|
|
AC_TRY_CPP([#include <stdio.h>
|
|
|
|
#undef PACKAGE
|
|
|
|
#undef VERSION
|
1999-03-09 05:30:15 +00:00
|
|
|
#undef HAVE_STDLIB_H
|
1999-03-02 08:58:30 +00:00
|
|
|
#include <jpeglib.h>],
|
|
|
|
jpeg_ok=yes,
|
|
|
|
jpeg_ok=no)
|
|
|
|
AC_MSG_RESULT($jpeg_ok)
|
|
|
|
|
|
|
|
if test "$jpeg_ok" = yes; then
|
|
|
|
JPEG_LIB="-L$1"
|
|
|
|
export JPEG_LIB
|
|
|
|
JPEG_INCLUDE="-I$2"
|
|
|
|
export JPEG_INCLUDE
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
CPPFLAGS="${jpeg_check_lib_save_header}"])
|
|
|
|
|
|
|
|
if test "x$JPEG_LIB" = x; then
|
|
|
|
AC_CHECK_JPEGLIB(${with_jpeg_library}, ${with_jpeg_include})
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_SUBST(JPEG_LIB)
|
|
|
|
AC_SUBST(JPEG_INCLUDE)
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Find for TIFF
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
AC_ARG_WITH(tiff_library,
|
|
|
|
[ --with-tiff-library=DIR TIFF library file are in DIR], ,
|
|
|
|
with_tiff_library=/usr/local/lib)
|
1999-03-17 16:59:21 +00:00
|
|
|
AC_ARG_WITH(tiff_include,
|
1999-03-02 08:58:30 +00:00
|
|
|
[ --with-tiff-include=DIR TIFF include files are in DIR], ,
|
|
|
|
with_tiff_include=/usr/local/include)
|
|
|
|
|
|
|
|
AC_DEFUN(AC_CHECK_TIFFLIB,
|
1999-03-09 05:30:15 +00:00
|
|
|
[tiff_check_lib_save_header=${CPPFLAGS}
|
|
|
|
tiff_check_lib_save_libs=${LIBS}
|
|
|
|
CPPFLAGS="-L$1 ${JPEG_LIB} -I$2 ${JPEG_INCLUDE} ${CPPFLAGS}"
|
1999-04-23 02:54:45 +00:00
|
|
|
AC_CHECK_LIB(z, main, HAVE_LIBZ=1, HAVE_LIBZ=0)
|
1999-03-09 05:30:15 +00:00
|
|
|
|
1999-04-23 02:54:45 +00:00
|
|
|
AC_MSG_CHECKING(for -ltiff without -ljpeg nor -lz)
|
1999-03-09 05:30:15 +00:00
|
|
|
LIBS="-ltiff -lm $LIBS"
|
|
|
|
AC_TRY_LINK([char TIFFReadScanline();], [TIFFReadScanline()],
|
|
|
|
jpeg_notneeded=yes,
|
|
|
|
jpeg_notneeded=no)
|
|
|
|
AC_MSG_RESULT($jpeg_notneeded)
|
|
|
|
LIBS=${tiff_check_lib_save_libs}
|
|
|
|
JPEG=
|
|
|
|
if test "$jpeg_notneeded" = no; then
|
|
|
|
JPEG=-ljpeg
|
|
|
|
fi
|
1999-04-23 02:54:45 +00:00
|
|
|
|
|
|
|
if test $HAVE_LIBZ = 1; then
|
|
|
|
AC_MSG_CHECKING(for -ltiff without -lz)
|
|
|
|
LIBS="-ltiff $JPEG -lm $LIBS"
|
|
|
|
AC_TRY_LINK([char TIFFReadScanline();], [TIFFReadScanline()],
|
|
|
|
libz_notneeded=yes,
|
|
|
|
libz_notneeded=no)
|
|
|
|
AC_MSG_RESULT($libz_notneeded)
|
|
|
|
LIBS=${tiff_check_lib_save_libs}
|
|
|
|
if test "$libz_notneeded" = no; then
|
|
|
|
JPEG="$JPEG -lz"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
1999-03-02 08:58:30 +00:00
|
|
|
AC_CHECK_LIB(tiff, TIFFReadScanline,
|
|
|
|
tiff_ok=yes,
|
|
|
|
tiff_ok=no
|
1999-03-09 05:30:15 +00:00
|
|
|
AC_MSG_WARN(Cannot find libtiff)
|
|
|
|
echo "* The GUI library reqiures the TIFF library"
|
|
|
|
echo "* Use --with-tiff-library to specify the tiff library"
|
|
|
|
echo "* directory if it is not in the usual place(s)"
|
|
|
|
echo "* You may also have to specify --with-jpeg-library if the jpeg"
|
|
|
|
echo "* Library is needed by tiff"
|
|
|
|
if test "x$CONFIGURING_CORE_LIBRARIES" != x; then
|
|
|
|
AC_MSG_ERROR(You must have proper libraries installed to compile core)
|
|
|
|
fi,
|
|
|
|
$JPEG -lm)
|
1999-03-02 08:58:30 +00:00
|
|
|
if test "$tiff_ok" = yes; then
|
|
|
|
AC_CHECK_HEADER(tiffio.h,
|
|
|
|
tiff_ok=yes,
|
|
|
|
tiff_ok=no)
|
|
|
|
if test "$tiff_ok" = yes; then
|
|
|
|
TIFF_LIB="-L$1"
|
|
|
|
export TIFF_LIB
|
|
|
|
TIFF_INCLUDE="-I$2"
|
|
|
|
export TIFF_INCLUDE
|
|
|
|
else
|
1999-03-09 05:30:15 +00:00
|
|
|
AC_MSG_WARN(Cannot find libtiff header tiffio)
|
|
|
|
echo "* The GUI library requres the TIFF library"
|
|
|
|
echo "* Use --with-tiff-include to specify the tiff header directory"
|
|
|
|
echo "* if it is not in the usual place(s)"
|
|
|
|
if test "x$CONFIGURING_CORE_LIBRARIES" != x; then
|
|
|
|
AC_MSG_ERROR(You must have proper libraries installed to compile core)
|
|
|
|
fi
|
1999-03-02 08:58:30 +00:00
|
|
|
fi
|
|
|
|
fi
|
1999-03-09 05:30:15 +00:00
|
|
|
CPPFLAGS="${tiff_check_lib_save_header}"])
|
1999-03-02 08:58:30 +00:00
|
|
|
|
|
|
|
if test "x$TIFF_LIB" = x; then
|
|
|
|
AC_CHECK_TIFFLIB(${with_tiff_library}, ${with_tiff_include})
|
|
|
|
fi
|
|
|
|
|
1999-03-09 05:30:15 +00:00
|
|
|
AC_SUBST(JPEG)
|
1999-03-02 08:58:30 +00:00
|
|
|
AC_SUBST(TIFF_LIB)
|
|
|
|
AC_SUBST(TIFF_INCLUDE)
|
1998-09-03 18:50:11 +00:00
|
|
|
|
1997-10-02 01:29:16 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Setup the library combination
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
AC_ARG_WITH(library-combo,[
|
|
|
|
--with-library-combo
|
1998-05-28 06:56:11 +00:00
|
|
|
Define the default library combinations that will be used when you
|
|
|
|
type 'make'. You can still change the library combination at runtime
|
|
|
|
by specifying the 'library_combo' make variable. For example:
|
1997-10-02 01:29:16 +00:00
|
|
|
|
1997-10-29 16:27:45 +00:00
|
|
|
$ make library_combo=nx-pdo-nx-nil
|
1997-10-02 01:29:16 +00:00
|
|
|
],
|
|
|
|
ac_cv_library_combo=$withval,
|
1998-11-25 21:06:09 +00:00
|
|
|
ac_cv_library_combo=$ac_cv_library_combo
|
1997-10-02 01:29:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if test "$ac_cv_library_combo" = ""; then
|
1997-10-03 21:12:56 +00:00
|
|
|
if test $host_os = nextstep4; then
|
1997-10-29 16:27:45 +00:00
|
|
|
ac_cv_library_combo=nx-nx-nx-nil
|
1999-03-14 18:24:38 +00:00
|
|
|
elif test $host_os = cygwin32; then
|
|
|
|
ac_cv_library_combo=gnu-gnu-gnu-w32gui
|
1997-10-03 21:12:56 +00:00
|
|
|
else
|
1999-04-30 15:01:42 +00:00
|
|
|
ac_cv_library_combo=gnu-gnu-gnu-xgps
|
1997-10-03 21:12:56 +00:00
|
|
|
fi
|
1997-10-02 01:29:16 +00:00
|
|
|
fi
|
|
|
|
AC_SUBST(ac_cv_library_combo)
|
|
|
|
|
1998-09-03 14:35:49 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Check if libobjc was compiled with thread support.
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
AC_MSG_CHECKING(whether objc has thread support)
|
1999-09-08 03:30:36 +00:00
|
|
|
extra_LIBS=""
|
|
|
|
case "${target_os}" in
|
|
|
|
solaris*)
|
|
|
|
extra_LIBS="-lposix4"
|
|
|
|
;;
|
|
|
|
esac
|
1998-09-03 14:35:49 +00:00
|
|
|
saved_LIBS="$LIBS"
|
1998-11-11 23:05:50 +00:00
|
|
|
objc_thread_lib=""
|
|
|
|
if test $host_os = linux-gnu; then
|
|
|
|
LIBS="-lobjc -lpthread"
|
|
|
|
AC_TRY_RUN([#include "config_thread.m"], objc_threaded="-lpthread",
|
|
|
|
objc_threaded="", objc_threaded="-lpthread")
|
1999-09-08 03:30:36 +00:00
|
|
|
elif test "`echo $host_os|sed 's/[[0-9]].*//'|sed s/elf//`" = freebsd; then
|
|
|
|
LIBS="-lpthread -lobjc"
|
|
|
|
AC_TRY_RUN([#include "config_thread.m"], objc_threaded="-lpthread",
|
|
|
|
objc_threaded="", objc_threaded="-lpthread")
|
1998-11-11 23:05:50 +00:00
|
|
|
if test x"$objc_threaded" = x""; then
|
|
|
|
LIBS="-lobjc -lpcthread"
|
|
|
|
AC_TRY_RUN([#include "config_thread.m"], objc_threaded="-lpcthread",
|
|
|
|
objc_threaded="", objc_threaded="-lpcthread")
|
|
|
|
fi
|
1998-09-03 14:35:49 +00:00
|
|
|
else
|
1999-09-08 03:30:36 +00:00
|
|
|
LIBS="-lobjc $LIBS $extra_LIBS"
|
1998-11-11 23:05:50 +00:00
|
|
|
AC_TRY_RUN([#include "config_thread.m"], objc_threaded="-lthread",
|
|
|
|
objc_threaded="", objc_threaded="-lthread")
|
|
|
|
fi
|
|
|
|
LIBS="$saved_LIBS"
|
|
|
|
if test x"$objc_threaded" = x""; then
|
1998-09-03 14:35:49 +00:00
|
|
|
AC_MSG_RESULT(no)
|
1998-11-11 23:05:50 +00:00
|
|
|
else
|
|
|
|
AC_MSG_RESULT(yes)
|
1998-09-03 14:35:49 +00:00
|
|
|
fi
|
1998-12-15 19:20:50 +00:00
|
|
|
ac_cv_objc_threaded=$objc_threaded
|
1998-09-03 14:35:49 +00:00
|
|
|
AC_SUBST(objc_threaded)
|
1998-12-15 19:20:50 +00:00
|
|
|
AC_SUBST(ac_cv_objc_threaded)
|
1998-09-03 14:35:49 +00:00
|
|
|
|
1999-03-02 08:58:30 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Record the version
|
|
|
|
#--------------------------------------------------------------------
|
1999-04-02 05:31:35 +00:00
|
|
|
if test -f "../Version"; then
|
|
|
|
. ../Version
|
|
|
|
fi
|
1999-03-02 08:58:30 +00:00
|
|
|
AC_SUBST(GNUSTEP_VERSION)
|
|
|
|
AC_SUBST(GNUSTEP_MAJOR_VERSION)
|
|
|
|
AC_SUBST(GNUSTEP_MINOR_VERSION)
|
|
|
|
|
1997-09-16 01:07:48 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Produce the output files
|
|
|
|
#--------------------------------------------------------------------
|
1999-04-02 05:31:35 +00:00
|
|
|
AC_OUTPUT(config.h config.make openapp debugapp which_lib.pl opentool
|
1999-06-02 03:16:12 +00:00
|
|
|
executable.template GNUmakefile GNUstep.sh GNUstep.csh,
|
|
|
|
chmod a+x openapp debugapp which_lib.pl opentool executable.template)
|