Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
Icecast-libshout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
16
Issues
16
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
Icecast-libshout
Commits
3bd37984
Commit
3bd37984
authored
Mar 08, 2003
by
brendan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mike points out that courtesy of Mike we can all skip this step.
svn path=/trunk/libshout/; revision=4442
parent
230bcebc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
17 deletions
+24
-17
HACKING
HACKING
+0
-3
configure.in
configure.in
+24
-14
No files found.
HACKING
View file @
3bd37984
...
...
@@ -18,9 +18,6 @@ a developer's copy):
favorite flavor of CVS documentation; information on the xiph.org
CVS repository can be found at http://www.xiph.org/cvs.html.
This module requires submodules to compile. Checkout 'net',
'thread', 'avl', 'http', and 'timing' under the ./src directory.
2. [re-]generate files such as "configure" and "Makefile.in" with the
GNU autoconf/automake tools. Run the "autogen.sh" script to
perform this step.
...
...
configure.in
View file @
3bd37984
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/shout.c)
LIBSHOUT_MAJOR=2
LIBSHOUT_MINOR=0
LIBSHOUT_MICRO=0
m4_define(libshout_major, 2)
m4_define(libshout_minor, 0)
m4_define(libshout_micro, 0)
m4_define(libshout_version,
m4_if(libshout_micro, 0, libshout_major.libshout_minor,
libshout_major.libshout_minor.libshout_micro))
AC_DEFINE
_UNQUOTED([LIBSHOUT_MAJOR], [$LIBSHOUT_MAJOR]
, ["Shout library major version"])
AC_DEFINE
_UNQUOTED([LIBSHOUT_MINOR], [$LIBSHOUT_MINOR]
, ["Shout library minor version"])
AC_DEFINE
_UNQUOTED([LIBSHOUT_MICRO], [$LIBSHOUT_MICRO]
, ["Shout library patch version"])
AC_DEFINE
([LIBSHOUT_MAJOR], libshout_major
, ["Shout library major version"])
AC_DEFINE
([LIBSHOUT_MINOR], libshout_minor
, ["Shout library minor version"])
AC_DEFINE
([LIBSHOUT_MICRO], libshout_micro
, ["Shout library patch version"])
if test "$LIBSHOUT_MICRO" != 0
then
VERSION=$LIBSHOUT_MAJOR.$LIBSHOUT_MINOR.$LIBSHOUT_MICRO
else
VERSION=$LIBSHOUT_MAJOR.$LIBSHOUT_MINOR
fi
VERSION=libshout_version
AM_INIT_AUTOMAKE(
libshout,$VERSION
)
AM_INIT_AUTOMAKE(
[libshout], libshout_version
)
AC_PROG_CC
AM_PROG_LIBTOOL
...
...
@@ -111,6 +109,16 @@ fi
XIPH_PATH_OGG
XIPH_PATH_VORBIS
LIBS="$LIBS $VORBIS_LIBS $OGG_LIBS"
XIPH_CFLAGS="$XIPH_CFLAGS $VORBIS_CFLAGS $OGG_CFLAGS"
# Build shout-config
SHOUT_VERSION="$VERSION"
SHOUT_LIBS="-lshout"
SHOUT_LIBDEPS="$LIBS"
SHOUT_CFLAGS="$XIPH_CFLAGS"
AC_CONFIG_LIBCONFIG_IN_STATIC
AC_CONFIG_LIBCONFIG_IN([shout])
dnl Make substitutions
...
...
@@ -122,4 +130,6 @@ AC_SUBST(CFLAGS)
AC_SUBST(PROFILE)
AC_SUBST(XIPH_CFLAGS)
AC_OUTPUT(Makefile include/Makefile include/shout/Makefile src/Makefile src/net/Makefile src/timing/Makefile src/thread/Makefile src/avl/Makefile src/httpp/Makefile examples/Makefile)
AC_OUTPUT([Makefile include/Makefile include/shout/Makefile src/Makefile src/net/Makefile
src/timing/Makefile src/thread/Makefile src/avl/Makefile src/httpp/Makefile examples/Makefile
shout-config])
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment