Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b4ec679c
Commit
b4ec679c
authored
Jun 07, 1996
by
Richard M. Stallman
Browse files
(c-macro-preprocessor): New clause for Solaris.
parent
b7089f3c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
lisp/progmodes/cmacexp.el
lisp/progmodes/cmacexp.el
+8
-2
No files found.
lisp/progmodes/cmacexp.el
View file @
b4ec679c
...
...
@@ -3,7 +3,7 @@
;; Copyright (C) 1992, 1994, 1996 Free Software Foundation, Inc.
;; Author: Francesco Potorti` <pot@cnuce.cnr.it>
;; Version: $Id: cmacexp.el,v 1.2
4
1996/05/21 1
4:51:17
kwzh Exp
kwzh
$
;; Version: $Id: cmacexp.el,v 1.2
5
1996/05/21 1
5:42:13
kwzh Exp
rms
$
;; Adapted-By: ESR
;; Keywords: c
...
...
@@ -98,7 +98,13 @@
(
defvar
c-macro-preprocessor
;; Cannot rely on standard directory on MS-DOS to find CPP.
(
if
(
eq
system-type
'ms-dos
)
"cpp -C"
"/lib/cpp -C"
)
(
cond
((
eq
system-type
'ms-dos
)
"cpp -C"
)
;; Solaris has it in an unusual place.
((
and
(
string-match
"^[^-]*-[^-]*-\\(solaris\\|sunos5\\)"
system-configuration
)
(
file-exists-p
"/opt/SUNWspro/SC3.0.1/bin/acomp"
))
"/opt/SUNWspro/SC3.0.1/bin/acomp -C -E"
)
(
t
"/lib/cpp -C"
))
"The preprocessor used by the cmacexp package.
If you change this, be sure to preserve the `-C' (don't strip comments)
...
...
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