forked from vrogier/ocilib
-
Notifications
You must be signed in to change notification settings - Fork 2
/
configure.ac
46 lines (36 loc) · 1020 Bytes
/
configure.ac
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Copyright (C) 2007 Vincent Rogier <[email protected]>
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
builtin(include, acocilib.m4)
AC_INIT(ocilib, m4_esyscmd([tr -d '\n' < VERSION]))
m4_pattern_allow([LT_MAJOR])
AC_CONFIG_SRCDIR([src/library.c])
AC_CONFIG_AUX_DIR(config)
AM_CONFIG_HEADER(config.h)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE()
LT_INIT()
AC_PROG_CC()
AC_PROG_INSTALL()
AC_LIBTOOL_DLOPEN()
AC_PROG_LIBTOOL()
OCILIB_PATH()
OCILIB_VERSION()
OCILIB_OPTIONS()
OCILIB_ORACLE()
AC_CONFIG_FILES([
README
ocilib.pc
Makefile
src/Makefile
doc/html/Makefile
demo/Makefile
demo/Makefile_demo
])
AC_OUTPUT()