Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gesh
GHC
Commits
c399df70
Commit
c399df70
authored
28 years ago
by
sof
Browse files
Options
Downloads
Patches
Plain Diff
[project @ 1997-03-19 04:50:02 by sof]
look for readline.h, BOOT_SRCS fix, HAPPY default setting
parent
b8829277
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
mk/config.h.in
+3
-0
3 additions, 0 deletions
mk/config.h.in
mk/config.mk.in
+2
-2
2 additions, 2 deletions
mk/config.mk.in
mk/paths.mk
+11
-1
11 additions, 1 deletion
mk/paths.mk
with
16 additions
and
3 deletions
mk/config.h.in
+
3
−
0
View file @
c399df70
...
...
@@ -84,6 +84,9 @@
/* Define if you have the <pwd.h> header file. */
#undef HAVE_PWD_H
/* Define if you have the <readline/readline.h> header file. */
#undef HAVE_READLINE_READLINE_H
/* Define if you have the <siginfo.h> header file. */
#undef HAVE_SIGINFO_H
...
...
This diff is collapsed.
Click to expand it.
mk/config.mk.in
+
2
−
2
View file @
c399df70
...
...
@@ -180,7 +180,7 @@ GhcLibHcOpts= -split-objs -odir $(basename $*)
# Build the Haskell Readline bindings?
#
HsLibsWithReadline=
YES
HsLibsWithReadline=
NO
#
# Include path to readline.h
# (no path == in standard include path)
...
...
@@ -516,7 +516,7 @@ RUNTEST = $(RUNTEST_PREFIX)runstdtest
HAPPY = @HappyCmd@
LX = @LxCmd@
if
n
eq "$(HAPPY)" ""
ifeq "$(HAPPY)" ""
HAPPY = $(HAPPY_PREFIX)happy
endif
...
...
This diff is collapsed.
Click to expand it.
mk/paths.mk
+
11
−
1
View file @
c399df70
...
...
@@ -155,7 +155,17 @@ INSTALL_BIN_OPTS = \
SRCS
=
$(
wildcard
*
.lhs
*
.hs
*
.c
*
.lc
*
.prl
*
.lprl
*
.lit
*
.verb
)
HS_SRCS
=
$(
filter %.lhs %.hs %.hc,
$(
SRCS
))$(
BOOT_SRCS
)
HS_SRCS
=
$(
filter %.lhs %.hs %.hc,
$(
SRCS
))
#
# Do not include BOOT_SRCS in the HS_SRCS defn above,
# since this will make HS_SRCS always be non-empty,
# which breaks rules like `depend'. Price is that
# you have to define BOOT_SRCS before including
# boilerplate.mk
#
ifneq
"$(BOOT_SRCS)" ""
HS_SRCS
+=
$(
BOOT_SRCS
)
endif
HS_OBJS
=
$(
addsuffix .
$(
way_
)
o,
$(
basename
$(
HS_SRCS
)))
HS_IFACES
=
$(
addsuffix .
$(
way_
)
hi,
$(
basename
$(
HS_SRCS
)))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment