Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Cabal
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository 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
Glasgow Haskell Compiler
Packages
Cabal
Commits
b4fb081e
Commit
b4fb081e
authored
20 years ago
by
Isaac Potoczny-Jones
Browse files
Options
Downloads
Patches
Plain Diff
export some stuff, and pick up some compat stuff for FilePath
parent
b1dda6f2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Distribution/Compat/FilePath.hs
+33
-0
33 additions, 0 deletions
Distribution/Compat/FilePath.hs
Distribution/Simple.hs
+1
-1
1 addition, 1 deletion
Distribution/Simple.hs
TODO
+1
-0
1 addition, 0 deletions
TODO
with
35 additions
and
1 deletion
Distribution/Compat/FilePath.hs
+
33
−
0
View file @
b4fb081e
...
...
@@ -23,6 +23,11 @@ module Distribution.Compat.FilePath
,
isPathSeparator
,
pathSeparator
,
searchPathSeparator
-- * Filename extensions
,
exeExtension
,
objExtension
,
dllExtension
)
where
#
if
!
__GLASGOW_HASKELL__
||
__GLASGOW_HASKELL__
>=
603
...
...
@@ -372,3 +377,31 @@ searchPathSeparator = ':'
#
endif
#
endif
-- ToDo: This should be determined via autoconf (AC_EXEEXT)
-- | Extension for executable files
-- (typically @\"\"@ on Unix and @\".exe\"@ on Windows or OS\/2)
exeExtension
::
String
#
ifdef
mingw32_TARGET_OS
exeExtension
=
".exe"
#
else
exeExtension
=
""
#
endif
-- ToDo: This should be determined via autoconf (AC_OBJEXT)
-- | Extension for object files
-- (typically @\".o\"@ on Unix and @\".obj\"@ on Windows)
objExtension
::
String
#
ifdef
mingw32_TARGET_OS
objExtension
=
".obj"
#
else
objExtension
=
".o"
#
endif
-- | Extension for dynamically linked (or shared) libraries
-- (typically @\".so\"@ on Unix and @\".dll\"@ on Windows)
dllExtension
::
String
#
ifdef
mingw32_TARGET_OS
dllExtension
=
".dll"
#
else
dllExtension
=
".so"
#
endif
This diff is collapsed.
Click to expand it.
Distribution/Simple.hs
+
1
−
1
View file @
b4fb081e
...
...
@@ -48,7 +48,7 @@ module Distribution.Simple (
License
(
..
),
Version
(
..
),
VersionRange
(
..
),
orLaterVersion
,
orEarlierVersion
,
betweenVersionsInclusive
,
Extension
(
..
),
Dependency
(
..
),
defaultMain
,
defaultMainNoRead
,
defaultMain
,
defaultMainNoRead
,
hookedPackageDesc
,
#
ifdef
DEBUG
simpleHunitTests
#
endif
...
...
This diff is collapsed.
Click to expand it.
TODO
+
1
−
0
View file @
b4fb081e
* misc
** two executables in same directory fails because both create Main.o
** Executables that depend on the package itself
** make debian watchfile
** postinst, test
** multiple libraries?
...
...
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