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
553f5a89
Commit
553f5a89
authored
17 years ago
by
Emmanuel Milou
Browse files
Options
Downloads
Patches
Plain Diff
Git ignore *.so and *.swp files!!!
parent
0de37a5c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
src/git.test
+0
-1
0 additions, 1 deletion
src/git.test
tools/portaudio.sh
+0
-26
0 additions, 26 deletions
tools/portaudio.sh
with
2 additions
and
27 deletions
.gitignore
+
2
−
0
View file @
553f5a89
...
...
@@ -11,6 +11,8 @@ Makefile
Makefile.in
*.spec
/config.*
*.swp
*.so
# Ignore rendered docs
doc/doxygen/html-everything
...
...
This diff is collapsed.
Click to expand it.
src/git.test
deleted
100644 → 0
+
0
−
1
View file @
0de37a5c
ok
This diff is collapsed.
Click to expand it.
tools/portaudio.sh
deleted
100755 → 0
+
0
−
26
View file @
0de37a5c
#!/bin/sh
PORTAUDIO_SOURCE
=
http://portaudio.com/archives/pa_snapshot_v19.tar.gz
PORTAUDIO_FILE
=
$(
basename
$PORTAUDIO_SOURCE
)
PORTAUDIO_DIR
=
portaudio
PORTAUDIO_CONFIGURE_ARG
=
$@
if
[
!
-f
$PORTAUDIO_FILE
]
;
then
wget
$PORTAUDIO_SOURCE
fi
if
[
!
-d
$PORTAUDIO_DIR
]
;
then
tar
xzvf
$PORTAUDIO_FILE
fi
if
[
!
-f
$PORTAUDIO_DIR
/Makefile
]
;
then
cd
$PORTAUDIO_DIR
./configure
--enable-cxx
$PORTAUDIO_CONFIGURE_ARG
make
echo
"To install portaudio (as root): "
echo
"su -c
\"
cd
$PORTAUDIO_DIR
&& make install
\"
"
echo
""
fi
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