forked from openwrt/packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request openwrt#2779 from jow-/crtmpserver-fix
crtmpserver: fix multiple issues
- Loading branch information
Showing
7 changed files
with
16 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,19 +8,19 @@ | |
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=crtmpserver | ||
PKG_REV:=811 | ||
PKG_VERSION:=r$(PKG_REV) | ||
PKG_REV:=b6fdcdb | ||
PKG_VERSION:=2012-07-18+git-$(PKG_REV) | ||
PKG_RELEASE:=1 | ||
PKG_BUILD_PARALLEL:=2 | ||
PKG_MAINTAINER:=Thomas Heil <[email protected]> | ||
PKG_LICENSE:=GPL-3.0 | ||
|
||
|
||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 | ||
PKG_SOURCE_URL:=--username=anonymous --password= https://svn.rtmpd.com/crtmpserver/branches/1.0 | ||
PKG_SOURCE_URL:=https://github.com/j0sh/crtmpserver.git | ||
PKG_SOURCE_SUBDIR:=crtmpserver-$(PKG_VERSION) | ||
PKG_SOURCE_VERSION:=$(PKG_REV) | ||
PKG_SOURCE_PROTO:=svn | ||
PKG_SOURCE_PROTO:=git | ||
|
||
include $(INCLUDE_DIR)/package.mk | ||
|
||
|
@@ -66,6 +66,9 @@ define Build/Configure | |
-e 's,^OPTIMIZATIONS[[:space:]]*=.*,OPTIMIZATIONS=-O2,' \ | ||
-e 's,^SSL_BASE[[:space:]]*=.*,SSL_BASE=$(STAGING_DIR)/usr,' \ | ||
linux-openwrt-uclibc.mk) | ||
(cd $(PKG_BUILD_DIR)/sources/common/include/; \ | ||
echo '#define CRTMPSERVER_VERSION_RELEASE_NUMBER "$(PKG_VERSION)\n"' > version.h; \ | ||
echo '#define CRTMPSERVER_VERSION_CODE_NAME "Git\n"' >> version.h) | ||
endef | ||
|
||
define Build/Compile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,4 @@ | |
+ | ||
#include "utils/logging/fileloglocation.h" | ||
#include "utils/lua/luautils.h" | ||
|
||
#include "utils/misc/file.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters