Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
9624f08f
Commit
9624f08f
authored
17 years ago
by
Emmanuel Milou
Browse files
Options
Downloads
Patches
Plain Diff
Clean up build system
Remove script src/sflphone.in
parent
a8db6284
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure.ac
+0
-1
0 additions, 1 deletion
configure.ac
src/sflphone.in
+0
-49
0 additions, 49 deletions
src/sflphone.in
with
0 additions
and
50 deletions
configure.ac
+
0
−
1
View file @
9624f08f
...
...
@@ -32,7 +32,6 @@ AC_CONFIG_FILES([libs/Makefile \
libs/utilspp/singleton/Makefile])
AC_CONFIG_FILES([src/Makefile \
src/sflphone \
src/audio/Makefile \
src/audio/codecs/Makefile
src/audio/codecs/ilbc/Makefile \
...
...
This diff is collapsed.
Click to expand it.
src/sflphone.in
deleted
100755 → 0
+
0
−
49
View file @
a8db6284
#!/bin/sh
# SFLphone bin launcher script v 3
# Setup ld's environment
prefix
=
@prefix@
exec_prefix
=
@exec_prefix@
LD_LIBRARY_PATH
=
@libdir@:
${
LD_LIBRARY_PATH
}
export
LD_LIBRARY_PATH
export
PA_ALSA_PLUGHW
=
1
message
=
"Warning, you probably did not extract the archive in the / directory,
you must edit this script (
$0
) and change SFLPHONE_DIR to the correct location.
@libexecdir@ must contain the provided libraries."
if
[
!
-d
${
SFLPHONE_DIR
}
]
;
then
echo
$message
exit
1
else
if
[
!
-d
@libexecdir@
]
;
then
echo
$message
exit
1
fi
fi
# Let's try to go..
PATH
=
@libexecdir@:
${
PATH
}
binaryqtname
=
sflphone-qt
binaryqt
=
@libexecdir@/
${
binaryqtname
}
binarycliname
=
sflphone-cli
binarycli
=
@libexecdir@/
${
binarycliname
}
if
[
"
$1
"
!=
"--text"
]
;
then
if
[
-x
${
binaryqt
}
]
;
then
exec
$binaryqt
$@
else
echo
"Could not find the
${
binaryqtname
}
executable in @libexecdir@ !"
exit
1
fi
else
if
[
-x
${
binarycli
}
]
;
then
shift
SFLPHONE_CORE_DIR
=
@libexecdir@
exec
$binarycli
$@
else
echo
"Could not find the
${
binarycliname
}
executable in @libexecdir@ !"
exit
1
fi
fi
# EOF
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