File: config.m4

package info (click to toggle)
libapache-mod-jk 1%3A1.2.30-1squeeze2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 10,056 kB
  • ctags: 5,973
  • sloc: ansic: 54,056; xml: 12,930; sh: 9,363; java: 1,921; perl: 1,004; makefile: 275; awk: 59
file content (18 lines) | stat: -rw-r--r-- 448 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
AC_MSG_CHECKING(for mod_jk module)
AC_ARG_WITH(mod_jk,
  [  --with-mod_jk  Include the mod_jk (static).],
  [
    modpath_current=modules/jk
    module=jk
    libname=lib_jk.la
    BUILTIN_LIBS="$BUILTIN_LIBS $modpath_current/$libname"
    cat >>$modpath_current/modules.mk<<EOF
DISTCLEAN_TARGETS = modules.mk
static = $libname
shared =
EOF
  MODLIST="$MODLIST $module"
  AC_MSG_RESULT(added $withval)
  ],
  [ AC_MSG_RESULT(no mod_jk added) 
  ])