36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
AC_HEADER_TIME
AC_REPLACE_FUNCS(strsep strtoll getuid)
AC_CHECK_FUNCS(getpwuid strtof)
dnl Setup stable API
DC_SETUP_STABLE_API(libconfig.vers, libconfig.syms)
dnl Set a soname
SHOBJ_SET_SONAME([libconfig.$SHOBJEXT.$PACKAGE_VERSION])
dnl This MUST be last.
DC_SYNC_SHLIBOBJS
|
|
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
AC_HEADER_TIME
AC_REPLACE_FUNCS(strsep strtoll getuid)
AC_CHECK_FUNCS(getpwuid strtof)
dnl Setup stable API
DC_SETUP_STABLE_API([${srcdir}/libconfig.vers], libconfig.syms)
dnl Set a soname
SHOBJ_SET_SONAME([libconfig.$SHOBJEXT.$PACKAGE_VERSION])
dnl This MUST be last.
DC_SYNC_SHLIBOBJS
|