Changeset 935af8b0594944307465a9d25c27625f663681b4
- Timestamp:
- 07/24/07 00:36:45
(1 year ago)
- Author:
- Damien Fouilleul <damienf@videolan.org>
- git-committer:
- Damien Fouilleul <damienf@videolan.org> 1185230205 +0000
- git-parent:
[4d417a83435800567f21cc522af15bfc03af0a84]
- git-author:
- Damien Fouilleul <damienf@videolan.org> 1185230205 +0000
- Message:
- bootstrap: quick fix for libtooling modules for mingw
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r757fcfc |
r935af8b |
|
| 222 | 222 | include Modules.am |
|---|
| 223 | 223 | |
|---|
| 224 | | LTLIBVLC = \$(top_builddir)/src/libvlc.la |
|---|
| | 224 | if HAVE_WIN32 |
|---|
| | 225 | LTLIBVLC = -L\$(top_builddir)/src -lvlc.dll |
|---|
| | 226 | else |
|---|
| | 227 | LTLIBVLC = -L\$(top_builddir)/src -lvlc |
|---|
| | 228 | endif |
|---|
| 225 | 229 | |
|---|
| 226 | 230 | AM_LDFLAGS = -rpath '\$(libvlcdir)' -avoid-version \\ |
|---|
| … | … | |
| 230 | 234 | if USE_LIBTOOL |
|---|
| 231 | 235 | AM_LIBADD = \$(LTLIBVLC) |
|---|
| 232 | | endif |
|---|
| 233 | | if HAVE_WIN32 |
|---|
| 234 | | LIBVLC = \$(top_builddir)/src/libvlc.dll |
|---|
| | 236 | else |
|---|
| | 237 | LIBVLC = -l\$(top_builddir) -lvlc |
|---|
| 235 | 238 | endif |
|---|
| 236 | 239 | |
|---|