Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
79556aab
Commit
79556aab
authored
Jan 04, 1994
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
redid build process; added --with-svr4; renamed USE_THREAD to
WITH_THREAD; bumped version to 1.0.0 BETA 3
parent
e182fe53
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
94 additions
and
2 deletions
+94
-2
ChangeLog
ChangeLog
+65
-2
acconfig.h
acconfig.h
+29
-0
No files found.
ChangeLog
View file @
79556aab
Mon Jan 3 00:02:24 1994 Guido van Rossum (guido@voorn.cwi.nl)
Tue Jan 4 12:32:16 1994 Guido van Rossum (guido@voorn.cwi.nl)
* Note that there are no functional changes below -- just changes
to the build process and changes to avoid compiler warnings
* Modules/Setup: disable nis as well by default, change the
pertaining comments, and change the comments about the multimedia
modules to be default on
* fixed all warnings about function pointer initializations, and
miscellanous other warnings (e.g. about extern forward references
to static variables); touched random bits of code as a consequence
* changed configuration process and Makefiles to support VPATH;
for this, config.h(.in) now lives to the toplevel directory, the
toplevel Makefile is now created by configure as well, and various
improvements to it have been made (e.g. working tags and TAGS
targets), the makesetup script follows configure instead of
preceding it, it understands srcdir and has an exception for
glmodule.c, the intermediate file is called Makefile.pre, the
Makefiles don't use TOP any more and are much more careful about
the difference between .. and the toplevel directory, and I've
improved my understanding of how configure handles srcdir
* Modules/threadmodule.c: refuse to compile when WITH_THREAD is not
defined
* configure.in, acconfig.h, config.h.in, Include/ceval.h,
Modules/{stdwin,thread}module.c, Python/{ceval,pythonrun}.c:
renamed USE_THREAD to WITH_THREAD
* configure.in: add AC_PROG_INSTALL
* README, Python/version.c: version set to 1.0.0 BETA 3
* Demo, Include, Lib: added Makefile with clean/clobber targets
* README: added remarks on --with-svr4; unnumber special cases
* configure.in: only look for -lnsl and -lsocket if --with-svr4 is
specified, to avoid linking with them on IRIX 5
========================================================================
Release of 1.0.0 BETA 2 (Jan 3 1994)
========================================================================
Mon Jan 3 22:21:24 1994 Guido van Rossum (guido@voorn.cwi.nl)
* Include/myselect.h: fix typo in name of SYS_SELECT_WITH_SYS_TIME
* Parser/pgen.h: moved here from Include; removed extern
definition of 'gram'
* Parser/acceler.c: include node.h, now needed by parser.h
* README: added paragraph on testing
* Misc/python.man: changed date and add 1994 copyright
* Makefile: added test target
* Python/thread.c: include config.h if needed
* Parser/parser.h: remove references to struct _grammar and
similar things
* Modules/rotormodule.c (RTR_e_char, RTR_d_char): avoid warnings
by picky compilers about unsigned % signed
...
...
@@ -114,4 +178,3 @@ Sun Jan 2 23:10:44 1994 Guido van Rossum (guido@voorn.cwi.nl)
========================================================================
Release of 1.0.0 BETA (Jan 1 1994)
========================================================================
acconfig.h
0 → 100644
View file @
79556aab
/* Leave this blank line here -- autoheader needs it! */
/* Define if your <unistd.h> contains bad prototypes for exec*()
(as it does on SGI IRIX 4.x) */
#undef BAD_EXEC_PROTOTYPES
/* Define if getpgrp() must be called as getpgrp(0)
and (consequently) setpgrp() as setpgrp(0, 0). */
#undef GETPGRP_HAVE_ARGS
/* Define if your compiler supports function prototypes */
#undef HAVE_PROTOTYPES
/* Define for SOLARIS 2.x */
#undef SOLARIS
/* Define if it's a bad idea to include <sys/select.h> and <sys/time.h>
in the same file (as it is on SCO ODT 3.0) */
#undef SYS_SELECT_WITH_SYS_TIME
/* Define if you want to compile in rudimentary thread support */
#undef WITH_THREAD
/* Define if you want to use the GNU readline library */
#undef WITH_READLINE
/* Leave that blank line there-- autoheader needs it! */
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