aboutsummaryrefslogtreecommitdiff
path: root/ltb1/configure.ac
blob: 690edc385e4f4ede696af56bd2359d78d90347a0 (plain)
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
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([ltbug], [1], [gray@gnu.org])
AC_CONFIG_SRCDIR([src/main.c])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])

AM_INIT_AUTOMAKE([1.15 foreign])

# Checks for programs.
AC_PROG_CC
LT_PREREQ([2.4.6])
LT_INIT

AC_ARG_VAR([LTBUG_ID],[Identifier of the bug case])
if test -z "$LTBUG_ID"; then
  LTBUG_ID="local"
fi
AC_DEFINE_UNQUOTED([LTBUG_ID],["$LTBUG_ID"],
 [Text string identifying the library])

AC_SUBST([CF_LIB_FLAGS],['-L$(libdir) -Wl,-rpath -Wl,$(libdir)'])

AC_CONFIG_FILES([Makefile lib/Makefile src/Makefile])

AC_OUTPUT

Return to:

Send suggestions and report system problems to the System administrator.