Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
f55204b0
Kaydet (Commit)
f55204b0
authored
Şub 21, 2001
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Rip out various module-enabling switches, made obsolete by setup.py
üst
39c4ed6e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
127 deletions
+0
-127
config.h.in
config.h.in
+0
-6
configure
configure
+0
-0
configure.in
configure.in
+0
-121
No files found.
config.h.in
Dosyayı görüntüle @
f55204b0
...
@@ -222,12 +222,6 @@
...
@@ -222,12 +222,6 @@
linker (rld). Dyld is necessary to support frameworks. */
linker (rld). Dyld is necessary to support frameworks. */
#undef WITH_DYLD
#undef WITH_DYLD
/* Define if you want to use BSD db. */
#undef WITH_LIBDB
/* Define if you want to use ndbm. */
#undef WITH_LIBNDBM
/* Define if you want to produce an OpenStep/Rhapsody framework
/* Define if you want to produce an OpenStep/Rhapsody framework
(shared library plus accessory files). */
(shared library plus accessory files). */
#undef WITH_NEXT_FRAMEWORK
#undef WITH_NEXT_FRAMEWORK
...
...
configure
Dosyayı görüntüle @
f55204b0
This source diff could not be displayed because it is too large. You can
view the blob
instead.
configure.in
Dosyayı görüntüle @
f55204b0
...
@@ -711,48 +711,6 @@ AC_MSG_RESULT($withval)
...
@@ -711,48 +711,6 @@ AC_MSG_RESULT($withval)
LIBS="$withval $LIBS"
LIBS="$withval $LIBS"
], AC_MSG_RESULT(no))
], AC_MSG_RESULT(no))
#
# These are used to generate Setup.config. They autoconfigure several
# features that are otherwise severe pains in the butt.
#
# ncurses
AC_SUBST(USE_NCURSES_MODULE)
AC_CHECK_LIB(ncurses, initscr,
[USE_NCURSES_MODULE=""],
[USE_NCURSES_MODULE="#"],
-ltermcap)
# GNU readline
AC_SUBST(USE_READLINE_MODULE)
AC_CHECK_LIB(readline, readline,
[USE_READLINE_MODULE=""],
[USE_READLINE_MODULE="#"],
-ltermcap)
# gdbm(3)
AC_SUBST(USE_GDBM_MODULE)
AC_SUBST(HAVE_LIBGDBM)
AC_CHECK_LIB(gdbm, gdbm_open,
[USE_GDBM_MODULE=""
HAVE_LIBGDBM=-lgdbm],
[USE_GDBM_MODULE="#"
HAVE_LIBGDBM=""])
# ndbm(3)
AC_SUBST(USE_NDBM_MODULE)
AC_SUBST(HAVE_LIBNDBM)
AC_CHECK_LIB(ndbm, ndbm_open,
[USE_NDBM_MODULE=""
HAVE_LIBNDBM=-lndbm],
[USE_NDBM_MODULE="#"
HAVE_LIBNDBM=""])
# crypt(3)
AC_SUBST(USE_CRYPT_MODULE)
AC_SUBST(HAVE_LIBCRYPT)
AC_CHECK_LIB(crypt, crypt,
[USE_CRYPT_MODULE=""
HAVE_LIBCRYPT=-lcrypt],
[USE_CRYPT_MODULE="#"
HAVE_LIBCRYPT=""])
# Determine if signalmodule should be used.
# Determine if signalmodule should be used.
AC_SUBST(USE_SIGNAL_MODULE)
AC_SUBST(USE_SIGNAL_MODULE)
AC_SUBST(SIGNAL_OBJS)
AC_SUBST(SIGNAL_OBJS)
...
@@ -898,85 +856,6 @@ else
...
@@ -898,85 +856,6 @@ else
fi
fi
AC_MSG_RESULT($with_cycle_gc)
AC_MSG_RESULT($with_cycle_gc)
# Check for DBM support
AC_SUBST(USE_DBM_MODULE)
USE_DBM_MODULE=""
AC_MSG_CHECKING(for --with-dbm)
AC_ARG_WITH(dbm,
[ --with(out)-dbm disable/enable dbm module])
# enabled by default but one of the dbm.h files must be found
if test "$ac_cv_header_ndbm_h" = "yes" -o "$ac_cv_header_db1_ndbm_h" = "yes" -o "$ac_cv_header_gdbm_ndbm_h" = "yes"
then
if test "$with_dbm" != "no"
then with_dbm="yes"
fi
else
# make sure user knows why dbm support wasn't enabled even though
# s/he requested it
if test "$with_dbm" = "yes"
then echo $ac_n "(requested but no ndbm.h was found) $ac_c"
fi
with_dbm="no"
fi
if test "$with_dbm" = "no"
then
USE_DBM_MODULE="#"
else
AC_DEFINE(WITH_LIBNDBM)
fi
AC_MSG_RESULT($with_dbm)
if test "$with_dbm" = "yes"
then
# check for libndbm
AC_SUBST(HAVE_LIBNDBM)
AC_CHECK_FUNC(dbmopen, [HAVE_LIBNDBM=], [HAVE_LIBNDBM=-lndbm])
fi
# Check for LIBDB support
# either --with-libdb or, in its absence, the presence of db.h
AC_SUBST(USE_BSDDB_MODULE)
USE_BSDDB_MODULE=""
AC_MSG_CHECKING(for --with-libdb)
AC_ARG_WITH(libdb,
[ --with(out)-libdb disable/enable bsddb module])
# enabled by default, but db.h must be found
if test "$ac_cv_header_db_h" = "yes"
then
if test "$with_libdb" != "no"
then with_libdb="yes"
fi
else
# make sure user knows why bsddb support wasn't enabled even
# though s/he requested it
if test "$with_libdb" = "yes"
then echo $ac_n "(requested, but db.h was not found) $ac_c"
fi
with_libdb="no"
fi
if test "$with_libdb" = "no"
then
USE_BSDDB_MODULE="#"
else
AC_DEFINE(WITH_LIBDB)
fi
AC_MSG_RESULT($with_libdb)
if test "$with_libdb" = "yes"
then
# check for libdb; BSD systems have the DB routines in libc --tg
AC_SUBST(HAVE_LIBDB)
# If dbopen is not in libc, then checking whether it is in libdb
# is difficult: db_185.h may #define it as __db185_open
# Instead, we just trust it is in libdb; linking will fail if it
# is not.
AC_CHECK_FUNC(dbopen, [HAVE_LIBDB=], [HAVE_LIBDB=-ldb])
fi
# Check for --with-wctype-functions
# Check for --with-wctype-functions
AC_MSG_CHECKING(for --with-wctype-functions)
AC_MSG_CHECKING(for --with-wctype-functions)
AC_ARG_WITH(wctype-functions,
AC_ARG_WITH(wctype-functions,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment