52e6d3795c
* BUG: Use pkg-config utility now. git-svn-id: svn://localhost/gambas/trunk@1120 867c0c6c-44f3-4631-809d-bfa615b0a4ec
27 lines
523 B
Text
27 lines
523 B
Text
dnl ---- configure.ac for gb.net.curl
|
|
|
|
AC_INIT(configure.ac)
|
|
GB_INIT(gb.net.curl)
|
|
AC_PROG_LIBTOOL
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
curl,
|
|
CURL,
|
|
[Advanced networking component],
|
|
[src],
|
|
[libcurl],
|
|
[>= 7.13])
|
|
|
|
#GB_COMPONENT(
|
|
# curl,
|
|
# CURL,
|
|
# [Advanced networking component],
|
|
# [src],
|
|
# [GB_FIND(curl.h, `curl-config --prefix 2> /dev/null`, include)],
|
|
# [GB_FIND(libcurl.$SHLIBEXT, `curl-config --prefix 2> /dev/null`, lib)],
|
|
# [$C_LIB `curl-config --libs 2> /dev/null`])
|
|
|
|
AC_OUTPUT( \
|
|
Makefile \
|
|
src/Makefile \
|
|
)
|