annotate lisp/raw-process.el @ 5724:ede80ef92a74

Make soft links in src for module source files, if built in to the executable. This ensures that those files are built with the same compiler flags as all other source files. See these xemacs-beta messages: <CAHCOHQn+q=Xuwq+y68dvqi7afAP9f-TdB7=8YiZ8VYO816sjHg@mail.gmail.com> <f5by5ejqiyk.fsf@calexico.inf.ed.ac.uk>
author Jerry James <james@xemacs.org>
date Sat, 02 Mar 2013 14:32:37 -0700
parents 308d34e9f07d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1262
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
1 ;;; raw-process.el --- In a raw temacs, load stuff so processes work
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
2
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
3 ;; Copyright (C) 2002 Ben Wing.
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
4
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
5 ;; Author: Ben Wing
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
6 ;; Maintainer: XEmacs Development Team
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
7 ;; Keywords: internal
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
8
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
9 ;; This file is part of XEmacs.
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
10
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
11 ;; XEmacs is free software: you can redistribute it and/or modify it
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
12 ;; under the terms of the GNU General Public License as published by the
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
13 ;; Free Software Foundation, either version 3 of the License, or (at your
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
14 ;; option) any later version.
1262
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
15
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
16 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
17 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
18 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
19 ;; for more details.
1262
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
20
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
22 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>.
1262
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
23
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
24 ;;; Synched up with: Not in FSF
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
25
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
26 ;;; Commentary:
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
27
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
28 ;; This is a front-end to the make-docfile program that gathers up all the
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
29 ;; lisp files that will be dumped with XEmacs. It would probably be best
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
30 ;; to just move make-docfile.c completely to lisp and be done with it.
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
31
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
32 (require 'custom)
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
33 (load "process")
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
34 ;; need for stuff called from C by process code
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
35 (if (featurep 'windows-nt) (load "win32-native"))