[BACK]Return to djconfig.sh CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gnuplot

Annotation of OpenXM_contrib/gnuplot/djconfig.sh, Revision 1.1.1.1

1.1       maekawa     1: #! /bin/sh
                      2: #
                      3: # This script configure GNUPLOT-3.7 for building with DJGPP
                      4: # (You need bash and many other packages installed for that.
                      5: # for novices it's recommended to use Makefile.dj2 instead)
                      6: #
                      7: # You need also libgd.a, libpng.a and libz.a installed with
                      8: # corresponding include files (otherwise GIF and PNG terminals
                      9: # support may not be available)
                     10: #
                     11: # After running this script simply type
                     12: #      make
                     13: # to build GNUPLOT
                     14: # Finally copy gnuplot.exe and docs/gnuplot.gih to one directory on
                     15: # DOS path and enjoy (You can strip gnuplot.exe before)
                     16: #-------------------------------------------------------------------
                     17: # where are the sources? If you use (like I) to have the sources
                     18: # in a separate directory and the objects in an other, then set
                     19: # here the full path to the source directory and run this script
                     20: # in the directory where you want to build gnuplot!!
                     21: srcdir=.
                     22: #
                     23: # give now the configure script some hints
                     24: #
                     25: export PATH_SEPARATOR=:
                     26: export CC=gcc
                     27: export LD=ld
                     28: export ac_cv_path_install="ginstall -c"
                     29: export CONFIG_SHELL=bash
                     30: #
                     31: $srcdir/configure --srcdir=$srcdir --without-x --with-gd --with-png

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>