1# $Id: CONFIG,v 1.9 2003/03/31 23:55:11 mpeppler Exp $
2# Configuration file for DBD::Sybase.
3#
4# The Makefile.PL file attempts to set reasonable defaults for the
5# variables in this file.
6#
7# Where is the Sybase directory on your system (include files &
8# libraries are expected to be found at SYBASE/include & SYBASE/lib
9# If not set, uses the SYBASE environment variable.
10SYBASE=$ENV{SYBASE}||'/opt/sybase'
11
12# Additional libraries.
13# Some systems require -lnsl or -lBSD.
14# Solaris 2.x needs -ltli
15# SGI IRIX needs -linsck (and may need need -ltli)
16# DEC OSF/1 needs -ldnet_stub and may need -lsdna and -linsck or -ltli
17# SunOS 4.x needs -linsck
18# HP-UX 10.x needs -linsck
19# AIX 3.2.5 needs -linsck
20# Linux needs -linsck
21# See the Sybase OpenClient Supplement for your OS/Hardware
22# combination.
23# If not set, will attempt to determine which libraries are needed by scanning the
24# $SYBASE/lib directory.
25EXTRA_LIBS=
26
27# DBI_INCLUDE
28# DBD::Sybase needs access to some C include files that are provided
29# by the DBI module. These are normally found in $Config{sitearchexp}/auto/DBI
30# but if they are in some other place on your system then you can specify
31# that directory here:
32# DBI_INCLUDE=/usr/local/lib/perl5/site_perl/sun4-solaris/
33
34# BUILD_TYPE
35# Set this to 64 if you are building in 64 bit mode on a platform
36# that supports the 64bit OpenClient libraries (libct64.a, etc).
37# BUILD_TYPE=64
38
39
40# LINKTYPE
41# If you wish to link DBD::Sybase statically
42# into perl uncomment the line below and run the make normally. Then,
43# when you run 'make test' a new perl binary will be built.
44#LINKTYPE=static
45