Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
liblinphone
Commits
fb54168d
Commit
fb54168d
authored
15 years ago
by
simorl
Browse files
Options
Download
Patches
Plain Diff
mingw related changes.
parent
5b195f2f
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
linphone/Makefile.am
+1
-0
linphone/Makefile.am
linphone/configure.in
+13
-6
linphone/configure.in
linphone/mediastreamer2/configure.ac
+10
-4
linphone/mediastreamer2/configure.ac
with
24 additions
and
10 deletions
linphone/Makefile.am
+
1
−
0
View file @
fb54168d
...
...
@@ -27,6 +27,7 @@ DISTCLEANFILES= intltool-extract intltool-merge intltool-update po/stamp-it po/.
INSTALLDIR
=
$(
shell
cd
$(
top_builddir
)
&&
pwd
)
/linphone-install
ZIPFILE
=
$(
shell
cd
$(
top_builddir
)
&&
pwd
)
/
$(
PACKAGE
)
-win32-
$(
VERSION
)
.zip
ZIP_EXCLUDED
=
include lib
# `make rpm'
...
...
This diff is collapsed.
Click to expand it.
linphone/configure.in
+
13
−
6
View file @
fb54168d
...
...
@@ -183,17 +183,24 @@ AC_DEFINE(VINCENT_MAURY_RSVP,1,[Tell whether RSVP support
should be compiled.]) )
if test "x${prefix}" = "xNONE"; then
prefix=${ac_default_prefix}
package_prefix=${ac_default_prefix}
else
package_prefix=${prefix}
fi
if test x$mingw_found = xyes ; then
dnl allow binaries to install everywhere
package_prefix="."
fi
dnl Set PACKAGE_LOCALE_DIR in config.h.
DATADIRNAME=share
AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "${prefix}/${DATADIRNAME}/locale",[Defines the place where locales can be found])
AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "${
package_
prefix}/${DATADIRNAME}/locale",[Defines the place where locales can be found])
AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${prefix}/${DATADIRNAME}",[Defines the place where data are found])
AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${
package_
prefix}/${DATADIRNAME}",[Defines the place where data are found])
dnl Set PACKAGE_SOUND_DIR in config.h.
AC_DEFINE_UNQUOTED(PACKAGE_SOUND_DIR, "${prefix}/${DATADIRNAME}/sounds/linphone",[Defines the place where linphone sounds are found])
AC_DEFINE_UNQUOTED(PACKAGE_SOUND_DIR, "${
package_
prefix}/${DATADIRNAME}/sounds/linphone",[Defines the place where linphone sounds are found])
dnl check if we have the getifaddrs() sytem call
...
...
@@ -310,8 +317,8 @@ AC_SUBST(LINPHONE_LIBS)
AC_DEFINE_UNQUOTED(LINPHONE_VERSION,"$PACKAGE_VERSION",[Linphone's version number])
AC_DEFINE_UNQUOTED(LINPHONE_PLUGINS_DIR, "${prefix}/lib/liblinphone/plugins" ,[path of liblinphone plugins, not mediastreamer2 plugins])
LINPHONE_PLUGINS_DIR="${prefix}/lib/liblinphone/plugins"
AC_DEFINE_UNQUOTED(LINPHONE_PLUGINS_DIR, "${
package_
prefix}/lib/liblinphone/plugins" ,[path of liblinphone plugins, not mediastreamer2 plugins])
LINPHONE_PLUGINS_DIR="${
package_
prefix}/lib/liblinphone/plugins"
AC_SUBST(LINPHONE_PLUGINS_DIR)
AC_ARG_ENABLE(external-ortp,
...
...
This diff is collapsed.
Click to expand it.
linphone/mediastreamer2/configure.ac
+
10
−
4
View file @
fb54168d
...
...
@@ -472,16 +472,22 @@ dnl check various things
AC_FUNC_ALLOCA
if test "x${prefix}" = "xNONE"; then
prefix=${ac_default_prefix}
package_prefix=${ac_default_prefix}
else
package_prefix=${prefix}
fi
if test x$mingw_found = xyes ; then
package_prefix="."
fi
dnl define path of plugins:
AC_DEFINE_UNQUOTED(PACKAGE_PLUGINS_DIR, "${prefix}/lib/mediastreamer/plugins" ,[path of plugins])
PACKAGE_PLUGINS_DIR="${prefix}/lib/mediastreamer/plugins"
AC_DEFINE_UNQUOTED(PACKAGE_PLUGINS_DIR, "${
package_
prefix}/lib/mediastreamer/plugins" ,[path of plugins])
PACKAGE_PLUGINS_DIR="${
package_
prefix}/lib/mediastreamer/plugins"
AC_SUBST(PACKAGE_PLUGINS_DIR)
PACKAGE_DATA_DIR="$prefix/share"
AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "$prefix/share" ,[path of data])
AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "$
{package_
prefix
}
/share" ,[path of data])
AC_SUBST(PACKAGE_DATA_DIR)
dnl check for video4linux headers
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
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
Menu
Explore
Projects
Groups
Topics
Snippets