File: config.m4

package info (click to toggle)
libapache-mod-jk 1%3A1.2.5-2sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,236 kB
  • ctags: 2,044
  • sloc: ansic: 15,607; sh: 6,746; perl: 2,136; xml: 387; makefile: 240
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) 
  ])