File: djconfig.sh

package info (click to toggle)
gnuplot 6.0.3%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,960 kB
  • sloc: ansic: 95,874; cpp: 7,199; makefile: 2,470; javascript: 2,339; sh: 1,531; lisp: 664; perl: 304; pascal: 191; tcl: 88; python: 46
file content (31 lines) | stat: -rwxr-xr-x 1,103 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#! /bin/sh
#
# This script configure GNUPLOT-3.7 for building with DJGPP
# (You need bash and many other packages installed for that.
# for novices it's recommended to use Makefile.dj2 instead)
#
# You need also libgd.a, libpng.a and libz.a installed with 
# corresponding include files (otherwise GIF and PNG terminals
# support may not be available)
#
# After running this script simply type
#	make
# to build GNUPLOT
# Finally copy gnuplot.exe and docs/gnuplot.gih to one directory on
# DOS path and enjoy (You can strip gnuplot.exe before)
#-------------------------------------------------------------------
# where are the sources? If you use (like I) to have the sources
# in a separate directory and the objects in an other, then set
# here the full path to the source directory and run this script
# in the directory where you want to build gnuplot!!
srcdir=..
#
# give now the configure script some hints
#
export PATH_SEPARATOR=:
export CC=gcc
export LD=ld
export ac_cv_path_install="ginstall -c"
export CONFIG_SHELL=bash
#
$srcdir/configure --srcdir=$srcdir --without-x --with-gd --with-png