1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
AC_INIT([HSQL],[1.0],[htoolkit-users@lists.sourceforge.net],[hsql])
AC_CONFIG_FILES([config.mk:config.mk.in hsql.pkg:hsql.pkg.in])
AC_CANONICAL_SYSTEM
dnl ***********************************************
dnl Enable/Disable ODBC binding
dnl ***********************************************
AC_ARG_ENABLE(odbc,
[ --enable-odbc
Build an ODBC binding for Haskell.
],
[WithODBC=YES],
[WithODBC=NO]
)
AC_SUBST(WithODBC)
dnl ***********************************************
dnl Enable/Disable PostgreSQL binding
dnl ***********************************************
AC_ARG_ENABLE(postgres,
[ --enable-postgres
Build a PostgreSQL binding for Haskell.
],
[WithPostgreSQL=YES],
[WithPostgreSQL=NO]
)
AC_SUBST(WithPostgreSQL)
dnl ***********************************************
dnl Enable/Disable MySQL binding
dnl ***********************************************
AC_ARG_ENABLE(mysql,
[ --enable-mysql
Build a MySQL binding for Haskell.
],
[WithMySQL=YES],
[WithMySQL=NO]
)
AC_SUBST(WithMySQL)
dnl ***********************************************
dnl Enable/Disable SQLite binding
dnl ***********************************************
AC_ARG_ENABLE(sqlite,
[ --enable-sqlite
Build a SQLite binding for Haskell.
],
[WithSQLite=YES],
[WithSQLite=NO]
)
AC_SUBST(WithSQLite)
dnl ***********************************************
dnl GHC
dnl ***********************************************
AC_ARG_WITH(ghc,
[ --with-ghc=<ghc command>
Use a different command instead of 'ghc' for the Haskell compiler.
],
[GHC="$withval"],
[AC_PATH_PROG(GHC,ghc)]
)
if test "$GHC" = "" || test ! -f $GHC; then
AC_MSG_RESULT([The build for GHC will be skiped.])
GHC=""
fi
if test "x$prefix" != xNONE; then
GHC_DIR="$prefix/lib/HSQL/GHC"
else
GHC_DIR="$ac_default_prefix/lib/HSQL/Hugs"
fi
AC_SUBST(GHC)
AC_SUBST(GHC_DIR)
dnl ***********************************************
dnl hsc2hs
dnl ***********************************************
AC_ARG_WITH(hsc2hs,
[ --with-hsc2hs=<hsc2hs command>
Use a different command instead of 'hsc2hs'
],
[HSC2HS="$withval"],
[AC_PATH_PROG(HSC2HS,hsc2hs)]
)
if test "$HSC2HS" = "" || test ! -f $HSC2HS; then
AC_MSG_ERROR([HSC2HS is required to build the package])
fi
AC_SUBST(HSC2HS)
dnl ***********************************************
dnl ghc-pkg
dnl ***********************************************
AC_ARG_WITH(ghc-pkg,
[ --with-ghc-pkg=<ghc-pkg command>
Use a different command instead of 'ghc-pkg'
],
[GHC_PKG="$withval"],
[AC_PATH_PROG(GHC_PKG,ghc-pkg)]
)
if test "$GHC_PKG" = "" || test ! -f $GHC_PKG; then
AC_MSG_ERROR([ghc-pkg is required to build the package])
fi
AC_SUBST(GHC_PKG)
dnl ***********************************************
dnl HUGS
dnl ***********************************************
AC_ARG_WITH(hugs,
[ --with-hugs=<hugs command>
Use a different command instead of 'hugs' for the Hugs interpreter.
],
[HUGS="$withval"],
[AC_PATH_PROG(HUGS,hugs)]
)
if test "$HUGS" = "" || test ! -f $HUGS; then
AC_MSG_RESULT([The build for HUGS will be skiped.])
HUGS=""
fi
if test "x$prefix" != xNONE; then
HUGS_DIR="$prefix/lib/HSQL/Hugs"
else
HUGS_DIR="$ac_default_prefix/lib/HSQL/Hugs"
fi
case $ac_cv_target_alias in
i[[3456]]86-*-cygwin*|i[[3456]]86-*-mingw32*)
SO_EXT=dll;;
*) SO_EXT=so;;
esac
AC_SUBST(HUGS)
AC_SUBST(HUGS_DIR)
AC_SUBST(SO_EXT)
dnl ***********************************************
dnl FFIHUGS
dnl ***********************************************
AC_ARG_WITH(ffihugs,
[ --with-ffihugs=<ffihugs command>
Use a different command instead of 'ffihugs' for the Hugs FFI compiler.
],
[FFIHUGS="$withval"],
[AC_PATH_PROG(FFIHUGS,ffihugs)]
)
if test "$HUGS" != ""; then
if test "$FFIHUGS" = "" || test ! -f $FFIHUGS; then
AC_MSG_ERROR([ffihugs is required to build the Hugs libraries])
fi
fi
AC_SUBST(FFIHUGS)
dnl ***********************************************
dnl HADDOCK
dnl ***********************************************
AC_ARG_WITH(haddock,
[ --with-haddock=<haddock command>
Use a different command instead of 'haddock' for the documentation builder.
],
[HADDOCK="$withval"],
[AC_PATH_PROG(HADDOCK,haddock)]
)
if test "$HADDOCK" = "" || test ! -f $HADDOCK; then
AC_MSG_RESULT([HADDOCK is required to build the documentations])
fi
if test "x$prefix" != xNONE; then
DOC_DIR="$prefix/doc/HSQL"
else
DOC_DIR="$ac_default_prefix/doc/HSQL"
fi
AC_SUBST(HADDOCK)
AC_SUBST(DOC_DIR)
dnl ***********************************************
dnl other progs
dnl ***********************************************
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
AC_PATH_PROG(AR,ar)
AC_SUBST(AR)
AC_PATH_PROG(LD,ld)
AC_SUBST(LD)
case $ac_cv_target_alias in
i[[3456]]86-*-cygwin*|i[[3456]]86-*-mingw32*)
AC_CHECK_HEADER(windows.h)
CFLAGS="$CFLAGS -mno-cygwin"
CPPFLAGS="$CPPFLAGS -D_WIN32_"
ac_includes_default="$ac_includes_default
#include <windows.h>"
WIN32=YES
;;
*) WIN32=NO
;;
esac
AC_SUBST(WIN32)
dnl ***********************************************
dnl check for headers and libraries for ODBC
dnl ***********************************************
if test $WithODBC = YES; then
AC_CHECK_HEADER(sqlext.h,,AC_MSG_ERROR([sqlext.h and libodbc required to build ODBC building.]))
case $WIN32 in
YES)
AC_COMPILE_IFELSE(
[
#include <windows.h>
#include <sqlext.h>
int main()
{
SQLAllocEnv (NULL);
return 0;
}
],
[LIBS="${LIBS} -lodbc32"],
AC_MSG_ERROR([sqlext.h and libodbc required to build ODBC building.]))
;;
NO)
AC_CHECK_LIB(odbc,SQLAllocEnv,,AC_MSG_ERROR([sqlext.h and libodbc required to build ODBC building.]))
;;
esac
CPPFLAGS="$CPPFLAGS -Isrc/HSQL"
fi
dnl ***********************************************
dnl check for headers and libraries for PostgreSQL
dnl ***********************************************
if test $WithPostgreSQL = YES; then
if test $WIN32 = NO; then
AC_PATH_PROG(PG_CONFIG, pg_config)
if test "$PG_CONFIG" = "" || test ! -f $PG_CONFIG; then
AC_MSG_ERROR([pg_config is required to build PostgreSQL binding])
fi
incdir=`$PG_CONFIG --includedir`
incdir_server=`$PG_CONFIG --includedir-server`
case $ac_cv_target_alias in
i[[3456]]86-*-cygwin*|i[[3456]]86-*-mingw32*)
LDFLAGS="$LDFLAGS -L$(cygpath -m `$PG_CONFIG --libdir`)"
incdir=$(cygpath -m $incdir)
CPPFLAGS="$CPPFLAGS -I$(cygpath -m /usr/include) -I$incdir -I$incdir_server"
;;
*) LDFLAGS="$LDFLAGS -L`$PG_CONFIG --libdir`"
CPPFLAGS="$CPPFLAGS -I$incdir -I$incdir_server"
;;
esac
else
CPPFLAGS="$CPPFLAGS -D_MSC_VER"
fi
AC_CHECK_HEADER(libpq-fe.h,,AC_MSG_ERROR([libpq-fe.h header not found]))
AC_CHECK_HEADER(postgres.h,,AC_MSG_ERROR([postgres.h header not found]))
case $WIN32 in
YES) AC_CHECK_LIB(libpq,PQsetdbLogin,,AC_MSG_ERROR([liblibpq.a library not found]));;
NO) AC_CHECK_LIB(pq, PQsetdbLogin,,AC_MSG_ERROR([libpq.a library not found]));;
esac
fi
dnl ***********************************************
dnl check for headers and libraries for MySQL
dnl ***********************************************
if test $WithMySQL = YES; then
if test $WIN32 = NO; then
AC_PATH_PROG(MYSQL_CONFIG, mysql_config)
if test "$MYSQL_CONFIG" = "" || test ! -f $MYSQL_CONFIG; then
AC_MSG_ERROR([mysql_config is required to build MySQL binding])
fi
LDFLAGS="$LDFLAGS `$MYSQL_CONFIG --libs`"
for mysql_opt in `$MYSQL_CONFIG --cflags`
do
case $mysql_opt in
-I*)
CPPFLAGS="$CPPFLAGS ${mysql_opt}";;
esac
done
fi
AC_CHECK_HEADER(mysql.h,, AC_MSG_ERROR([mysql.h header not found]))
case $WIN32 in
YES)
AC_COMPILE_IFELSE(
[
#include <windows.h>
#include <mysql.h>
int main ()
{
mysql_init (NULL);
return 0;
}
],
[LIBS="${LIBS} -llibmysql"],
AC_MSG_ERROR([liblibmysql.a library not found]))
;;
NO)
AC_CHECK_LIB(mysqlclient,mysql_init,,AC_MSG_ERROR([libmysql.a library not found]))
;;
esac
fi
dnl ***********************************************
dnl check for headers and libraries for SQLite
dnl ***********************************************
if test $WithSQLite = YES; then
AC_CHECK_HEADER(sqlite.h,, AC_MSG_ERROR([sqlite.h header not found]))
AC_CHECK_LIB(sqlite,sqlite_open,,AC_MSG_ERROR([sqlite.h and libsqlite required to build SQLite building.]))
LDFLAGS="$LDFLAGS -lsqlite"
fi
dnl ***********************************************
dnl subst
dnl ***********************************************
LDFLAGS="${LIBS} ${LDFLAGS}"
LIB_DIRS='"'${GHC_DIR}'"'
for lib_opt in ${LDFLAGS}
do
case $lib_opt in
-l*)
if test x$DEP_LIBS = x; then
DEP_LIBS='"'`echo ${lib_opt} | sed s,-l,,`'"'
else
DEP_LIBS=$DEP_LIBS,'"'`echo ${lib_opt} | sed s,-l,,`'"'
fi;;
-L*)
LIB_DIRS=$LIB_DIRS,'"'`echo ${lib_opt} | sed s,-L,, | sed s,"'",, | sed s,"'",,`'"'
esac
done
AC_SUBST(CPPFLAGS)
AC_SUBST(LDFLAGS)
AC_SUBST(DEP_LIBS)
AC_SUBST(LIB_DIRS)
dnl ***********************************************
dnl Create directories and output files
dnl ***********************************************
AC_OUTPUT
echo "creating output directories:"
echo " - build/Database/HSQL"
mkdir -p build/Database/HSQL
echo
echo "Backends"
echo "--------"
echo
echo "MySQL: $WithMySQL"
echo "PostgreSQL: $WithPostgreSQL"
echo "SQLite: $WithSQLite"
echo "ODBC: $WithODBC"
echo
|