aboutsummaryrefslogtreecommitdiff
path: root/Examples/GIFPlot/configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/GIFPlot/configure.in')
-rw-r--r--Examples/GIFPlot/configure.in52
1 files changed, 0 insertions, 52 deletions
diff --git a/Examples/GIFPlot/configure.in b/Examples/GIFPlot/configure.in
deleted file mode 100644
index 271399590..000000000
--- a/Examples/GIFPlot/configure.in
+++ /dev/null
@@ -1,52 +0,0 @@
-dnl Process this file with autoconf to produce a configure script.
-AC_INIT(Include/gifplot.h)
-AC_PREREQ(2.0)
-
-# Set name for machine-dependent library files
-AC_SUBST(MACHDEP)
-AC_MSG_CHECKING(MACHDEP)
-if test -z "$MACHDEP"
-then
- if test -f /usr/lib/NextStep/software_version; then
- set X `hostinfo | grep 'NeXT Mach.*:' | \
- sed -e 's/://' -e 's/\./_/'` && \
- ac_sys_system=next && ac_sys_release=$4
- MACHDEP="$ac_sys_system$ac_sys_release$ac_sys_cpu"
- else
- ac_sys_system=`uname -s`
- if test "$ac_sys_system" = "AIX" ; then
- ac_sys_release=`uname -v`
- else
- ac_sys_release=`uname -r`
- fi
- ac_md_system=`echo $ac_sys_system |
- tr -d '[/ ]' | tr '[[A-Z]]' '[[a-z]]'`
- ac_md_release=`echo $ac_sys_release |
- tr -d '[/ ]' | sed 's/\..*//'`
- MACHDEP="$ac_md_system$ac_md_release"
- fi
- case MACHDEP in
- '') MACHDEP=unknown;;
- esac
-fi
-AC_MSG_RESULT($MACHDEP)
-
-AC_LANG_C
-
-dnl Checks for programs.
-AC_PROG_CC
-AC_PROG_RANLIB
-AC_SUBST(AR)
-AC_CHECK_PROGS(AR, ar aal, ar)
-
-dnl Checks for header files.
-AC_HEADER_STDC
-dnl Checks for library functions.
-
-AC_OUTPUT(Makefile Lib/Makefile)
-
-
-
-
-
-