summaryrefslogtreecommitdiff
path: root/configure.d/config_os_misc1
blob: feec9a907410b6e2515e8315325161b4fefd6231 (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
# -*- autoconf -*-
#########################################
##
# Miscellaneous checks
##
#########################################

##
#   Compilation-related
##

#       Dynamic modules require Position-Independent Code
#	    LIB_CFLAGS/DLLIBS: used in agent Makefile only
#
AC_MSG_CHECKING([whether we have to build PIC code])
echo " $module_list " | $GREP " ucd-snmp/dlmod " >/dev/null
if test $? -eq 0 ; then
    LIB_CFLAGS="$LIB_CFLAGS $SHLIB_CFLAGS"
    AC_MSG_RESULT(yes)
else
    DLLIBS=""
    AC_MSG_RESULT(no)
fi