Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
htm
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
OmegaCEN
htm
Commits
509b7e21
Commit
509b7e21
authored
12 years ago
by
Hugo Buddelmeijer
Browse files
Options
Downloads
Patches
Plain Diff
Changed the library_dirs and libraries parameters from a list of an empty
string [''] to an empty list of strings [].
parent
19eb0400
Branches
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+18
-4
18 additions, 4 deletions
setup.py
with
18 additions
and
4 deletions
setup.py
+
18
−
4
View file @
509b7e21
...
...
@@ -72,8 +72,15 @@ else:
'
_htm
'
,
sources
+
psources
,
include_dirs
=
[
"
./include
"
,
"
./python
"
],
library_dirs
=
[
''
],
libraries
=
[
''
],
# A list of empty strings for library_dirs and libraries can
# cause compilation problems because it results in an 'empty'
# -L and -l parameter. Original lines kept for reference in
# case they are useful in a specific configuration and written
# like this on purpose.
#library_dirs=[''],
#libraries=[''],
library_dirs
=
[],
libraries
=
[],
)
if
(
opath
):
...
...
@@ -81,8 +88,15 @@ if (opath):
'
_ohtm
'
,
sources
+
osources
,
include_dirs
=
[
"
./include
"
,
"
./python
"
,
opath
+
"
/rdbms/demo
"
,
opath
+
"
/rdbms/public
"
],
library_dirs
=
[
''
],
libraries
=
[
''
],
# A list of empty strings for library_dirs and libraries can
# cause compilation problems because it results in an 'empty'
# -L and -l parameter. Original lines kept for reference in
# case they are useful in a specific configuration and written
# like this on purpose.
#library_dirs=[''],
#libraries=[''],
library_dirs
=
[],
libraries
=
[],
)
setup
(
name
=
name
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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