@@ -845,7 +845,6 @@ Optional Features:
845845 --enable-debug build with debugging symbols (-g)
846846 --enable-depend turn on automatic dependency tracking
847847 --enable-cassert enable assertion checks (for debugging)
848- --enable-odbc build the ODBC driver package
849848 --disable-largefile omit support for large files
850849
851850Optional Packages:
@@ -871,9 +870,6 @@ Optional Packages:
871870 --with-openssl[=DIR] build with OpenSSL support [/usr/local/ssl]
872871 --without-readline do not use Readline
873872 --without-zlib do not use Zlib
874- --with-unixodbc build ODBC driver for unixODBC
875- --with-iodbc build ODBC driver for iODBC
876- --with-odbcinst=DIR default directory for odbcinst.ini sysconfdir
877873 --with-gnu-ld assume the C compiler uses GNU ld default=no
878874
879875Some influential environment variables:
@@ -3476,162 +3472,6 @@ fi;
34763472
34773473
34783474
3479- #
3480- # Optionally enable the building of the ODBC driver
3481- #
3482-
3483- # Old option name
3484- if test " ${with_odbc+set} " = set && test " ${enable_odbc+set} " ! = set ; then
3485- enable_odbc=$with_odbc
3486- fi
3487-
3488- echo " $as_me :$LINENO : checking whether to build the ODBC driver" >&5
3489- echo $ECHO_N " checking whether to build the ODBC driver... $ECHO_C " >&6
3490-
3491-
3492- # Check whether --enable-odbc or --disable-odbc was given.
3493- if test " ${enable_odbc+set} " = set ; then
3494- enableval=" $enable_odbc "
3495-
3496- case $enableval in
3497- yes)
3498- :
3499- ;;
3500- no)
3501- :
3502- ;;
3503- * )
3504- { { echo " $as_me :$LINENO : error: no argument expected for --enable-odbc option" >&5
3505- echo " $as_me : error: no argument expected for --enable-odbc option" >&2 ; }
3506- { (exit 1); exit 1; }; }
3507- ;;
3508- esac
3509-
3510- else
3511- enable_odbc=no
3512-
3513- fi ;
3514-
3515-
3516-
3517-
3518- # Check whether --with-unixodbc or --without-unixodbc was given.
3519- if test " ${with_unixodbc+set} " = set ; then
3520- withval=" $with_unixodbc "
3521-
3522- case $withval in
3523- yes)
3524- :
3525- ;;
3526- no)
3527- :
3528- ;;
3529- * )
3530- { { echo " $as_me :$LINENO : error: no argument expected for --with-unixodbc option" >&5
3531- echo " $as_me : error: no argument expected for --with-unixodbc option" >&2 ; }
3532- { (exit 1); exit 1; }; }
3533- ;;
3534- esac
3535-
3536- else
3537- with_unixodbc=no
3538-
3539- fi ;
3540-
3541-
3542-
3543-
3544- # Check whether --with-iodbc or --without-iodbc was given.
3545- if test " ${with_iodbc+set} " = set ; then
3546- withval=" $with_iodbc "
3547-
3548- case $withval in
3549- yes)
3550- :
3551- ;;
3552- no)
3553- :
3554- ;;
3555- * )
3556- { { echo " $as_me :$LINENO : error: no argument expected for --with-iodbc option" >&5
3557- echo " $as_me : error: no argument expected for --with-iodbc option" >&2 ; }
3558- { (exit 1); exit 1; }; }
3559- ;;
3560- esac
3561-
3562- else
3563- with_iodbc=no
3564-
3565- fi ;
3566-
3567- if test " $with_unixodbc " = yes && test " $with_iodbc " = yes; then
3568- { { echo " $as_me :$LINENO : error: ODBC driver cannot be built for both unixODBC and iODBC" >&5
3569- echo " $as_me : error: ODBC driver cannot be built for both unixODBC and iODBC" >&2 ; }
3570- { (exit 1); exit 1; }; }
3571- fi
3572- if test " $with_unixodbc " = yes || test " $with_iodbc " = yes; then
3573- enable_odbc=yes
3574- fi
3575- case $enable_odbc :$with_unixodbc :$with_iodbc in
3576- yes:no:no) echo " $as_me :$LINENO : result: yes (stand-alone)" >&5
3577- echo " ${ECHO_T} yes (stand-alone)" >&6 ;;
3578- yes:yes:no) echo " $as_me :$LINENO : result: yes (unixODBC)" >&5
3579- echo " ${ECHO_T} yes (unixODBC)" >&6
3580-
3581- cat >> confdefs.h << \_ACEOF
3582- #define WITH_UNIXODBC 1
3583- _ACEOF
3584-
3585- ;;
3586- yes:no:yes) echo " $as_me :$LINENO : result: yes (iODBC)" >&5
3587- echo " ${ECHO_T} yes (iODBC)" >&6
3588-
3589- cat >> confdefs.h << \_ACEOF
3590- #define WITH_IODBC 1
3591- _ACEOF
3592-
3593- ;;
3594- no:* ) echo " $as_me :$LINENO : result: no" >&5
3595- echo " ${ECHO_T} no" >&6 ;;
3596- esac
3597-
3598-
3599-
3600-
3601-
3602- # Allow for overriding the default location of the odbcinst.ini
3603- # file which is normally ${sysconfdir} (i.e., ${prefix}/etc).
3604-
3605-
3606-
3607- # Check whether --with-odbcinst or --without-odbcinst was given.
3608- if test " ${with_odbcinst+set} " = set ; then
3609- withval=" $with_odbcinst "
3610-
3611- case $withval in
3612- yes)
3613- { { echo " $as_me :$LINENO : error: argument required for --with-odbcinst option" >&5
3614- echo " $as_me : error: argument required for --with-odbcinst option" >&2 ; }
3615- { (exit 1); exit 1; }; }
3616- ;;
3617- no)
3618- { { echo " $as_me :$LINENO : error: argument required for --with-odbcinst option" >&5
3619- echo " $as_me : error: argument required for --with-odbcinst option" >&2 ; }
3620- { (exit 1); exit 1; }; }
3621- ;;
3622- * )
3623- odbcinst_ini_dir=$withval
3624- ;;
3625- esac
3626-
3627- else
3628- odbcinst_ini_dir=" \$ {sysconfdir}"
3629- fi ;
3630-
3631-
3632-
3633-
3634-
36353475# Assume system is ELF if it predefines __ELF__ as 1,
36363476# otherwise believe host_os based default.
36373477case $host_os in
@@ -16459,10 +16299,6 @@ s,@with_krb5@,$with_krb5,;t t
1645916299s,@krb_srvtab@,$krb_srvtab ,;t t
1646016300s,@with_pam@,$with_pam ,;t t
1646116301s,@with_openssl@,$with_openssl ,;t t
16462- s,@enable_odbc@,$enable_odbc ,;t t
16463- s,@with_unixodbc@,$with_unixodbc ,;t t
16464- s,@with_iodbc@,$with_iodbc ,;t t
16465- s,@odbcinst_ini_dir@,$odbcinst_ini_dir ,;t t
1646616302s,@ELF_SYS@,$ELF_SYS ,;t t
1646716303s,@AWK@,$AWK ,;t t
1646816304s,@FLEX@,$FLEX ,;t t
0 commit comments