Changeset 79ddd26444ac3fb19e79ab193fa1ceb5cae9516e
- Timestamp:
- 03/07/03 21:25:51
(5 years ago)
- Author:
- Simon Latapie <garf@videolan.org>
- git-committer:
- Simon Latapie <garf@videolan.org> 1057260351 +0000
- git-parent:
[1eeede38ba74aaec38d620bd28eff0a103610084]
- git-author:
- Simon Latapie <garf@videolan.org> 1057260351 +0000
- Message:
- logo.c : a little filter to put a PNG picture on video output (use mouse features :)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r73476da |
r79ddd26 |
|
| 1 | 1 | dnl Autoconf settings for vlc |
|---|
| 2 | | dnl $Id: configure.ac,v 1.22 2003/07/02 22:47:42 sam Exp $ |
|---|
| | 2 | dnl $Id: configure.ac,v 1.23 2003/07/03 19:25:51 garf Exp $ |
|---|
| 3 | 3 | |
|---|
| 4 | 4 | AC_INIT(vlc,0.6.0) |
|---|
| … | … | |
| 1928 | 1928 | ]) |
|---|
| 1929 | 1929 | fi |
|---|
| | 1930 | |
|---|
| | 1931 | dnl |
|---|
| | 1932 | dnl Video Filters |
|---|
| | 1933 | dnl |
|---|
| | 1934 | |
|---|
| | 1935 | dnl |
|---|
| | 1936 | dnl png |
|---|
| | 1937 | dnl |
|---|
| | 1938 | AC_CHECK_HEADERS(png.h, [ |
|---|
| | 1939 | AX_ADD_LDFLAGS([logo],[-lpng]) |
|---|
| | 1940 | AX_ADD_PLUGINS([logo])]) |
|---|
| 1930 | 1941 | |
|---|
| 1931 | 1942 | dnl |
|---|
| rfe17002 |
r79ddd26 |
|
| 8 | 8 | SOURCES_motionblur = motionblur.c |
|---|
| 9 | 9 | SOURCES_osdtext = osd_text.c |
|---|
| | 10 | SOURCES_logo = logo.c |
|---|
| 10 | 11 | noinst_HEADERS += filter_common.h |
|---|