File: config.m4

package info (click to toggle)
libapache-mod-jk 1%3A1.2.18-3
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 5,004 kB
  • ctags: 2,664
  • sloc: ansic: 20,014; sh: 8,643; xml: 7,304; perl: 617; makefile: 321; 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) 
  ])