Skip to content

Commit

Permalink
rename binary to libfreshwrapper-flashplayer.so
Browse files Browse the repository at this point in the history
twitch.tv flash detection script scans plugin filename, and treats "pepper"
substring as working-under-Chrome sign. It then uses wmode=direct, which
effectively hides user interface implemented in HTML
  • Loading branch information
i-rinat committed Oct 2, 2015
1 parent 625b54d commit d561c84
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Project is using cmake (>=2.8.8) build system.
$ make
```

* Put generated `libfreshwrapper-pepperflash.so` into browser plugins directory (`~/.mozilla/plugins`)
* Put generated `libfreshwrapper-flashplayer.so` into browser plugins directory (`~/.mozilla/plugins`)


When loaded by browser it will search for `libpepflashplayer.so` in a directories
Expand Down
2 changes: 1 addition & 1 deletion doc/debugging-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Assuming you have Firefox as a browser.

## Simplify deploy

First, put a symlink of built `libfreshwrapper-pepperflash.so` to `~/.mozilla/plugins`.
First, put a symlink of built `libfreshwrapper-flashplayer.so` to `~/.mozilla/plugins`.
This step simplifies deploy step. You just rebuild, restart browser, and you are running
new version.

Expand Down
6 changes: 3 additions & 3 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ set(COMMON_OBJ_LIST
# wrapper for PepperFlash
set(WITH_PEPPERFLASH TRUE CACHE STRING "generate wrapper for PepperFlash")
if (WITH_PEPPERFLASH)
add_library(freshwrapper-pepperflash SHARED ${COMMON_OBJ_LIST} config_pepperflash.c)
target_link_libraries(freshwrapper-pepperflash ${REQ_LIBRARIES})
target_link_libraries(dep_check freshwrapper-pepperflash)
add_library(freshwrapper-flashplayer SHARED ${COMMON_OBJ_LIST} config_pepperflash.c)
target_link_libraries(freshwrapper-flashplayer ${REQ_LIBRARIES})
target_link_libraries(dep_check freshwrapper-flashplayer)
endif()

# wrapper for Native Client
Expand Down

0 comments on commit d561c84

Please sign in to comment.