File: acinclude.m4

package info (click to toggle)
ifhp 3.5.20-13
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,360 kB
  • ctags: 1,929
  • sloc: ansic: 14,994; sh: 12,037; perl: 1,461; makefile: 639; sed: 16
file content (32 lines) | stat: -rw-r--r-- 955 bytes parent folder | download | duplicates (10)
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
dnl
dnl set $(LOCALEDIR) from --with-localedir=value
dnl
define(WITH_LOCALEDIR,[
AC_ARG_WITH([localedir],
[  --with-localedir=PATH   specify locale information directory],
AC_MSG_RESULT(LOCALEDIR is $withval)
LOCALEDIR="$withval",
LOCALEDIR="$LOCALEDIR"
[AC_MSG_RESULT(LOCALEDIR defaults to $LOCALEDIR)]
)dnl
AC_SUBST(LOCALEDIR)dnl
])dnl

define(WITH_CPPOPTS,[
AC_ARG_WITH([ccpopts],
[  --with-ccopts    OBSOLETE - use CPPFLAGS=..., see configure --help],
[AC_MSG_ERROR([ --with-cppopts  OBSOLETE - use CPPFLAGS=... see configure --help])]
)])dnl

define(WITH_LDOPTS,[
AC_ARG_WITH([ldopts],
[  --with-ldopts    OBSOLETE - use LDFLAGS=..., see configure --help],
[AC_MSG_ERROR([ --with-ldopts  OBSOLETE - use LDFLAGS=... see configure --help])]
)])dnl

define(WITH_CCOPTS,[
AC_ARG_WITH([ccopts],
[  --with-copts     OBSOLETE - use CFLAGS=..., see configure --help],
[AC_MSG_ERROR([ --with-ccopts   OBSOLETE - use CFLAGS=... see configure --help])]
)])dnl